/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #FF69B4;
    --primary-pink: #FFB6C1;
    --primary-yellow: #FFC0CB;
    --light-pink: #FFF0F5;
    --dark-bg: #1a1a1a;
    --text-dark: #222222;
    --text-light: #ffffff;
    --text-gray: #666666;
    --container-max-width: 1200px;
    --accent-purple: #DDA0DD;
    --accent-blue: #87CEEB;
    --accent-yellow: #FFD700;
    --shadow-soft: 0 8px 24px rgba(255, 105, 180, 0.15);
    --shadow-medium: 0 12px 32px rgba(255, 105, 180, 0.2);
    --shadow-strong: 0 16px 48px rgba(255, 105, 180, 0.25);
}

body {
    font-family: 'Arial', 'Helvetica', 'Microsoft YaHei', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(180deg, #FFF0F5 0%, #FFFFFF 50%, #FFF0F5 100%);
    background-attachment: fixed;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Global animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible;
}

/* Header */
.header {
    background-color: transparent;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled,
.header:hover {
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#header-placeholder {
    height: 0;
    position: relative;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF1493 100%);
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s, box-shadow 0.3s;
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    max-height: 40px;
    max-width: 150px;
    object-fit: contain;
    display: none;
}

.logo-img.show {
    display: block;
}

.logo-text {
    color: var(--text-light);
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo.has-img {
    background: transparent;
    padding: 0;
}

.logo.has-img .logo-text {
    display: none;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    border-radius: 2px;
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

.nav-link .arrow {
    font-size: 10px;
    margin-left: 5px;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.lang-option {
    cursor: pointer;
    transition: color 0.3s;
}

.lang-option:hover,
.lang-option.active {
    color: var(--primary-yellow);
}

.lang-divider {
    color: var(--text-gray);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin-top: 0;
}

.hero-carousel {
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.3); */
    z-index: 1;
    pointer-events: none;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 0;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.carousel-slogan {
    color: var(--text-light);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.carousel-title {
    color: var(--text-light);
    font-size: 72px;
    font-weight: bold;
    letter-spacing: 8px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.6);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--text-light);
    z-index: 4;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dot:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--primary-yellow);
    border-color: var(--primary-red);
    box-shadow: 0 0 12px rgba(255, 105, 180, 0.6);
    transform: scale(1.3);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF0F5 100%);
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    color: var(--text-dark);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow), var(--primary-red));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.about-text {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: justify;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.more-link {
    display: block;
    text-align: center;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.more-link:hover {
    color: var(--primary-red);
}

/* Video Banner */
.video-banner {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF0F5 100%);
    padding: 40px 0;
    text-align: center;
}

.video-content {
    position: relative;
}

.video-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 1200px;
}

.play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-yellow) 100%);
    border: 4px solid var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-medium);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    overflow: hidden;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.6s, height 0.6s;
}

.play-btn:hover::before {
    width: 200%;
    height: 200%;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-strong);
}

.play-btn:active {
    transform: translate(-50%, -50%) scale(1.05) rotate(0deg);
}

.play-icon {
    color: var(--dark-bg);
    font-size: 30px;
    margin-left: 5px;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #FFF0F5 0%, #FFFFFF 100%);
    padding: 80px 0;
}

.features-section .section-title {
    color: var(--text-dark);
}

.features-section .section-subtitle {
    color: var(--text-dark);
}

.trend-image-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 60px;
    overflow: hidden;
}

#trend-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: none;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* 合作门店滑动图片样式 */
.trend-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.trend-scroll-content {
    display: flex;
    gap: 30px;
    will-change: transform;
    padding: 20px 0;
}

.trend-scroll-item {
    flex-shrink: 0;
    width: 900px;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: transform 0.3s ease;
}

.trend-scroll-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.trend-scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .trend-scroll-item {
        width: 700px;
        height: 467px;
    }
}

@media (max-width: 768px) {
    .trend-scroll-item {
        width: 500px;
        height: 333px;
    }
    
    .trend-scroll-content {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .trend-scroll-item {
        width: 400px;
        height: 267px;
    }
    
    .trend-scroll-content {
        gap: 15px;
    }
}

#trend-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-strong);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--text-light);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 105, 180, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(255, 105, 180, 0.3));
    transition: transform 0.3s;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Products Section */
.products-section {
    position: relative;
    overflow: hidden;
}

.category-carousel-wrapper {
    position: relative;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}

.category-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.category-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.category-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity 0.5s ease-in-out;
}

.category-preview img[src=""] {
    opacity: 0;
}

.category-carousel-wrapper .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.products-section .section-title.white,
.products-section .section-subtitle.white {
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.products-section .section-title,
.products-section .section-subtitle {
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.product-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: visible;
    padding: 30px 0;
    width: 100%;
    margin-top: 40px;
}

.categories-container {
    display: flex;
    gap: 30px;
    overflow-x: visible;
    overflow-y: visible;
    width: auto;
    min-width: auto;
    max-width: none;
    padding: 20px;
    position: relative;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    box-sizing: content-box;
    margin: 0 auto;
    justify-content: center;
}

.categories-container::-webkit-scrollbar {
    display: none;
}

.category-item {
    flex-shrink: 0;
    flex-grow: 0;
    width: 120px;
    min-width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 4px solid transparent;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 1;
}

.category-item.active {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-medium);
}

.category-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.3), rgba(255, 192, 203, 0.3));
    opacity: 0;
    transition: opacity 0.3s;
}

.category-item:hover::after {
    opacity: 1;
}

.category-item:hover {
    transform: scale(1.15) rotate(5deg);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-medium);
    z-index: 10;
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


.category-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(255, 192, 203, 0.2));
    color: var(--primary-red);
    border: 3px solid var(--primary-red);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-btn:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    color: var(--text-light);
    transform: scale(1.1) rotate(10deg);
    box-shadow: var(--shadow-medium);
}

.category-btn:active {
    transform: scale(0.95);
}

/* News Section */
.news-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFFFFF 100%);
}

.news-list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-item-card {
    position: relative;
    background: var(--text-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
    aspect-ratio: 1;
}

.news-item-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.news-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item-card:hover .news-item-image {
    transform: scale(1.05);
}

.news-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
}

.news-item-card:hover .news-item-overlay {
    opacity: 1;
    transform: translateX(0);
}

.news-item-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.news-item-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.news-item-date {
    font-size: 14px;
    color: var(--text-gray);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    padding: 60px 0 30px;
    color: var(--text-light);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    background-color: var(--primary-red);
    padding: 10px 20px;
    display: inline-block;
    width: fit-content;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.social-icon {
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--text-light);
}

.social-icon.hidden {
    display: none;
}

.social-icon:hover {
    transform: scale(1.2);
    background: rgba(255, 105, 180, 0.3);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.divider {
    color: var(--text-gray);
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--primary-yellow);
    font-size: 16px;
}

.footer-contact-item span {
    color: var(--text-light);
}

.footer-info {
    font-size: 12px;
    color: var(--text-gray);
    line-height: 1.8;
    text-align: center;
}

.footer-info p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-list {
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--dark-bg);
        padding: 20px;
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .language-switcher {
        margin-left: auto;
        margin-right: 15px;
    }
    
    .hero-carousel {
        height: 100vh;
        min-height: 400px;
    }
    
    .category-carousel-wrapper {
        height: 100vh;
        min-height: 400px;
    }
    
    .category-carousel-wrapper .container {
        padding: 40px 20px;
    }
    
    .carousel-title {
        font-size: 36px;
    }
    
    .carousel-slogan {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .categories-container {
        max-width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    
    .category-item {
        scroll-snap-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }
    
    .news-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .carousel-title {
        font-size: 28px;
        letter-spacing: 4px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .about-text {
        font-size: 14px;
    }
}

/* Page Hero Styles */
.page-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-image: url('images/backgrounds/page-hero-bg.svg');
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 40px;
}

.hero-title {
    color: var(--text-light);
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 24px;
}

.news-hero {
    background-image: url('images/backgrounds/page-hero-bg.svg');
}

.business-hero {
    background-image: url('images/backgrounds/page-hero-bg.svg');
}

.hero-title-large {
    color: var(--text-light);
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-subtitle-large {
    color: var(--text-light);
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-tagline {
    color: var(--primary-red);
    font-size: 20px;
    margin-top: 20px;
}

/* About Hero Section */
.about-hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.about-hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.about-hero-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 0;
}

.about-hero-content .hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    padding: 0;
    pointer-events: none;
}

.about-hero-content .hero-title {
    color: var(--text-light);
    font-size: 72px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.about-text-content {
    margin-bottom: 30px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: justify;
}

/* Slogan Banner Section */
.slogan-banner-section {
    padding: 0;
    background: #2d2d2d;
    position: relative;
    overflow: hidden;
}

.slogan-banner-content {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slogan-banner-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.slogan-figures {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.slogan-figure-item {
    flex-shrink: 0;
}

.slogan-figure-item img {
    width: 100%;
    height: auto;
    max-width: 150px;
}

.slogan-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 180px;
    font-weight: bold;
    color: var(--primary-yellow);
    opacity: 0.15;
    white-space: nowrap;
    z-index: 1;
    font-family: 'Arial', sans-serif;
    letter-spacing: 20px;
}

.slogan-overlay {
    position: relative;
    z-index: 3;
    text-align: center;
}

.slogan-text {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-yellow);
    font-style: italic;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* History Section */
.history-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF0F5 100%);
}

.history-section.dark {
    background-color: #2d2d2d;
}

.section-title.white,
.section-subtitle.white,
.timeline-year.white {
    color: var(--text-light);
}

.about-carousel-wrapper {
    position: relative;
    margin-top: 60px;
}

.about-carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    min-height: 200px;
}

.about-carousel-container .timeline-item {
    display: none;
    text-align: center;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.about-carousel-container .timeline-item:first-child {
    display: flex;
}

.about-carousel-container .timeline-figure {
    width: 100%;
    height: 400px;
    max-width: none;
    border-radius: 0;
    margin: 0;
}

.about-carousel-container .timeline-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-carousel-prev,
.about-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.about-carousel-prev {
    left: -60px;
}

.about-carousel-next {
    right: -60px;
}

.timeline {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.timeline-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.timeline-year {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.timeline-figure {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s;
}

.timeline-figure:hover {
    transform: scale(1.1);
}

.timeline-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-figure {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFFFFF 100%);
}

.team-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
    max-width: 900px;
    margin: 40px auto;
}

.team-photo {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.team-photo img {
    width: 100%;
    height: auto;
    display: block;
}

/* Artists Section */
.artists-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF0F5 100%);
}

.artists-image {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.artists-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Cooperation Section */
.cooperation-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFFFFF 100%);
}

.brands-image {
    width: 100%;
    max-width: 1400px;
    margin: 60px auto 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brands-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* News List Section */
.news-list-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF0F5 100%);
}

.news-list-section .news-list {
    margin-top: 0;
    display: block;
    grid-template-columns: none;
    gap: 0;
}

.news-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s;
    background: transparent;
    box-shadow: none;
}

.news-item:hover {
    transform: translateX(5px);
    border-bottom-color: var(--primary-red);
}

.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.news-image {
    flex-shrink: 0;
    width: 200px;
    height: 130px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.news-item:hover .news-image {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
}

.news-headline {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-snippet {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: #999999;
}

.news-source {
    font-weight: 500;
}

.news-date {
    margin-left: auto;
}

.news-more {
    color: #999999;
    text-decoration: none;
    transition: all 0.3s;
    padding: 6px 12px;
    border-radius: 12px;
    background: rgba(255, 105, 180, 0.1);
}

.news-more:hover {
    color: var(--primary-red);
    background: rgba(255, 105, 180, 0.2);
    transform: translateX(4px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.page-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    border: 2px solid #e0e0e0;
    background: var(--text-light);
    color: var(--text-dark);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.page-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.page-btn.active {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    color: var(--text-light);
    border-color: transparent;
    box-shadow: var(--shadow-medium);
    transform: scale(1.1);
}

.page-ellipsis {
    color: var(--text-gray);
    padding: 0 5px;
}

.page-hero {
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.page-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* News Detail Section */
.news-detail-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF0F5 100%);
}

.news-detail-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-detail-title {
    font-size: 36px;
    font-weight: bold;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: center;
}

.news-detail-meta {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.news-detail-date {
    font-size: 14px;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.news-detail-image {
    margin-bottom: 40px;
    text-align: center;
    width: 100%;
}

.news-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

.news-detail-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
}

.news-detail-body p {
    margin-bottom: 20px;
}

.news-detail-body p:last-child {
    margin-bottom: 0;
}

/* Licensing Section */
.licensing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFFFFF 100%);
}

.licensing-content {
    max-width: 900px;
    margin: 0 auto;
}

.licensing-text {
    margin: 40px 0;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
}

.licensing-list {
    margin: 40px 0;
    padding-left: 20px;
}

.licensing-list li {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.contact-section {
    margin-top: 60px;
}

.contact-heading {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.cooperation-list {
    margin-top: 40px;
    display: block;
}

.cooperation-item {
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s;
    background: transparent;
}

.cooperation-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cooperation-item:hover {
    transform: translateX(5px);
    border-bottom-color: var(--primary-red);
}

.cooperation-content {
    max-width: 100%;
}

.cooperation-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.cooperation-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.cooperation-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cooperation-contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
}

.cooperation-contact-row i {
    color: var(--primary-red);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-item {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.contact-label {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-info {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Global Section */
.global-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF0F5 100%);
}

.global-content {
    max-width: 900px;
    margin: 0 auto;
}

.global-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
    margin: 0;
}

.cooperation-tabs {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}

.tab-item {
    flex: 1;
    padding: 30px;
    background: var(--text-light);
    border: 3px solid #e0e0e0;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.tab-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.1), transparent);
    transition: left 0.5s;
}

.tab-item:hover::before {
    left: 100%;
}

.tab-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.tab-item.active {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-pink));
    border-color: var(--primary-red);
    box-shadow: var(--shadow-medium);
    transform: translateY(-4px) scale(1.02);
}

.tab-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.tab-subtitle {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.tab-arrow {
    display: block;
    font-size: 20px;
    color: var(--text-dark);
}

/* Retailers Section */
.retailers-section {
    padding: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('images/backgrounds/retailers-bg.svg') center/cover;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.retailers-content {
    text-align: center;
    width: 100%;
}

.retailers-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 10px;
    font-family: serif;
}

.retailers-subtitle {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 60px;
}

.retailers-carousel {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.retailers-main-image {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-bottom: 0;
}

.retailers-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.retailers-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.thumbnail-item {
    width: 200px;
    height: 150px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    border: 2px solid transparent;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    opacity: 1;
    border-color: var(--primary-yellow);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive additions for new pages */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-title-large {
        font-size: 48px;
    }
    
    .hero-subtitle-large {
        font-size: 28px;
    }
    
    .news-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-image {
        width: 100%;
        height: 200px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cooperation-tabs {
        flex-direction: column;
    }
    
    .timeline {
        flex-direction: column;
    }
    
    .retailers-title {
        font-size: 32px;
    }
    
    .retailers-main-image {
        height: 400px;
    }
    
    .thumbnail-item {
        width: 150px;
        height: 100px;
    }
    
    .about-hero-section {
        height: 400px;
    }
    
    .about-hero-title {
        font-size: 48px;
    }
    
    .about-hero-text {
        font-size: 48px;
    }
    
    .slogan-banner-section {
        padding: 60px 0;
    }
    
    .slogan-figures {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .slogan-figure-item img {
        max-width: 100px;
    }
    
    .slogan-bg-text {
        font-size: 120px;
    }
    
    .slogan-text {
        font-size: 32px;
    }
    
    .artists-image,
    .brands-image {
        margin-top: 40px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background-image: url('images/backgrounds/page-hero-bg.svg');
}

.contact-main-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF0F5 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--text-light);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-pink));
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-medium);
}

.contact-content {
    flex: 1;
}

.contact-label {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-value {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.map-link {
    color: var(--primary-red);
    text-decoration: none;
    margin-left: 10px;
    font-size: 18px;
    transition: transform 0.3s;
    display: inline-block;
}

.map-link:hover {
    transform: translateX(5px);
}

.contact-icons-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.contact-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-icon-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    border-radius: 50%;
    transition: transform 0.4s;
    z-index: -1;
}

.contact-icon-circle:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.contact-icon-circle:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

.contact-map-section {
    position: relative;
}

.contact-form-container {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow), var(--accent-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-dark);
}

.form-group .required-star {
    color: #ff0000;
    font-weight: bold;
    margin-left: 2px;
}

.form-group .field-hint {
    color: #999;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    line-height: 1.4;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-dark);
    background: #ffffff;
    transition: all 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.15), 0 4px 12px rgba(255, 105, 180, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #FF1493 100%);
    color: var(--text-light);
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-yellow), var(--accent-purple));
    border-radius: 25px;
    transition: transform 0.4s;
    z-index: -1;
}

.submit-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.submit-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.submit-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.map-container {
    width: 100%;
    height: 500px;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 2px solid #e0e0e0;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.character-illustration {
    position: absolute;
    right: -50px;
    bottom: -100px;
    width: 200px;
    height: 250px;
    z-index: 2;
    pointer-events: none;
}

.character-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.character-bubble {
    position: absolute;
    top: -40px;
    left: 20px;
    background: var(--text-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 16px;
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.character-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--text-light);
}

.character-text {
    position: absolute;
    bottom: 20px;
    right: -30px;
    font-size: 24px;
    color: #e0e0e0;
    font-style: italic;
    transform: rotate(-15deg);
    font-weight: 300;
}

.official-stores-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFFFFF 100%);
    text-align: center;
}

.stores-intro {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.store-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 44px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-pink));
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.store-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 25px;
    transition: transform 0.4s;
    z-index: 0;
}

.store-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.store-btn:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-red);
}

.store-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.store-logo {
    font-size: 32px;
}

.store-text {
    font-size: 18px;
}

.tmall-btn {
    background: #FF6900;
    color: var(--text-light);
}

.jd-btn {
    background: #E1251B;
    color: var(--text-light);
}

.social-media-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF0F5 100%);
    text-align: center;
}

.social-intro {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.social-icons-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-pink));
    text-decoration: none;
    font-size: 28px;
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-icon-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    border-radius: 50%;
    transition: transform 0.4s;
    z-index: -1;
}

.social-icon-link:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.social-icon-link:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-red);
}

/* Responsive for contact page */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .character-illustration {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 30px auto 0;
    }
}

@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .map-container {
        height: 400px;
    }
    
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .contact-icons-row {
        flex-wrap: wrap;
    }
    
    .social-icons-row {
        gap: 15px;
    }
}

/* Products Page Styles */
.products-hero {
    background-image: url('images/backgrounds/page-hero-bg.svg');
}

.products-filter-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF0F5 100%);
    border-bottom: 1px solid #FFB6C1;
}

.filter-sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--text-light);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(255, 192, 203, 0.1));
    border-radius: 20px;
    transition: transform 0.3s;
    z-index: -1;
}

.filter-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.filter-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    color: var(--text-light);
    border-color: transparent;
    box-shadow: var(--shadow-medium);
    transform: scale(1.05);
}

.filter-btn.active::before {
    display: none;
}

.sort-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-group label {
    font-size: 14px;
    color: var(--text-dark);
}

.sort-select {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    background: var(--text-light);
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color 0.3s;
}

.sort-select:hover,
.sort-select:focus {
    border-color: var(--primary-red);
    outline: none;
}

.products-grid-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFFFFF 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--text-light);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 3px solid transparent;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow), var(--accent-purple), var(--primary-red));
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover::before {
    opacity: 1;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-red);
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFFFFF 50%, #FFF0F5 100%);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.85), rgba(255, 192, 203, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
    backdrop-filter: blur(2px);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-btn {
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--text-light), #f8f8f8);
    color: var(--primary-red);
    border: 2px solid var(--text-light);
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    border-radius: 25px;
    transition: transform 0.4s;
    z-index: -1;
}

.product-btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.product-btn:hover {
    color: var(--text-light);
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

.product-btn:active {
    transform: scale(0.98);
}

.product-info {
    padding: 15px 20px;
    text-align: center;
    background: linear-gradient(180deg, var(--text-light) 0%, #fafafa 100%);
}

.product-name {
    font-size: 16px;
    font-weight: bold;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-red);
}

/* Responsive for products page */
@media (max-width: 768px) {
    .filter-sort-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .sort-group {
        width: 100%;
    }
    
    .sort-select {
        flex: 1;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-name {
        font-size: 14px;
        min-height: 40px;
    }
    
    .product-price {
        font-size: 18px;
    }
}

/* Product Detail Page Styles */
.product-detail-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF0F5 100%);
    min-height: calc(100vh - 200px);
}

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    overflow: visible;
}

/* Product Images */
.product-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: visible;
}

.product-images-wrapper {
    position: relative;
    display: block;
}

.main-image-container {
    position: relative;
    width: 100%;
    background: var(--text-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 3px solid #f0f0f0;
    aspect-ratio: 1;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
}

.main-image:hover {
    transform: scale(1.02);
}

.thumbnail-list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 20px;
    scroll-behavior: smooth;
    /* 隐藏滚动条但保持滚动功能 */
    scrollbar-width: thin;
    scrollbar-color: var(--primary-red) transparent;
}

.thumbnail-list::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-list::-webkit-scrollbar-track {
    background: transparent;
}

.thumbnail-list::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 3px;
}

.thumbnail-list::-webkit-scrollbar-thumb:hover {
    background: var(--primary-yellow);
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
    background: var(--text-light);
}

.thumbnail-item:hover {
    transform: scale(1.1);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-medium);
}

.thumbnail-item.active {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-medium);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info Panel */
.product-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: help;
}

.product-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFFFFF 100%);
    border-radius: 16px;
    border: 2px solid var(--primary-pink);
}

.price-label {
    font-size: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.current-price {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-red);
}

.original-price {
    font-size: 20px;
    color: var(--text-gray);
    text-decoration: line-through;
}

.discount-badge {
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    color: var(--text-light);
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: var(--shadow-soft);
}

.spec-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.spec-params {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-param-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-param-item:last-child {
    border-bottom: none;
}

.spec-param-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 80px;
}

.spec-param-value {
    font-size: 16px;
    color: var(--text-gray);
    flex: 1;
}

.spec-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-dark);
}

.spec-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.spec-option {
    padding: 12px 24px;
    background: var(--text-light);
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 100px;
    box-shadow: var(--shadow-soft);
}

.spec-option:hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.spec-option.active {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    color: var(--text-light);
    border-color: transparent;
    box-shadow: var(--shadow-medium);
}

.spec-price {
    font-size: 16px;
    font-weight: bold;
}

.quantity-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.quantity-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--text-dark);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: var(--text-light);
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-pink));
    color: var(--text-dark);
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-yellow));
    color: var(--text-light);
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: var(--text-dark);
}

.stock-info {
    font-size: 14px;
    color: var(--text-gray);
}

.action-buttons {
    display: flex;
    gap: 20px;
}

.btn-add-cart,
.btn-buy-now {
    flex: 1;
    padding: 18px 32px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-pink));
    color: var(--text-dark);
}

.btn-buy-now {
    background: linear-gradient(135deg, var(--primary-red), #FF1493);
    color: var(--text-light);
}

.btn-add-cart:hover,
.btn-buy-now:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.btn-add-cart:active,
.btn-buy-now:active {
    transform: translateY(-2px);
}

.service-info {
    display: flex;
    gap: 30px;
    padding: 20px;
    background: var(--text-light);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    flex-wrap: wrap;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.service-icon {
    font-size: 20px;
}

/* Product Tabs */
.product-tabs-section {
    margin-top: 60px;
    background: var(--text-light);
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.product-tabs {
    display: flex;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFFFFF 100%);
}

.tab-btn {
    flex: 1;
    padding: 20px;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: bold;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-yellow));
    transition: width 0.3s;
}

.tab-btn:hover {
    color: var(--primary-red);
}

.tab-btn.active {
    color: var(--primary-red);
}

.tab-btn.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    padding: 40px;
}

.tab-content.active {
    display: block;
}

.detail-content {
    line-height: 1.8;
    color: var(--text-dark);
}

.detail-content h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 30px 0 20px;
    color: var(--text-dark);
}

.detail-content p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: justify;
}

.detail-images {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 30px 0;
}

.detail-images img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.detail-images img:hover {
    opacity: 0.9;
    transform: scale(1.01);
}

.detail-images img:first-child {
    border-radius: 12px 12px 0 0;
}

.detail-images img:last-child {
    border-radius: 0 0 12px 12px;
}

.detail-images img:only-child {
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.detail-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--text-dark);
}

.specs-content {
    padding: 20px 0;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #f0f0f0;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.spec-label {
    padding: 15px 20px;
    width: 200px;
    font-weight: bold;
    color: var(--text-gray);
    background: linear-gradient(135deg, #FFF0F5 0%, #FFFFFF 100%);
}

.spec-value {
    padding: 15px 20px;
    color: var(--text-dark);
}

.reviews-content {
    padding: 20px 0;
}

.review-summary {
    padding: 30px;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFFFFF 100%);
    border-radius: 16px;
    margin-bottom: 30px;
}

.rating-overall {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-score {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-red);
}

.rating-stars {
    font-size: 24px;
    color: #FFD700;
}

.rating-count {
    font-size: 16px;
    color: var(--text-gray);
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    padding: 20px;
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--primary-red);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: bold;
    color: var(--text-dark);
}

.review-rating {
    color: #FFD700;
    font-size: 16px;
}

.review-date {
    margin-left: auto;
    font-size: 14px;
    color: var(--text-gray);
}

.review-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Responsive for product detail */
@media (max-width: 1024px) {
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 24px;
    }
    
    .current-price {
        font-size: 28px;
    }
    
    .spec-options {
        flex-direction: column;
    }
    
    .spec-option {
        width: 100%;
    }
    
    .quantity-section {
        flex-wrap: wrap;
    }
    
    .service-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .product-tabs {
        flex-direction: column;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    /* 手机端商品图片显示优化 */
    .product-images {
        gap: 15px;
    }
    
    .main-image-container {
        border-radius: 12px;
        border-width: 2px;
    }
    
    .thumbnail-list {
        gap: 10px;
        padding: 10px 15px;
    }
    
    .thumbnail-item {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        border-width: 2px;
    }
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active {
    display: flex;
    opacity: 1;
}

.image-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.image-modal-content {
    position: relative;
    max-width: 1280px;
    max-height: 90vh;
    width: 100%;
    margin: 0 16px;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity 0.15s ease;
}

.image-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    z-index: 10002;
    padding: 0;
}

.image-modal-close:hover {
    color: rgba(255, 255, 255, 0.7);
}

.image-modal-prev,
.image-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    z-index: 10002;
}

.image-modal-prev:hover,
.image-modal-next:hover {
    background: rgba(0, 0, 0, 0.7);
    color: rgba(255, 255, 255, 0.7);
}

.image-modal-prev {
    left: 16px;
}

.image-modal-next {
    right: 16px;
}

.image-modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 10002;
    display: none;
}

@media (max-width: 768px) {
    .image-modal-content {
        max-width: 95vw;
        max-height: 95vh;
        margin: 0 16px;
    }
    
    .image-modal-content img {
        max-height: 90vh;
    }
    
    .image-modal-close {
        top: 16px;
        right: 16px;
        font-size: 24px;
    }
    
    .image-modal-prev,
    .image-modal-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .image-modal-prev {
        left: 16px;
    }
    
    .image-modal-next {
        right: 16px;
    }
    
    .image-modal-counter {
        bottom: 16px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

