@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: #FFF8F0;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #FFB6C1;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FFB6C1;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #555;
    margin: 5px;
    transition: all 0.3s ease;
}

.hero-section {
    margin-top: 70px;
    position: relative;
    height: calc(100vh - 70px);
    overflow: hidden;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.carousel-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.carousel-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.carousel-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #FFB6C1;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: #FFB6C1;
    color: white;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: white;
    transform: scale(1.2);
}

.new-arrivals, .style-categories, .popular-scenes {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.section-title p {
    color: #888;
    font-size: 16px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #FFB6C1;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.product-info .style-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #FFE4E1;
    color: #FF69B4;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 10px;
}

.product-info .size {
    color: #888;
    font-size: 14px;
    margin-bottom: 5px;
}

.product-info .price {
    color: #FF69B4;
    font-size: 20px;
    font-weight: 600;
}

.style-categories {
    background-color: #FFF0F5;
}

.style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.style-card {
    background-color: white;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.style-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.style-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.style-card:nth-child(1) .style-icon {
    background-color: #FFE4E1;
}

.style-card:nth-child(2) .style-icon {
    background-color: #E6E6FA;
}

.style-card:nth-child(3) .style-icon {
    background-color: #E0FFE0;
}

.style-card:nth-child(4) .style-icon {
    background-color: #F0F8FF;
}

.style-card h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.style-card p {
    color: #888;
    font-size: 14px;
}

footer {
    background-color: #FFFAF0;
    padding: 40px 0;
    margin-top: 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFB6C1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #FFE4E1;
    color: #888;
    font-size: 14px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

.page-container {
    padding-top: 100px;
    padding-bottom: 40px;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.product-images img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-images img:hover {
    transform: scale(1.05);
}

.main-image {
    grid-column: 1 / -1;
    height: 400px;
    object-fit: cover;
}

.product-details h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 15px;
}

.product-details .style-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: #FFE4E1;
    color: #FF69B4;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

.product-details .price {
    font-size: 28px;
    color: #FF69B4;
    font-weight: 600;
    margin-bottom: 30px;
}

.specs {
    background-color: #FFF5F5;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.specs h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.specs ul {
    list-style: none;
}

.specs li {
    padding: 8px 0;
    border-bottom: 1px solid #FFE4E1;
    color: #666;
}

.specs li:last-child {
    border-bottom: none;
}

.material-info {
    background-color: #F5FAFF;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.material-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.material-info p {
    color: #666;
    line-height: 1.8;
}

.highlights {
    background-color: #F0FFF0;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.highlights h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.highlights ul {
    list-style: none;
}

.highlights li {
    padding: 8px 0;
    color: #666;
    padding-left: 20px;
    position: relative;
}

.highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #90EE90;
    font-weight: bold;
}

.consult-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #FFB6C1;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.consult-btn:hover {
    background-color: #FF69B4;
    transform: translateY(-2px);
}

.blog-list {
    max-width: 800px;
    margin: 0 auto;
}

.blog-card {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 14px;
}

.blog-link {
    color: #FFB6C1;
    text-decoration: none;
    font-weight: 500;
}

.blog-link:hover {
    text-decoration: underline;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.article-content h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.article-meta {
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #FFE4E1;
}

.article-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.article-content h2 {
    font-size: 24px;
    color: #333;
    margin: 30px 0 15px;
}

.article-content h3 {
    font-size: 20px;
    color: #444;
    margin: 25px 0 12px;
}

.article-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.article-content ul, .article-content ol {
    margin-left: 25px;
    margin-bottom: 15px;
    color: #666;
}

.article-content li {
    margin-bottom: 8px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 30px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #FFE4E1;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #FFB6C1;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #FFB6C1;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #FF69B4;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.privacy-content h2 {
    font-size: 24px;
    color: #333;
    margin: 30px 0 15px;
}

.privacy-content h3 {
    font-size: 18px;
    color: #444;
    margin: 20px 0 12px;
}

.privacy-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.privacy-content ul {
    margin-left: 25px;
    margin-bottom: 15px;
    color: #666;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 10px 25px;
    background-color: white;
    border: 1px solid #FFE4E1;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.category-tab.active, .category-tab:hover {
    background-color: #FFB6C1;
    color: white;
    border-color: #FFB6C1;
}

.adsense-slot {
    background-color: #FFF8F0;
    border: 1px dashed #FFE4E1;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
    color: #888;
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 50%;
        padding: 20px;
        transition: right 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: block;
    }

    .carousel-content h1 {
        font-size: 32px;
    }

    .carousel-content p {
        font-size: 16px;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-images .main-image {
        height: 300px;
    }

    .article-content {
        padding: 20px;
    }

    .article-content h1 {
        font-size: 24px;
    }

    .contact-form {
        padding: 25px;
    }

    .privacy-content {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        height: 50vh;
    }

    .carousel-content h1 {
        font-size: 24px;
    }

    .carousel-content p {
        font-size: 14px;
    }

    .product-card img {
        height: 200px;
    }

    .style-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        text-align: center;
    }
}

.lazy-image {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.floating-service-btn {
    position: fixed;
    right: 30px;
    bottom: 100px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.4);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-service-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 105, 180, 0.5);
}

.service-icon {
    font-size: 28px;
}

.service-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-modal {
    background-color: white;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.service-modal-overlay.active .service-modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: white;
    font-size: 20px;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    opacity: 0.8;
}

.modal-body {
    padding: 25px;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #FFF5F5;
    border-radius: 12px;
    margin-bottom: 12px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 24px;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
}

.contact-label {
    color: #888;
    font-size: 13px;
    margin: 0 0 5px 0;
}

.contact-value {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}

.quick-questions {
    background-color: #F8FAFC;
    padding: 20px;
    border-radius: 12px;
}

.questions-title {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 15px 0;
}

.quick-questions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-questions li {
    margin-bottom: 10px;
}

.quick-questions li:last-child {
    margin-bottom: 0;
}

.quick-questions a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.quick-questions a:hover {
    color: #FF69B4;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #FFE4E1;
}

.contact-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}