/* ============================================
   首页专属样式 - index.css
   ============================================ */

/* 首页特定样式覆盖 */
:root {
    --section-spacing: 120px;
    --color-soft-bg: #FAFAFA;
}

body {
    background-color: #fff;
    color: #1a1a1a;
}

/* 1. Hero Section - 全屏去文字 */
.hero-section {
    position: relative;
    height: calc(100vh - 90px);
    /* 减去 Header + 公告栏高度 */
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 底部波浪 - 纯白 */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 10;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    min-height: 80px;
    display: block;
}

/* 2. Brand Manifesto - 品牌宣言 */
.manifesto-section {
    padding: var(--section-spacing) 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.manifesto-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
}

.btn-text {
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 4px;
    transition: all 0.3s;
}

.btn-text:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* 3. Featured Product - 不对称布局 */
.featured-section {
    padding: var(--section-spacing) 0;
    background: #fff;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* 左大右小 */
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.featured-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.featured-image-wrapper:hover .featured-image {
    transform: scale(1.02);
}

.featured-content {
    padding-right: 40px;
}

.featured-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 16px;
    display: block;
}

.featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.featured-desc {
    color: #666;
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* 4. Collections - 极简网格 */
.collection-section {
    padding: var(--section-spacing) 0;
    background: var(--color-soft-bg);
}

.section-header-minimal {
    text-align: center;
    margin-bottom: 60px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.collection-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.collection-img-wrap {
    aspect-ratio: 1;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    /* 让白底图片融入灰色背景 */
}

.collection-info {
    padding: 20px;
    text-align: center;
}

.collection-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.collection-meta {
    color: #888;
    font-size: 0.9rem;
}

/* 5. Icon Bar - 信任背书 */
.trust-section {
    padding: 80px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    color: var(--color-primary);
}

.trust-text {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* 6. Brand Story Collage - 视觉拼贴 */
.story-section {
    padding: var(--section-spacing) 0;
    max-width: 1400px;
    margin: 0 auto;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    /* 无缝拼接 */
}

.story-banner {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content-box {
    background: #fdfdfd;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 响应式调整 */
@media (max-width: 991px) {
    :root {
        --section-spacing: 80px;
    }

    .manifesto-title {
        font-size: 2.5rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-content {
        padding-right: 0;
        text-align: center;
        order: 2;
    }

    .featured-image-wrapper {
        order: 1;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }

    .story-layout {
        grid-template-columns: 1fr;
    }

    .story-banner {
        height: 400px;
    }

    .story-content-box {
        padding: 40px 20px;
        text-align: center;
    }

    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
}

/* ============================================
   新品发布 Banner - newbanner-section
   ============================================ */
.newbanner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.newbanner-inner {
    position: relative;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../picture/new_goomoolux.jpg') center 30% / cover no-repeat;
}

.newbanner-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        105deg,
        rgba(30, 18, 42, 0.78) 0%,
        rgba(75, 59, 90, 0.55) 45%,
        rgba(30, 18, 42, 0.25) 100%
    );
}

/* 内容区 */
.newbanner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 24px;
    max-width: 700px;
    animation: fadeInUp 0.9s ease both;
}

/* NEW ARRIVAL 徽章 */
.newbanner-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    border: 1.5px solid var(--color-accent);
    border-radius: 9999px;
    padding: 5px 18px;
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
    background: rgba(232, 180, 184, 0.12);
}

/* 主标题 */
.newbanner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.18;
    margin-bottom: 20px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

/* 副文案 */
.newbanner-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.75;
    opacity: 0.88;
    margin-bottom: 36px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

/* 响应式 */
@media (max-width: 768px) {
    .newbanner-inner {
        height: 400px;
    }

    .newbanner-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .newbanner-inner {
        height: 340px;
    }
}

/* ============================================
   EveryLife-inspired homepage refresh
   ============================================ */
:root {
    --section-spacing: 112px;
    --color-soft-bg: var(--color-soft-blue);
}

body {
    color: var(--color-text);
}

.hero-section {
    height: calc(100vh - 122px);
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(83, 86, 90, 0.18) 0%, rgba(83, 86, 90, 0.34) 70%, rgba(83, 86, 90, 0.28) 100%);
}

.hero-content-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 64px 24px 96px;
}

.hero-kicker {
    margin-bottom: 18px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-title {
    max-width: 980px;
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 6.2rem);
    font-weight: 400;
    line-height: 0.98;
    margin-bottom: 24px;
    color: #fff;
}

.hero-subtitle {
    max-width: 680px;
    margin-bottom: 34px;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
}

.hero-cta {
    min-width: 170px;
}

.manifesto-section {
    max-width: 980px;
}

.manifesto-title,
.featured-title {
    color: var(--color-primary-dark);
}

.manifesto-text,
.featured-desc {
    color: var(--color-text);
}

.btn-text {
    color: var(--color-primary-dark);
    border-bottom-color: var(--color-primary-dark);
}

.featured-image-wrapper {
    border-radius: 12px;
    box-shadow: none;
}

.featured-label {
    color: var(--color-primary);
}

.trust-section {
    padding: 88px 0;
    background: var(--color-soft-blue);
    border: 0;
}

.trust-item {
    max-width: 220px;
}

.trust-icon {
    width: 72px;
    height: 72px;
    padding: 16px;
    border: 1px solid rgba(119, 112, 131, 0.35);
    border-radius: 50%;
}

.story-banner {
    min-height: 520px;
    height: auto;
    background: var(--color-soft-blue);
}

.story-content-box {
    background: var(--color-soft-blue);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: clamp(2.35rem, 10vw, 4rem);
    }
}
