/* roulang page: index */
:root {
    --brand-primary: #1A3A2B;
    --brand-accent: #C8A96A;
    --brand-dark: #10251B;
    --bg-warm: #F7F4EF;
    --card-bg: #FFFFFF;
    --text-main: #2B2620;
    --text-muted: #7A7266;
    --border-light: #E8E2D8;
    --gradient-primary: linear-gradient(135deg, #1A3A2B 0%, #2D5A43 55%, #C8A96A 140%);
    --gradient-accent: linear-gradient(135deg, #C8A96A, #A98743);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --shadow-default: 0 4px 20px rgba(26, 58, 43, 0.08);
    --shadow-hover: 0 12px 32px rgba(26, 58, 43, 0.16);
    --transition: 0.3s ease;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: 'PingFang SC', 'Hiragino Sans GB', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    background: var(--bg-warm);
    color: var(--text-main);
    line-height: 1.75;
    font-size: 16px;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--brand-accent);
}
button {
    font-family: inherit;
}
.container {
    max-width: 1140px;
}
.container-1140 {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}
.text-muted-custom {
    color: var(--text-muted);
}
/* ==================== 导航 ==================== */
.main-nav {
    background: rgba(26, 58, 43, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    transition: background var(--transition), box-shadow var(--transition);
}
.main-nav.scrolled {
    background: rgba(16, 37, 27, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.main-nav .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}
.main-nav .brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    flex-shrink: 0;
}
.main-nav .navbar-nav {
    gap: 4px;
}
.main-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 999px;
    position: relative;
    transition: color var(--transition), background var(--transition);
}
.main-nav .nav-link:hover {
    color: var(--brand-accent);
    background: rgba(200, 169, 106, 0.1);
}
.main-nav .nav-link.active {
    color: var(--brand-accent);
    font-weight: 600;
}
.main-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--brand-accent);
    border-radius: 2px;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 16px;
}
.btn-login {
    background: var(--gradient-accent);
    color: #fff;
    border: none;
    padding: 8px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-login:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(200, 169, 106, 0.35);
    color: #fff;
}
.btn-register {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.45);
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 500;
    transition: all var(--transition);
}
.btn-register:hover {
    background: rgba(200, 169, 106, 0.12);
    border-color: var(--brand-accent);
    color: var(--brand-accent);
}
.main-nav .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 10px;
    background: transparent;
}
.main-nav .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.45);
    outline: none;
}
.navbar-toggler-icon-custom {
    width: 20px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.navbar-toggler-icon-custom span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-close-btn {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    z-index: 1060;
    cursor: pointer;
}
.nav-close-btn:hover {
    background: rgba(200, 169, 106, 0.3);
}
@media (max-width: 991.98px) {
    .main-nav .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        background: var(--brand-dark);
        z-index: 1050;
        padding: 90px 32px 32px;
        flex-direction: column;
        align-items: flex-start;
        transition: transform 0.35s ease;
        transform: translateX(100%);
        visibility: hidden;
        display: block;
        overflow-y: auto;
    }
    .main-nav .navbar-collapse.show {
        transform: translateX(0);
        visibility: visible;
    }
    .main-nav .navbar-collapse.collapsing {
        transform: translateX(100%);
        visibility: hidden;
        height: auto !important;
        transition: transform 0.35s ease;
    }
    .main-nav .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin: 0 0 24px;
    }
    .main-nav .nav-link {
        font-size: 20px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9);
        padding: 10px 0;
        width: 100%;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .main-nav .nav-link.active {
        border-left: 3px solid var(--brand-accent);
        padding-left: 16px;
        color: var(--brand-accent);
    }
    .main-nav .nav-link.active::after {
        display: none;
    }
    .main-nav .nav-link:hover {
        background: transparent;
        color: var(--brand-accent);
    }
    .nav-actions {
        width: 100%;
        margin-left: 0;
        flex-direction: column;
        align-items: stretch;
    }
    .nav-actions .btn {
        width: 100%;
        text-align: center;
    }
    .nav-close-btn {
        display: flex;
    }
}
/* ==================== Hero ==================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #1A3A2B 0%, #2D5A43 60%, #C8A96A 140%);
    padding: 120px 0 80px;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}
.hero-content {
    color: #fff;
}
.hero-italian {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    font-style: italic;
}
.hero-content h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 16px;
}
.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    max-width: 420px;
}
.hero-cta {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.btn-primary-custom {
    height: 52px;
    padding: 0 36px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 999px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary-custom:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 169, 106, 0.35);
    color: #fff;
}
.btn-ghost {
    height: 52px;
    padding: 0 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.btn-ghost:hover {
    background: rgba(200, 169, 106, 0.12);
    border-color: var(--brand-accent);
    color: var(--brand-accent);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}
.hero-trust span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-trust span i {
    color: var(--brand-accent);
    font-size: 14px;
}
.hero-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.hero-card-image {
    position: relative;
    aspect-ratio: 9 / 16;
    min-height: 420px;
    background: var(--brand-dark);
}
.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.hero-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, rgba(16, 37, 27, 0.85) 100%);
    z-index: 1;
}
.hero-italian-decor {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    font-size: 13px;
    letter-spacing: 2px;
}
.login-form-card {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 20px 20px 16px;
    z-index: 3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.login-form-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    text-align: center;
}
.login-form-card .form-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.login-form-card .form-control {
    height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    font-size: 14px;
    padding: 0 14px;
    box-shadow: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: #fff;
}
.login-form-card .form-control:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.25);
}
.btn-login-submit {
    width: 100%;
    height: 48px;
    background: var(--gradient-accent);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-top: 8px;
    transition: filter var(--transition), transform var(--transition);
}
.btn-login-submit:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}
.login-links {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 13px;
}
.login-links a {
    color: var(--text-muted);
}
.login-links a:hover {
    color: var(--brand-accent);
}
@media (max-width: 991.98px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .hero-card {
        max-width: 340px;
        margin: 0 auto;
        width: 100%;
    }
}
@media (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 48px;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    .hero-card {
        max-width: 340px;
        width: 100%;
        margin: 0 auto;
    }
}
/* ==================== 数据徽章 ==================== */
.stats-section {
    background: #F7F4EF;
    padding: 40px 0;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.stat-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-default);
    border: 1px solid var(--border-light);
    transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.stat-number {
    font-size: 32px;
    font-weight: 800;
    display: block;
    background: linear-gradient(135deg, #C8A96A, #A98743);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}
.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 6px;
}
@media (max-width: 991.98px) {
    .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 767.98px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .stat-card {
        padding: 16px 12px;
    }
    .stat-number {
        font-size: 24px;
    }
}
/* ==================== 爆款片段 ==================== */
.featured-section {
    background: #fff;
    padding: 80px 0;
}
.section-header {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    line-height: 1.4;
}
.section-header .section-sub {
    font-size: 14px;
    color: var(--text-muted);
}
.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 150px 150px;
    gap: 16px;
}
.featured-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-default);
    transition: box-shadow var(--transition), transform var(--transition);
}
.featured-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.featured-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.featured-card:hover img {
    transform: scale(1.03);
}
.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 25%, rgba(16, 37, 27, 0.85) 100%);
}
.featured-large {
    grid-row: 1 / 3;
    height: 316px;
}
.featured-small {
    height: 150px;
}
.featured-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.5px;
}
.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    background: var(--gradient-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
}
.featured-card h3 {
    position: absolute;
    bottom: 18px;
    left: 20px;
    right: 20px;
    z-index: 2;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}
@media (max-width: 991.98px) {
    .featured-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 180px;
    }
    .featured-large {
        grid-row: 1;
        grid-column: 1 / 3;
        height: 220px;
    }
    .featured-small {
        height: 180px;
    }
}
@media (max-width: 767.98px) {
    .featured-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .featured-large {
        grid-column: 1;
        height: 260px;
    }
    .featured-small {
        height: 180px;
    }
}
/* ==================== 种草清单 ==================== */
.wishlist-section {
    background: #F7F4EF;
    padding: 80px 0;
}
.wishlist-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.wishlist-scroll::-webkit-scrollbar {
    display: none;
}
.wishlist-card {
    flex: 0 0 260px;
    border-radius: var(--radius-md);
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-default);
    border: 1px solid var(--border-light);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.wishlist-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}
.wishlist-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.wishlist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.wishlist-card:hover .wishlist-image img {
    transform: scale(1.03);
}
.wishlist-index {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 28px;
    font-weight: 800;
    color: rgba(200, 169, 106, 0.6);
    line-height: 1;
    z-index: 2;
}
.wishlist-info {
    padding: 16px 16px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.wishlist-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wishlist-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wishlist-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition);
    align-self: flex-end;
}
.wishlist-btn:hover {
    background: var(--gradient-accent);
    border-color: transparent;
    color: #fff;
}
@media (max-width: 767.98px) {
    .wishlist-card {
        flex-basis: 220px;
    }
    .wishlist-image {
        height: 220px;
    }
}
/* ==================== 评论 / 口碑 ==================== */
.reviews-section {
    background: #10251B;
    padding: 80px 0;
}
.reviews-section .section-header h2 {
    color: var(--brand-accent);
}
.reviews-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.reviews-scroll::-webkit-scrollbar {
    display: none;
}
.review-card {
    flex: 0 0 320px;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    height: 160px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}
.review-user {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    flex: 1;
}
.review-stars {
    color: var(--brand-accent);
    font-size: 12px;
    letter-spacing: 1px;
}
.review-text {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: auto;
}
.review-meta {
    font-size: 12px;
    color: #B9B0A3;
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 767.98px) {
    .review-card {
        flex-basis: 250px;
    }
}
/* ==================== 一键跟买 CTA ==================== */
.cta-follow {
    background: var(--bg-warm);
    padding: 60px 0;
}
.cta-follow-inner {
    background: var(--brand-dark);
    border-radius: var(--radius-lg);
    padding: 64px 32px;
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 0 2px rgba(200, 169, 106, 0.35);
    overflow: hidden;
}
.cta-follow-inner::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: calc(var(--radius-lg) - 8px);
    border: 1px solid rgba(200, 169, 106, 0.2);
    pointer-events: none;
}
.cta-follow h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-accent);
    margin-bottom: 12px;
}
.cta-follow p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}
.btn-follow {
    width: 200px;
    height: 56px;
    background: var(--gradient-accent);
    border: none;
    border-radius: 999px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative;
    z-index: 2;
}
.btn-follow:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 169, 106, 0.4);
    color: #fff;
}
@media (max-width: 767.98px) {
    .cta-follow-inner {
        padding: 40px 20px;
    }
    .cta-follow h2 {
        font-size: 24px;
    }
}
/* ==================== 资讯 CMS ==================== */
.news-section {
    background: #F7F4EF;
    padding: 80px 0;
}
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.news-featured {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-default);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
}
.news-featured:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.news-featured-image {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--border-light);
}
.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.news-featured:hover .news-featured-image img {
    transform: scale(1.03);
}
.news-cat-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gradient-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    z-index: 2;
}
.news-featured-body {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-featured-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-featured-body p {
    font-size: 14px;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}
.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.news-meta .news-time {
    font-size: 13px;
    color: var(--text-muted);
}
.news-read-more {
    font-size: 14px;
    color: var(--brand-accent);
    font-weight: 600;
}
.news-read-more:hover {
    color: var(--brand-primary);
}
.news-featured a {
    text-decoration: none;
}
.news-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.news-list-item {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 18px 20px;
    box-shadow: var(--shadow-default);
    border: 1px solid var(--border-light);
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    gap: 16px;
    align-items: center;
}
.news-list-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}
.news-list-tag {
    background: rgba(200, 169, 106, 0.12);
    color: var(--brand-accent);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list-content {
    flex: 1;
    min-width: 0;
}
.news-list-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list-content .news-time {
    font-size: 12px;
    color: #B9B0A3;
}
.news-empty {
    height: 120px;
    background: #fff;
    border: 1px dashed var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
    gap: 8px;
    width: 100%;
}
.news-empty-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #D8D2C7;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    font-size: 18px;
    font-weight: 600;
}
@media (max-width: 991.98px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 767.98px) {
    .news-list-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* ==================== FAQ ==================== */
.faq-section {
    background: #fff;
    padding: 80px 0;
}
.custom-accordion .accordion-item {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-default);
    transition: box-shadow var(--transition);
}
.custom-accordion .accordion-item:hover {
    box-shadow: var(--shadow-hover);
}
.custom-accordion .accordion-item:first-of-type {
    border-radius: var(--radius-md) !important;
}
.custom-accordion .accordion-item:last-of-type {
    border-radius: var(--radius-md) !important;
}
.custom-accordion .accordion-button {
    background: #fff;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 600;
    padding: 18px 24px;
    box-shadow: none;
    border: none;
    position: relative;
}
.custom-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: var(--text-main);
    box-shadow: none;
    border-left: 4px solid var(--brand-accent);
}
.custom-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.45);
    outline: none;
    border-radius: var(--radius-md);
}
.custom-accordion .accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 22px;
    color: var(--brand-accent);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    width: 24px;
    height: 24px;
}
.custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
    background-image: none;
}
.custom-accordion .accordion-body {
    padding: 8px 24px 20px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    border-left: 4px solid var(--brand-accent);
}
.custom-accordion .accordion-collapse {
    overflow: hidden;
}
.accordion-button {
    border-radius: 0 !important;
}
/* ==================== 页脚 ==================== */
.footer {
    background: #10251B;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}
.footer-brand .brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gradient-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}
.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    max-width: 300px;
    line-height: 1.7;
}
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.footer-social a:hover {
    background: var(--brand-accent);
    color: #fff;
}
.footer h5 {
    color: var(--brand-accent);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}
.footer-links a:hover {
    color: var(--brand-accent);
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 12px;
}
.footer-contact i {
    color: var(--brand-accent);
    margin-top: 4px;
    width: 14px;
    text-align: center;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}
@media (max-width: 991.98px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand-col {
        grid-column: 1 / 3;
    }
}
@media (max-width: 767.98px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-brand-col {
        grid-column: auto;
    }
}
/* ==================== 通用按钮焦点状态 ==================== */
.btn:focus,
.btn-primary-custom:focus,
.btn-ghost:focus,
.btn-login:focus,
.btn-register:focus,
.btn-follow:focus {
    outline: 3px solid rgba(200, 169, 106, 0.45);
    box-shadow: none;
}
/* ==================== 区块间距 ==================== */
@media (max-width: 767.98px) {
    .featured-section,
    .wishlist-section,
    .reviews-section,
    .news-section,
    .faq-section {
        padding: 48px 0;
    }
    .section-header h2 {
        font-size: 24px;
    }
}

/* roulang page: article */
:root {
            --brand-primary: #1A3A2B;
            --brand-accent: #C8A96A;
            --brand-dark: #10251B;
            --bg-warm: #F7F4EF;
            --card-bg: #FFFFFF;
            --text-main: #2B2620;
            --text-muted: #7A7266;
            --border-light: #E8E2D8;
            --gradient-main: linear-gradient(135deg, #1A3A2B 0%, #2D5A43 55%, #C8A96A 140%);
            --gradient-accent: linear-gradient(135deg, #C8A96A, #A98743);
            --gradient-dark: linear-gradient(135deg, #1A3A2B, #2D5A43);
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-sm: 10px;
            --shadow-card: 0 4px 20px rgba(26,58,43,0.08);
            --shadow-hover: 0 12px 32px rgba(26,58,43,0.16);
            --font-main: 'PingFang SC', 'Hiragino Sans GB', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-main);
            background: var(--bg-warm);
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        button,
        input,
        textarea {
            font-family: inherit;
        }
        .container-1140 {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .page-article {
            padding-top: 80px;
            background: var(--bg-warm);
            min-height: 80vh;
        }
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-muted);
            padding: 16px 0 24px;
            margin: 0;
            background: transparent;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--text-muted);
            transition: color 0.3s ease;
        }
        .breadcrumb a:hover {
            color: var(--brand-accent);
        }
        .breadcrumb .sep {
            color: var(--border-light);
        }
        .breadcrumb .current {
            color: var(--text-main);
            font-weight: 500;
            max-width: 260px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .article-content-wrap {
            max-width: 720px;
            margin: 0 auto;
        }
        .article-header {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 40px 48px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            margin-bottom: 32px;
        }
        .article-header h1 {
            font-size: 30px;
            font-weight: 800;
            line-height: 1.4;
            color: var(--text-main);
            margin: 0 0 16px;
            letter-spacing: 0.01em;
        }
        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 13px;
            color: var(--text-muted);
            padding-top: 20px;
            border-top: 1px solid var(--border-light);
            margin-top: 24px;
        }
        .article-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .article-meta i {
            color: var(--brand-accent);
            font-size: 14px;
        }
        .article-body {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 48px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
            margin-bottom: 32px;
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-main);
            word-break: break-word;
        }
        .article-body h1,
        .article-body h2,
        .article-body h3,
        .article-body h4 {
            font-weight: 700;
            margin: 28px 0 16px;
            line-height: 1.5;
        }
        .article-body h1 {
            font-size: 26px;
        }
        .article-body h2 {
            font-size: 24px;
        }
        .article-body h3 {
            font-size: 20px;
            color: var(--brand-primary);
        }
        .article-body p {
            margin-bottom: 20px;
        }
        .article-body img {
            border-radius: var(--radius-md);
            margin: 24px 0;
            width: auto;
            max-width: 100%;
            height: auto;
        }
        .article-body blockquote {
            border-left: 4px solid var(--brand-accent);
            background: var(--bg-warm);
            padding: 16px 24px;
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            margin: 24px 0;
            font-style: normal;
            color: var(--text-main);
        }
        .article-body ul,
        .article-body ol {
            padding-left: 24px;
            margin-bottom: 20px;
        }
        .article-body li {
            margin-bottom: 8px;
        }
        .article-body table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin: 24px 0;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-light);
        }
        .article-body table th,
        .article-body table td {
            padding: 12px 16px;
            border-bottom: 1px solid var(--border-light);
            text-align: left;
            font-size: 15px;
        }
        .article-body table th {
            background: var(--bg-warm);
            font-weight: 600;
            color: var(--brand-primary);
        }
        .article-body table tr:last-child td {
            border-bottom: none;
        }
        .article-body pre {
            background: var(--brand-dark);
            color: #e8dcc8;
            border-radius: var(--radius-md);
            padding: 20px 24px;
            overflow-x: auto;
            margin: 24px 0;
            font-size: 14px;
            line-height: 1.7;
            border: none;
        }
        .article-body code {
            background: var(--bg-warm);
            border: 1px solid var(--border-light);
            border-radius: 6px;
            padding: 2px 8px;
            font-size: 14px;
            color: var(--brand-primary);
        }
        .article-body pre code {
            background: transparent;
            border: none;
            padding: 0;
            color: inherit;
        }
        .article-body .btn {
            display: inline-block;
            border-radius: 999px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .article-nav {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 48px;
        }
        .article-nav a {
            flex: 1;
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            font-size: 14px;
            color: var(--text-main);
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            max-width: calc(50% - 8px);
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }
        .article-nav a:hover {
            border-color: var(--brand-accent);
            color: var(--brand-primary);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .article-nav .nav-label {
            display: block;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 4px;
        }
        .related-wrap {
            background: var(--bg-warm);
            padding: 48px 0;
        }
        .related-wrap .section-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 24px;
            position: relative;
            padding-left: 16px;
        }
        .related-wrap .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 24px;
            background: var(--brand-accent);
            border-radius: 2px;
        }
        .related-card {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            height: 100%;
            display: block;
        }
        .related-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .related-card .img-wrap {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
        }
        .related-card .img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .related-card:hover .img-wrap img {
            transform: scale(1.03);
        }
        .related-card .card-body {
            padding: 16px 20px 20px;
        }
        .related-card .cat-tag {
            display: inline-block;
            background: rgba(200, 169, 106, 0.15);
            color: #A98743;
            font-size: 12px;
            font-weight: 600;
            border-radius: 999px;
            padding: 2px 12px;
            margin-bottom: 10px;
        }
        .related-card h3 {
            font-size: 16px;
            font-weight: 700;
            line-height: 1.5;
            color: var(--text-main);
            margin: 0 0 8px;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
        }
        .related-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .article-empty {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 80px 24px;
            text-align: center;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-light);
        }
        .article-empty .empty-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: var(--bg-warm);
            color: var(--text-muted);
            font-size: 32px;
            font-weight: 300;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            border: 1px dashed var(--border-light);
        }
        .article-empty h2 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 12px;
        }
        .article-empty p {
            color: var(--text-muted);
            margin-bottom: 24px;
            font-size: 15px;
        }
        .btn-primary-milan {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-accent);
            color: #fff;
            border: none;
            border-radius: 999px;
            padding: 12px 32px;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            outline: none;
            box-shadow: 0 4px 16px rgba(200, 169, 106, 0.3);
        }
        .btn-primary-milan:hover {
            filter: brightness(1.05);
            transform: translateY(-2px);
            color: #fff;
            box-shadow: 0 8px 24px rgba(200, 169, 106, 0.45);
        }
        .btn-primary-milan:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(200, 169, 106, 0.3);
        }
        .btn-primary-milan:focus-visible,
        .btn-outline-milan:focus-visible {
            outline: 3px solid rgba(200, 169, 106, 0.45);
        }
        .btn-outline-milan {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: var(--brand-primary);
            border: 1.5px solid var(--brand-primary);
            border-radius: 999px;
            padding: 12px 32px;
            font-size: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-outline-milan:hover {
            background: rgba(26, 58, 43, 0.08);
            color: var(--brand-primary);
        }
        .main-nav {
            background: rgba(26, 58, 43, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 14px 0;
            transition: background 0.3s ease, box-shadow 0.3s ease;
            z-index: 1050;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .main-nav.navbar-scrolled {
            background: #123122;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
        }
        .main-nav .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.02em;
        }
        .main-nav .navbar-brand:hover {
            color: var(--brand-accent);
        }
        .brand-logo {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, #C8A96A, #A98743);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            color: #fff;
            box-shadow: 0 2px 10px rgba(200, 169, 106, 0.35);
        }
        .main-nav .navbar-nav {
            gap: 4px;
        }
        .main-nav .nav-link {
            color: rgba(255, 255, 255, 0.85);
            font-size: 15px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 8px;
            transition: color 0.3s ease;
            position: relative;
        }
        .main-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--brand-accent);
            border-radius: 2px;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .main-nav .nav-link:hover {
            color: var(--brand-accent);
        }
        .main-nav .nav-link:hover::after {
            transform: scaleX(1);
        }
        .main-nav .nav-link.active {
            color: var(--brand-accent);
            font-weight: 600;
        }
        .main-nav .nav-link.active::after {
            transform: scaleX(1);
        }
        .main-nav .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-left: 16px;
        }
        .main-nav .btn-login,
        .main-nav .btn-register {
            border-radius: 999px;
            padding: 8px 24px;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .main-nav .btn-login {
            background: var(--gradient-accent);
            color: #fff;
            border: none;
            box-shadow: 0 2px 10px rgba(200, 169, 106, 0.3);
        }
        .main-nav .btn-login:hover {
            filter: brightness(1.05);
            transform: translateY(-1px);
            color: #fff;
            box-shadow: 0 6px 18px rgba(200, 169, 106, 0.4);
        }
        .main-nav .btn-register {
            background: transparent;
            color: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }
        .main-nav .btn-register:hover {
            background: rgba(200, 169, 106, 0.12);
            border-color: var(--brand-accent);
            color: var(--brand-accent);
        }
        .navbar-toggler-icon-custom {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 28px;
            height: 28px;
        }
        .navbar-toggler-icon-custom span {
            display: block;
            height: 2px;
            width: 100%;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .navbar-toggler {
            border: none;
            padding: 4px;
            outline: none;
        }
        .navbar-toggler:focus {
            box-shadow: none;
            outline: 3px solid rgba(200, 169, 106, 0.45);
            border-radius: 8px;
        }
        .nav-close-btn {
            display: none;
        }
        .footer {
            background: var(--brand-dark);
            padding: 64px 0 0;
            color: rgba(255, 255, 255, 0.8);
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1.2fr;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
        }
        .footer-desc {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.6);
            margin: 0 0 20px;
            max-width: 320px;
        }
        .footer-social {
            display: flex;
            gap: 12px;
        }
        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .footer-social a:hover {
            background: var(--brand-accent);
            color: #fff;
            transform: translateY(-3px);
        }
        .footer h5 {
            color: var(--brand-accent);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.02em;
        }
        .footer-links,
        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--brand-accent);
            padding-left: 4px;
        }
        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 14px;
            line-height: 1.6;
        }
        .footer-contact i {
            color: var(--brand-accent);
            font-size: 14px;
            margin-top: 4px;
            flex-shrink: 0;
        }
        .footer-bottom {
            padding: 24px 0;
            text-align: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }
        @media (max-width: 991.98px) {
            .container-1140 {
                padding: 0 20px;
            }
            .main-nav {
                padding: 12px 0;
            }
            .main-nav .navbar-collapse {
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                background: var(--brand-dark);
                z-index: 1060;
                padding: 80px 32px 32px;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                overflow-y: auto;
                transform: translateX(100%);
                transition: transform 0.3s ease;
            }
            .main-nav .navbar-collapse.show {
                transform: translateX(0);
            }
            .main-nav .navbar-collapse .navbar-nav {
                flex-direction: column;
                width: 100%;
                gap: 8px;
                margin: 0 0 32px;
            }
            .main-nav .navbar-collapse .nav-link {
                font-size: 20px;
                font-weight: 600;
                padding: 14px 16px;
                border-radius: 12px;
                border-left: 3px solid transparent;
                color: rgba(255, 255, 255, 0.9);
            }
            .main-nav .navbar-collapse .nav-link.active {
                border-left-color: var(--brand-accent);
                background: rgba(200, 169, 106, 0.08);
                color: var(--brand-accent);
            }
            .main-nav .navbar-collapse .nav-link::after {
                display: none;
            }
            .main-nav .nav-actions {
                width: 100%;
                margin-left: 0;
                flex-direction: column;
                gap: 12px;
            }
            .main-nav .nav-actions .btn {
                width: 100%;
                justify-content: center;
                padding: 12px 24px;
                font-size: 16px;
            }
            .nav-close-btn {
                display: flex;
                align-items: center;
                justify-content: center;
                position: absolute;
                top: 20px;
                right: 20px;
                width: 44px;
                height: 44px;
                background: rgba(200, 169, 106, 0.15);
                border: none;
                border-radius: 50%;
                font-size: 18px;
                color: var(--brand-accent);
                cursor: pointer;
                z-index: 1070;
                transition: background 0.3s ease;
            }
            .nav-close-btn:hover {
                background: rgba(200, 169, 106, 0.3);
            }
            .article-header {
                padding: 32px 24px;
            }
            .article-header h1 {
                font-size: 26px;
            }
            .article-body {
                padding: 32px 24px;
            }
        }
        @media (max-width: 767.98px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .breadcrumb {
                padding: 12px 0 16px;
            }
            .breadcrumb .current {
                max-width: 160px;
            }
            .article-nav {
                flex-direction: column;
            }
            .article-nav a {
                max-width: 100%;
            }
        }
        @media (max-width: 575.98px) {
            .article-header h1 {
                font-size: 22px;
                line-height: 1.5;
            }
            .article-header {
                padding: 24px 20px;
            }
            .article-body {
                padding: 24px 20px;
                font-size: 15px;
            }
            .article-meta {
                gap: 12px;
                font-size: 12px;
            }
            .main-nav .btn-login {
                padding: 8px 18px;
                font-size: 13px;
            }
        }

/* roulang page: category1 */
:root {
            --brand-primary: #1A3A2B;
            --brand-accent: #C8A96A;
            --brand-dark: #10251B;
            --bg-warm: #F7F4EF;
            --card-bg: #FFFFFF;
            --text-main: #2B2620;
            --text-muted: #7A7266;
            --border-light: #E8E2D8;
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-sm: 10px;
            --shadow-card: 0 4px 20px rgba(26, 58, 43, 0.08);
            --shadow-hover: 0 12px 32px rgba(26, 58, 43, 0.16);
            --gradient-main: linear-gradient(135deg, #1A3A2B 0%, #2D5A43 55%, #C8A96A 140%);
            --gradient-btn: linear-gradient(135deg, #C8A96A, #A98743);
            --gradient-btn2: linear-gradient(135deg, #1A3A2B, #2D5A43);
            --transition-base: all 0.3s ease;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            font-family: 'PingFang SC', 'Hiragino Sans GB', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
            line-height: 1.75;
            background-color: var(--bg-warm);
            color: var(--text-main);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: var(--brand-primary);
            transition: var(--transition-base);
        }

        a:hover {
            color: var(--brand-accent);
        }

        img {
            max-width: 100%;
            vertical-align: middle;
        }

        button {
            font-family: inherit;
        }

        .container-1140 {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .container {
            max-width: 1140px;
            padding-right: 20px;
            padding-left: 20px;
        }

        section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 12px;
            color: var(--text-main);
        }

        .section-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 640px;
        }

        .text-gold {
            color: var(--brand-accent);
        }

        @media (max-width: 768px) {
            section {
                padding: 48px 0;
            }

            .section-title {
                font-size: 24px;
            }

            .section-subtitle {
                font-size: 14px;
                margin-bottom: 28px;
            }
        }

        /* 导航 */
        .main-nav {
            background: rgba(26, 58, 43, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            min-height: 72px;
            padding-top: 0;
            padding-bottom: 0;
            box-shadow: 0 2px 16px rgba(16, 37, 27, 0.18);
            transition: var(--transition-base);
        }

        .main-nav.scrolled {
            background: rgba(16, 37, 27, 0.98);
            box-shadow: 0 4px 24px rgba(16, 37, 27, 0.3);
        }

        .main-nav .container {
            display: flex;
            align-items: center;
            flex-wrap: inherit;
            min-height: 72px;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: #ffffff !important;
            letter-spacing: 0.5px;
            padding-top: 0;
            padding-bottom: 0;
        }

        .navbar-brand .brand-logo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, #C8A96A, #A98743);
            border-radius: 10px;
            font-size: 20px;
            font-weight: 800;
            color: var(--brand-dark);
            box-shadow: 0 2px 8px rgba(200, 169, 106, 0.35);
        }

        .navbar-brand span:last-child {
            color: #fff;
        }

        .main-nav .navbar-nav {
            gap: 6px;
        }

        .main-nav .nav-link {
            color: rgba(255, 255, 255, 0.82);
            font-size: 15px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 999px;
            position: relative;
            transition: var(--transition-base);
        }

        .main-nav .nav-link:hover,
        .main-nav .nav-link:focus {
            color: var(--brand-accent);
            background: rgba(200, 169, 106, 0.1);
        }

        .main-nav .nav-link.active {
            color: var(--brand-accent);
            font-weight: 600;
            background: rgba(200, 169, 106, 0.08);
        }

        .main-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--brand-accent);
            border-radius: 2px;
        }

        .main-nav .nav-actions {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .btn-login {
            background: var(--gradient-btn);
            color: #fff;
            border: none;
            border-radius: 999px;
            padding: 9px 24px;
            font-size: 14px;
            font-weight: 600;
            transition: var(--transition-base);
            box-shadow: 0 2px 8px rgba(200, 169, 106, 0.3);
        }

        .btn-login:hover,
        .btn-login:focus {
            filter: brightness(1.05);
            transform: translateY(-2px);
            color: #fff;
            box-shadow: 0 4px 16px rgba(200, 169, 106, 0.45);
        }

        .btn-login:active {
            transform: translateY(0);
            box-shadow: 0 2px 6px rgba(200, 169, 106, 0.3);
        }

        .btn-register {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.5);
            color: #fff;
            border-radius: 999px;
            padding: 9px 24px;
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition-base);
        }

        .btn-register:hover,
        .btn-register:focus {
            border-color: var(--brand-accent);
            color: var(--brand-accent);
            background: rgba(200, 169, 106, 0.12);
            box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.15);
        }

        .btn-register:active {
            transform: translateY(1px);
        }

        .main-nav .navbar-toggler {
            border: none;
            box-shadow: none;
            padding: 0;
            width: 40px;
            height: 40px;
        }

        .navbar-toggler-icon-custom {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 28px;
            height: 20px;
        }

        .navbar-toggler-icon-custom span {
            display: block;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: var(--transition-base);
        }

        .nav-close-btn {
            display: none;
        }

        @media (max-width: 991.98px) {
            .main-nav {
                background: var(--brand-dark);
            }

            .main-nav .container {
                min-height: 64px;
            }

            .main-nav .navbar-collapse {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--brand-dark);
                z-index: 1050;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                padding: 60px 30px;
                opacity: 0;
                visibility: hidden;
                transition: opacity 0.3s ease, visibility 0.3s ease;
            }

            .main-nav .navbar-collapse.show {
                opacity: 1;
                visibility: visible;
            }

            .main-nav .navbar-collapse .navbar-nav {
                flex-direction: column;
                gap: 10px;
                text-align: center;
                margin: 0 0 30px 0 !important;
            }

            .main-nav .nav-link {
                font-size: 20px;
                font-weight: 600;
                padding: 12px;
                color: #fff;
            }

            .main-nav .nav-link.active {
                border-right: 3px solid var(--brand-accent);
            }

            .main-nav .nav-actions {
                flex-direction: row;
                margin-top: 10px;
            }

            .nav-close-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
                width: 44px;
                height: 44px;
                background: transparent;
                border: 1px solid rgba(255, 255, 255, 0.3);
                border-radius: 50%;
                color: #fff;
                font-size: 24px;
                line-height: 1;
                cursor: pointer;
                z-index: 1060;
                transition: var(--transition-base);
            }

            .nav-close-btn:hover {
                border-color: var(--brand-accent);
                color: var(--brand-accent);
                transform: rotate(90deg);
            }

            .navbar-toggler {
                z-index: 1061;
            }
        }

        /* 页面横幅区 */
        .category-banner {
            background: linear-gradient(135deg, rgba(26, 58, 43, 0.92) 0%, rgba(45, 90, 67, 0.78) 60%, rgba(200, 169, 106, 0.35) 140%), url('/assets/images/backpic/back-2.png') center/cover no-repeat;
            padding: 120px 0 50px;
            margin-top: 72px;
            position: relative;
            text-align: center;
        }

        .category-banner .banner-inner {
            max-width: 820px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .category-banner h1 {
            font-size: 36px;
            font-weight: 800;
            line-height: 1.3;
            color: #fff;
            margin-bottom: 16px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
        }

        .category-banner .banner-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.88);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .category-banner .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(200, 169, 106, 0.18);
            border: 1px solid rgba(200, 169, 106, 0.45);
            color: var(--brand-accent);
            font-size: 13px;
            font-weight: 500;
            padding: 5px 16px;
            border-radius: 999px;
            margin-bottom: 20px;
            backdrop-filter: blur(6px);
        }

        @media (max-width: 768px) {
            .category-banner {
                padding: 100px 0 40px;
            }

            .category-banner h1 {
                font-size: 28px;
            }

            .category-banner .banner-desc {
                font-size: 14px;
            }
        }

        /* 会员权益区 */
        .benefit-section {
            background: var(--card-bg);
            padding: 80px 0;
        }

        .benefit-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }

        .benefit-card {
            background: var(--bg-warm);
            border-radius: var(--radius-md);
            padding: 32px 24px;
            transition: var(--transition-base);
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--gradient-btn);
            transition: height 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .benefit-card:hover::before {
            height: 100%;
        }

        .benefit-card .benefit-icon {
            font-size: 32px;
            color: var(--brand-accent);
            margin-bottom: 16px;
            display: inline-block;
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(200, 169, 106, 0.15), rgba(200, 169, 106, 0.05));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .benefit-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-main);
        }

        .benefit-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 0;
        }

        @media (max-width: 991px) {
            .benefit-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .benefit-section {
                padding: 48px 0;
            }

            .benefit-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }

            .benefit-card {
                padding: 22px 18px;
            }

            .benefit-card .benefit-icon {
                width: 44px;
                height: 44px;
                font-size: 22px;
            }

            .benefit-card h3 {
                font-size: 16px;
            }

            .benefit-card p {
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .benefit-grid {
                grid-template-columns: 1fr;
            }
        }

        /* 会员登录流程 */
        .process-section {
            background: var(--bg-warm);
            padding: 80px 0;
        }

        .process-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            justify-content: space-between;
        }

        .process-item {
            flex: 1;
            min-width: 220px;
            max-width: 240px;
            position: relative;
            padding: 32px 20px 20px;
            text-align: center;
        }

        .process-item .step-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gradient-main);
            color: #fff;
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 16px;
            box-shadow: 0 4px 16px rgba(26, 58, 43, 0.3);
        }

        .process-item h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-main);
        }

        .process-item p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.65;
            margin-bottom: 0;
        }

        .process-item::after {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--brand-accent);
            font-size: 14px;
        }

        .process-item:last-child::after {
            display: none;
        }

        @media (max-width: 991px) {
            .process-grid {
                justify-content: center;
                gap: 20px;
            }

            .process-item {
                flex: 0 0 calc(50% - 20px);
                max-width: calc(50% - 20px);
            }

            .process-item::after {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .process-section {
                padding: 48px 0;
            }

            .process-item {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        /* 精选推荐区 */
        .featured-section {
            background: var(--card-bg);
            padding: 80px 0;
        }

        .featured-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .featured-card {
            background: var(--card-bg);
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: var(--transition-base);
            display: flex;
            flex-direction: row;
            align-items: stretch;
            box-shadow: var(--shadow-card);
        }

        .featured-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .featured-card .card-thumb {
            width: 120px;
            min-height: 120px;
            flex-shrink: 0;
            overflow: hidden;
            position: relative;
        }

        .featured-card .card-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .featured-card:hover .card-thumb img {
            transform: scale(1.05);
        }

        .featured-card .card-body {
            padding: 20px 20px 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .featured-card .card-tag {
            align-self: flex-start;
            background: rgba(200, 169, 106, 0.14);
            color: #8a6f35;
            font-size: 12px;
            font-weight: 600;
            padding: 3px 12px;
            border-radius: 999px;
            margin-bottom: 10px;
            border: 1px solid rgba(200, 169, 106, 0.25);
        }

        .featured-card h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .featured-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }

        .featured-card .card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid #F0EBE2;
            padding-top: 10px;
            margin-top: auto;
        }

        .featured-card .card-meta a {
            color: var(--brand-accent);
            font-weight: 600;
        }

        .featured-card .card-meta a:hover {
            color: #8a6f35;
        }

        @media (max-width: 768px) {
            .featured-section {
                padding: 48px 0;
            }

            .featured-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .featured-card .card-thumb {
                width: 100px;
                min-height: 100px;
            }

            .featured-card .card-body {
                padding: 14px;
            }

            .featured-card h3 {
                font-size: 15px;
            }
        }

        /* 会员案例/适用场景 */
        .scenario-section {
            background: var(--bg-warm);
            padding: 80px 0;
        }

        .scenario-wrap {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 32px;
            align-items: stretch;
        }

        .scenario-main {
            background: linear-gradient(135deg, rgba(26, 58, 43, 0.92), rgba(45, 90, 67, 0.8)), url('/assets/images/backpic/back-3.webp') center/cover;
            border-radius: var(--radius-lg);
            padding: 40px;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            position: relative;
            overflow: hidden;
            min-height: 320px;
        }

        .scenario-main h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .scenario-main p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.78);
            max-width: 90%;
            line-height: 1.7;
        }

        .scenario-list-side {
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: space-between;
        }

        .scenario-item {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            padding: 24px 24px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-card);
            transition: var(--transition-base);
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .scenario-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .scenario-item .scenario-icon {
            font-size: 20px;
            color: var(--brand-accent);
            margin-bottom: 8px;
        }

        .scenario-item h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
        }

        .scenario-item p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 0;
            line-height: 1.6;
        }

        @media (max-width: 991px) {
            .scenario-wrap {
                grid-template-columns: 1fr;
            }

            .scenario-main {
                padding: 30px;
                min-height: 220px;
            }
        }

        @media (max-width: 768px) {
            .scenario-section {
                padding: 48px 0;
            }

            .scenario-main {
                min-height: 200px;
                padding: 24px;
            }

            .scenario-main h3 {
                font-size: 20px;
            }

            .scenario-item {
                padding: 18px;
            }
        }

        /* CTA 区块 */
        .cta-section {
            background: var(--brand-dark);
            padding: 20px 0 80px;
        }

        .cta-card {
            background: var(--brand-dark);
            border-radius: var(--radius-lg);
            padding: 64px 40px;
            text-align: center;
            border: 2px solid transparent;
            background-image: linear-gradient(var(--brand-dark), var(--brand-dark)), linear-gradient(135deg, #C8A96A, #A98743, #C8A96A);
            background-origin: border-box;
            background-clip: padding-box, border-box;
            box-shadow: 0 12px 48px rgba(16, 37, 27, 0.4);
        }

        .cta-card h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--brand-accent);
            margin-bottom: 12px;
        }

        .cta-card p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 32px;
        }

        .btn-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 200px;
            height: 56px;
            padding: 0 40px;
            background: var(--gradient-btn);
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            border: none;
            border-radius: 999px;
            transition: var(--transition-base);
            box-shadow: 0 4px 24px rgba(200, 169, 106, 0.4);
        }

        .btn-cta:hover,
        .btn-cta:focus {
            filter: brightness(1.05);
            transform: translateY(-2px);
            color: #fff;
            box-shadow: 0 6px 32px rgba(200, 169, 106, 0.55);
        }

        .btn-cta:active {
            transform: translateY(0);
            box-shadow: 0 2px 12px rgba(200, 169, 106, 0.4);
        }

        .cta-note {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
            margin-top: 18px;
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .cta-card {
                padding: 40px 20px;
            }

            .cta-card h2 {
                font-size: 22px;
            }

            .btn-cta {
                width: 100%;
                max-width: 260px;
                min-width: 0;
            }
        }

        /* FAQ 区 */
        .faq-section {
            background: var(--card-bg);
            padding: 80px 0;
        }

        .faq-wrap {
            max-width: 760px;
            margin: 0 auto;
        }

        .accordion-item {
            background: var(--card-bg);
            border: 1px solid var(--border-light) !important;
            border-radius: var(--radius-md) !important;
            margin-bottom: 14px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(26, 58, 43, 0.04);
            transition: var(--transition-base);
            position: relative;
        }

        .accordion-item:has(.accordion-button:not(.collapsed)) {
            border-color: rgba(200, 169, 106, 0.4) !important;
            box-shadow: 0 4px 20px rgba(200, 169, 106, 0.1);
        }

        .accordion-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--gradient-btn);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1;
        }

        .accordion-item:has(.accordion-button:not(.collapsed))::before {
            opacity: 1;
        }

        .accordion-button {
            padding: 20px 22px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            background: transparent;
            border: none;
            box-shadow: none;
            border-radius: var(--radius-md);
            padding-right: 56px;
        }

        .accordion-button:not(.collapsed) {
            color: var(--text-main);
            background: transparent;
        }

        .accordion-button:focus {
            box-shadow: none;
            outline: 3px solid rgba(200, 169, 106, 0.3);
            outline-offset: -1px;
        }

        .accordion-button::after {
            content: '+';
            background-image: none !important;
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 20px;
            color: var(--brand-accent);
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(200, 169, 106, 0.1);
            border-radius: 50%;
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            transition: var(--transition-base);
            line-height: 1;
        }

        .accordion-button:not(.collapsed)::after {
            transform: translateY(-50%) rotate(45deg);
            background: var(--gradient-btn);
            color: #fff;
        }

        .accordion-body {
            padding: 0 22px 22px;
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.75;
            border-top: 1px solid #F0EBE2;
            padding-top: 16px;
            margin-top: 0;
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 48px 0;
            }

            .accordion-button {
                font-size: 15px;
                padding: 16px 50px 16px 16px;
            }

            .accordion-body {
                font-size: 14px;
                padding: 0 16px 16px;
            }
        }

        /* 页脚 */
        .footer {
            background: var(--brand-dark);
            padding: 60px 0 0;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer .container-1140 {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .footer-brand .brand-logo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 34px;
            height: 34px;
            background: linear-gradient(135deg, #C8A96A, #A98743);
            border-radius: 10px;
            font-size: 18px;
            font-weight: 800;
            color: var(--brand-dark);
        }

        .footer-brand span:last-child {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
        }

        .footer-desc {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 20px;
            max-width: 340px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.75);
            font-size: 15px;
            transition: var(--transition-base);
            background: transparent;
        }

        .footer-social a:hover {
            background: var(--gradient-btn);
            border-color: var(--brand-accent);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 4px 16px rgba(200, 169, 106, 0.3);
        }

        .footer h5 {
            font-size: 16px;
            font-weight: 600;
            color: var(--brand-accent);
            margin-bottom: 20px;
        }

        .footer-links,
        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            transition: var(--transition-base);
        }

        .footer-links a:hover {
            color: var(--brand-accent);
            padding-left: 4px;
        }

        .footer-contact li {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 14px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .footer-contact i {
            color: var(--brand-accent);
            flex-shrink: 0;
            margin-top: 3px;
            font-size: 14px;
        }

        .footer-bottom {
            padding: 20px 0;
            text-align: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }

        @media (max-width: 768px) {
            .footer {
                padding: 40px 0 0;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-desc {
                max-width: 100%;
            }
        }

        .btn:focus,
        .nav-link:focus {
            outline: 3px solid rgba(200, 169, 106, 0.45);
            outline-offset: 0;
            box-shadow: none;
        }

        @media (max-width: 576px) {
            .container {
                padding-right: 16px;
                padding-left: 16px;
            }

            .container-1140 {
                padding-right: 16px;
                padding-left: 16px;
            }
        }

/* roulang page: category2 */
/* ===== 设计变量 ===== */
:root {
    --brand-primary: #1A3A2B;
    --brand-accent: #C8A96A;
    --brand-dark: #10251B;
    --bg-warm: #F7F4EF;
    --card-bg: #FFFFFF;
    --text-main: #2B2620;
    --text-muted: #7A7266;
    --border-light: #E8E2D8;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --shadow-card: 0 4px 20px rgba(26, 58, 43, 0.08);
    --shadow-hover: 0 12px 32px rgba(26, 58, 43, 0.16);
    --gradient-hero: linear-gradient(135deg, #1A3A2B 0%, #2D5A43 60%, #C8A96A 140%);
    --gradient-btn: linear-gradient(135deg, #C8A96A, #A98743);
    --gradient-btn2: linear-gradient(135deg, #1A3A2B, #2D5A43);
}

/* ===== Reset / Base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'PingFang SC', 'Hiragino Sans GB', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    background: var(--bg-warm);
    color: var(--text-main);
    line-height: 1.75;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }
button { border: none; background: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.4; margin-bottom: 0; }
p { margin-bottom: 0; }

.container-1140 {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 导航栏 ===== */
.main-nav {
    background: rgba(26, 58, 43, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}
.main-nav.scrolled {
    background: rgba(16, 37, 27, 0.97);
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.main-nav .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0;
}
.main-nav .navbar-brand:hover { color: var(--brand-accent); }
.brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient-btn);
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 2px 10px rgba(200,169,106,0.3);
}
.main-nav .navbar-nav { gap: 4px; }
.main-nav .nav-link {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 18px !important;
    border-radius: 999px;
    position: relative;
    transition: color 0.3s ease, background 0.3s ease;
}
.main-nav .nav-link:hover {
    color: var(--brand-accent);
    background: rgba(200,169,106,0.12);
}
.main-nav .nav-link.active {
    color: var(--brand-accent);
    font-weight: 600;
    background: rgba(200,169,106,0.1);
}
.main-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--brand-accent);
    border-radius: 2px;
}
.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}
.btn-login {
    background: var(--gradient-btn);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 999px;
    transition: all 0.3s ease;
    border: none;
}
.btn-login:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 18px rgba(200,169,106,0.35);
}
.btn-register {
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}
.btn-register:hover {
    background: rgba(200,169,106,0.15);
    border-color: var(--brand-accent);
    color: var(--brand-accent);
}
.navbar-toggler { border: none; padding: 4px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon-custom {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.navbar-toggler-icon-custom span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-close-btn {
    display: none;
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    z-index: 10;
    padding: 4px 8px;
}
.nav-close-btn:hover { color: var(--brand-accent); }

/* ===== 分类页横幅 ===== */
.category-hero {
    position: relative;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(16,37,27,0.82) 0%, rgba(45,90,67,0.72) 70%), url('/assets/images/backpic/back-1.png') center/cover no-repeat;
    padding: 90px 20px 60px;
    margin-top: 64px;
}
.category-hero-inner { max-width: 720px; margin: 0 auto; }
.category-hero .hero-deco {
    color: rgba(200,169,106,0.75);
    font-size: 14px;
    font-style: italic;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}
.category-hero h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 14px;
    letter-spacing: 1px;
}
.category-hero .hero-sub {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}
.category-hero .hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-hero-gold {
    background: var(--gradient-btn);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 999px;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}
.btn-hero-gold:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 8px 24px rgba(200,169,106,0.4);
}
.btn-hero-ghost {
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 11px 26px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.45);
    transition: all 0.3s ease;
    display: inline-block;
}
.btn-hero-ghost:hover {
    background: rgba(200,169,106,0.12);
    border-color: var(--brand-accent);
    color: var(--brand-accent);
}

/* ===== 通用 section ===== */
.section-block { padding: 80px 0; }
.section-warm { background: var(--bg-warm); }
.section-white { background: #fff; }
.section-dark { background: var(--brand-dark); }
.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-tag {
    display: inline-block;
    background: rgba(200,169,106,0.12);
    color: #A98743;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 10px;
}
.section-header p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== 精选好物列表 ===== */
.featured-goods { padding: 80px 0; background: var(--bg-warm); }
.goods-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
.goods-item {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    gap: 24px;
}
.goods-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.goods-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 90px;
    border-radius: 14px;
    overflow: hidden;
}
.goods-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.goods-item:hover .goods-thumb img { transform: scale(1.06); }
.goods-info { flex: 1; min-width: 0; }
.goods-info .goods-cat {
    display: inline-block;
    background: rgba(26,58,43,0.08);
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 999px;
    margin-bottom: 6px;
}
.goods-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}
.goods-info p {
    font-size: 14px;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}
.goods-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-muted);
}
.goods-meta .view-link {
    color: var(--brand-primary);
    font-weight: 600;
    font-size: 13px;
}
.goods-meta .view-link:hover { color: var(--brand-accent); }
.goods-tag {
    display: inline-block;
    background: var(--gradient-btn);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 999px;
    margin-left: auto;
    flex-shrink: 0;
}

/* ===== 品质严选 ===== */
.quality-section { padding: 80px 0; background: #fff; }
.quality-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 24px;
    align-items: stretch;
}
.quality-main-card {
    background: linear-gradient(135deg, rgba(16,37,27,0.75) 0%, rgba(26,58,43,0.55) 100%), url('/assets/images/backpic/back-2.png') center/cover no-repeat;
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.quality-main-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.quality-main-card h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}
.quality-main-card p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.7;
}
.quality-main-card .q-tag {
    display: inline-block;
    background: rgba(200,169,106,0.25);
    color: #E8D4A0;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
    align-self: flex-start;
}
.quality-side-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.quality-side-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    flex: 1;
}
.quality-side-card:hover {
    border-color: var(--brand-accent);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}
.quality-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-btn2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-accent);
    font-size: 18px;
}
.quality-side-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-main);
}
.quality-side-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== 人气单品横向墙 ===== */
.hot-picks-section { padding: 80px 0; background: var(--bg-warm); }
.hot-picks-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none;
}
.hot-picks-scroll::-webkit-scrollbar { display: none; }
.hot-pick-card {
    flex-shrink: 0;
    width: 260px;
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 16px;
}
.hot-pick-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.hot-pick-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.hot-pick-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.hot-pick-card:hover .hot-pick-img img { transform: scale(1.05); }
.hot-pick-num {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 28px;
    font-weight: 800;
    color: rgba(200,169,106,0.85);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.hot-pick-body { padding: 14px 16px 0; }
.hot-pick-body h3 {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
    color: var(--text-main);
}
.hot-pick-body .sub {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 12px;
}
.hot-pick-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hot-pick-sold {
    background: var(--gradient-btn);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 999px;
}
.heart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.heart-btn:hover {
    background: rgba(200,169,106,0.12);
    color: var(--brand-accent);
    border-color: var(--brand-accent);
    transform: scale(1.08);
}

/* ===== 会员权益 ===== */
.member-benefits-section { padding: 80px 0; background: var(--brand-dark); }
.benefits-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.benefits-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.benefits-content .section-tag {
    background: rgba(200,169,106,0.18);
    color: #E8D4A0;
}
.benefits-content h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}
.benefits-content .benefits-desc {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.7;
}
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
}
.benefits-list li i {
    color: var(--brand-accent);
    font-size: 14px;
}
.btn-benefits {
    background: var(--gradient-btn);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 999px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}
.btn-benefits:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 8px 24px rgba(200,169,106,0.4);
}

/* ===== 选购流程 ===== */
.steps-section { padding: 80px 0; background: #fff; }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.step-item {
    text-align: center;
    padding: 28px 20px;
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    position: relative;
    transition: all 0.3s ease;
}
.step-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-btn);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(200,169,106,0.3);
}
.step-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}
.step-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.step-arrow {
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
    color: var(--brand-accent);
    font-size: 16px;
    z-index: 2;
}
.step-item:last-child .step-arrow { display: none; }

/* ===== FAQ ===== */
.faq-section { padding: 80px 0; background: var(--bg-warm); }
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-wrap .accordion-item {
    background: #fff;
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: none;
    position: relative;
}
.faq-wrap .accordion-item:first-child { border-radius: var(--radius-md) !important; }
.faq-wrap .accordion-item:last-child { border-radius: var(--radius-md) !important; }
.faq-wrap .accordion-item:not(:last-child) { border-bottom: 1px solid var(--border-light) !important; }
.faq-wrap .accordion-button {
    background: #fff;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 600;
    padding: 18px 24px 18px 20px;
    box-shadow: none;
    border: 0;
    border-left: 4px solid transparent;
    border-radius: 0 !important;
    transition: all 0.3s ease;
}
.faq-wrap .accordion-button:not(.collapsed) {
    background: rgba(200,169,106,0.05);
    color: var(--brand-primary);
    border-left-color: var(--brand-accent);
}
.faq-wrap .accordion-button:focus {
    box-shadow: none;
    border-left-color: var(--brand-accent);
    outline: 3px solid rgba(200,169,106,0.25);
    outline-offset: -1px;
    border-radius: 0;
}
.faq-wrap .accordion-button::after {
    background-image: none;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f067";
    font-size: 14px;
    color: var(--brand-accent);
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
    margin-left: auto;
}
.faq-wrap .accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
    background-image: none;
    color: var(--brand-accent);
}
.faq-wrap .accordion-body {
    padding: 0 24px 20px 24px;
    border-left: 4px solid transparent;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.75;
}
.faq-wrap .accordion-button:not(.collapsed) + .accordion-body {
    border-left-color: var(--brand-accent);
}
.faq-wrap .accordion-body p { margin-bottom: 0; }

/* ===== CTA 区块 ===== */
.cta-section { padding: 80px 0; background: var(--bg-warm); }
.cta-card {
    background: var(--brand-dark);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    background-image: linear-gradient(var(--brand-dark), var(--brand-dark)), linear-gradient(135deg, var(--brand-accent), #E8D4A0);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 56px 40px;
    text-align: center;
}
.cta-card h2 {
    color: var(--brand-accent);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}
.cta-card p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto 28px;
}
.btn-cta-gold {
    background: var(--gradient-btn);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 48px;
    border-radius: 999px;
    border: none;
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 200px;
}
.btn-cta-gold:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 10px 30px rgba(200,169,106,0.4);
}
.btn-cta-gold:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(200,169,106,0.2);
}

/* ===== 页脚 ===== */
.footer {
    background: var(--brand-dark);
    padding: 60px 0 0;
    color: rgba(255,255,255,0.8);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-brand .brand-logo {
    width: 36px;
    height: 36px;
    font-size: 18px;
}
.footer-brand span:last-child {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}
.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 340px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: var(--brand-dark);
    transform: translateY(-3px);
}
.footer h5 {
    color: var(--brand-accent);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--brand-accent); }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.6;
}
.footer-contact li i {
    color: var(--brand-accent);
    margin-top: 4px;
    width: 16px;
    text-align: center;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* ===== 焦点 ===== */
a:focus, button:focus, .btn:focus, .accordion-button:focus {
    outline: 3px solid rgba(200,169,106,0.45);
    outline-offset: 2px;
}

/* ===== 响应式 ===== */
@media (max-width: 991.98px) {
    .main-nav .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--brand-dark);
        padding: 70px 28px 28px;
        transition: right 0.3s ease;
        z-index: 1050;
        display: block !important;
        box-shadow: -8px 0 30px rgba(0,0,0,0.3);
    }
    .main-nav .navbar-collapse.show { right: 0; }
    .nav-close-btn { display: block; }
    .main-nav .navbar-nav {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 20px 0;
        margin: 0 !important;
        border-top: 1px solid rgba(255,255,255,0.08);
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .main-nav .nav-link {
        color: rgba(255,255,255,0.85);
        font-size: 18px;
        font-weight: 600;
        padding: 12px 14px !important;
        border-radius: 12px;
        border-left: 3px solid transparent;
    }
    .main-nav .nav-link.active {
        border-left-color: var(--brand-accent);
        background: rgba(200,169,106,0.08);
        color: var(--brand-accent);
    }
    .main-nav .nav-link.active::after { display: none; }
    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding-top: 16px;
    }
    .nav-actions .btn-login, .nav-actions .btn-register {
        text-align: center;
        width: 100%;
    }
    .navbar-toggler { display: inline-block; }

    .quality-grid { grid-template-columns: 1fr; }
    .benefits-wrap { grid-template-columns: 1fr; gap: 24px; }
    .benefits-image { height: 300px; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .category-hero { margin-top: 64px; }
}

@media (max-width: 767.98px) {
    .section-block, .featured-goods, .quality-section, .hot-picks-section,
    .member-benefits-section, .steps-section, .faq-section, .cta-section { padding: 48px 0; }
    .category-hero { min-height: 240px; padding: 70px 16px 40px; margin-top: 60px; }
    .category-hero h1 { font-size: 26px; }
    .category-hero .hero-sub { font-size: 14px; }
    .section-header h2 { font-size: 22px; }

    .goods-item { flex-direction: column; padding: 16px; gap: 16px; text-align: center; }
    .goods-thumb { width: 100%; height: 170px; }
    .goods-info p { -webkit-line-clamp: 2; }
    .goods-meta { justify-content: center; flex-wrap: wrap; }
    .goods-tag { margin-left: 0; }

    .quality-main-card { min-height: 220px; padding: 28px 20px; }
    .quality-main-card h3 { font-size: 22px; }
    .quality-side-card { padding: 18px 16px; }

    .hot-picks-scroll { gap: 12px; }
    .hot-pick-card { width: 220px; }

    .benefits-image { height: 230px; }
    .benefits-content h2 { font-size: 24px; }

    .steps-grid { grid-template-columns: 1fr; gap: 12px; }
    .step-arrow { display: none; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { font-size: 11px; padding: 12px 0; }
    .cta-card { padding: 36px 20px; }
    .cta-card h2 { font-size: 22px; }
    .btn-cta-gold { min-width: 160px; padding: 13px 32px; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

/* roulang page: category3 */
:root {
            --brand-primary: #1A3A2B;
            --brand-accent: #C8A96A;
            --brand-dark: #10251B;
            --bg-warm: #F7F4EF;
            --card-bg: #FFFFFF;
            --text-main: #2B2620;
            --text-muted: #7A7266;
            --border-light: #E8E2D8;
            --radius-lg: 24px;
            --radius-md: 16px;
            --radius-sm: 10px;
            --radius-pill: 999px;
            --shadow-card: 0 4px 20px rgba(26, 58, 43, 0.08);
            --shadow-hover: 0 12px 32px rgba(26, 58, 43, 0.16);
            --gradient-main: linear-gradient(135deg, #1A3A2B 0%, #2D5A43 55%, #C8A96A 140%);
            --gradient-btn: linear-gradient(135deg, #C8A96A, #A98743);
            --gradient-btn-2: linear-gradient(135deg, #1A3A2B, #2D5A43);
            --transition-base: 0.3s ease;
            --transition-img: 0.4s ease;
            --font-main: 'PingFang SC', 'Hiragino Sans GB', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-main);
            background: var(--bg-warm);
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition-base);
        }

        button,
        input {
            font-family: inherit;
        }

        .container-1140 {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== Navigation ===== */
        .main-nav {
            background: rgba(26, 58, 43, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 14px 0;
            transition: background var(--transition-base), box-shadow var(--transition-base);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            z-index: 1050;
        }

        .main-nav.scrolled {
            background: var(--brand-dark);
            box-shadow: 0 4px 24px rgba(16, 37, 27, 0.4);
        }

        .main-nav .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .main-nav .navbar-brand:hover {
            color: var(--brand-accent);
        }

        .brand-logo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 12px;
            background: var(--gradient-btn);
            color: #fff;
            font-weight: 800;
            font-size: 20px;
            line-height: 1;
            box-shadow: 0 2px 8px rgba(200, 169, 106, 0.4);
        }

        .navbar-toggler {
            border: none;
            padding: 0;
            outline: none !important;
        }

        .navbar-toggler-icon-custom {
            display: flex;
            flex-direction: column;
            gap: 5px;
            width: 30px;
            padding: 6px 0;
        }

        .navbar-toggler-icon-custom span {
            display: block;
            height: 2px;
            width: 100%;
            background: #fff;
            border-radius: 4px;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .nav-close-btn {
            display: none;
            position: absolute;
            top: 16px;
            right: 20px;
            background: transparent;
            border: none;
            font-size: 36px;
            line-height: 1;
            color: #fff;
            cursor: pointer;
            z-index: 10;
        }

        .nav-close-btn:hover {
            color: var(--brand-accent);
        }

        .navbar-nav {
            gap: 6px;
        }

        .nav-link {
            font-size: 15px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.85) !important;
            padding: 8px 16px !important;
            border-radius: var(--radius-pill);
            position: relative;
            transition: all var(--transition-base);
        }

        .nav-link:hover {
            color: var(--brand-accent) !important;
            background: rgba(200, 169, 106, 0.1);
        }

        .nav-link.active {
            color: var(--brand-accent) !important;
            font-weight: 600;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 2px;
            background: var(--brand-accent);
            border-radius: 2px;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-login {
            background: var(--gradient-btn);
            color: #fff;
            border: none;
            border-radius: var(--radius-pill);
            padding: 8px 24px;
            font-size: 14px;
            font-weight: 600;
            transition: all var(--transition-base);
        }

        .btn-login:hover {
            filter: brightness(1.05);
            transform: translateY(-2px);
            color: #fff;
            box-shadow: 0 6px 16px rgba(200, 169, 106, 0.4);
        }

        .btn-register {
            background: transparent;
            color: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: var(--radius-pill);
            padding: 8px 24px;
            font-size: 14px;
            font-weight: 500;
            transition: all var(--transition-base);
        }

        .btn-register:hover {
            background: rgba(200, 169, 106, 0.12);
            color: var(--brand-accent);
            border-color: var(--brand-accent);
        }

        .nav-actions .btn:focus {
            outline: 3px solid rgba(200, 169, 106, 0.45);
            outline-offset: 2px;
            box-shadow: none;
        }

        /* ===== Page Banner ===== */
        .page-banner {
            position: relative;
            padding: 120px 0 64px;
            background: linear-gradient(135deg, #1A3A2B 0%, #2D5A43 60%, #C8A96A 140%);
            overflow: hidden;
            min-height: 300px;
            display: flex;
            align-items: center;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.png');
            background-size: cover;
            background-position: center;
            opacity: 0.25;
            mix-blend-mode: overlay;
        }

        .page-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(16, 37, 27, 0.6), rgba(26, 58, 43, 0.2) 60%, rgba(200, 169, 106, 0.15));
        }

        .banner-inner {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .banner-inner .banner-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.14);
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: #fff;
            border-radius: var(--radius-pill);
            padding: 6px 20px;
            font-size: 13px;
            letter-spacing: 0.5px;
            margin-bottom: 18px;
            backdrop-filter: blur(4px);
        }

        .banner-inner h1 {
            font-size: 36px;
            font-weight: 800;
            color: #fff;
            line-height: 1.3;
            margin-bottom: 12px;
            text-shadow: 0 2px 16px rgba(16, 37, 27, 0.3);
        }

        .banner-inner p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            max-width: 540px;
            margin: 0 auto;
        }

        /* ===== Cat Intro ===== */
        .cat-intro {
            padding: 72px 0 60px;
            background: var(--bg-warm);
        }

        .cat-intro .section-heading {
            margin-bottom: 32px;
        }

        .section-heading .section-eyebrow {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--brand-accent);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .section-heading h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.4;
            margin: 0;
        }

        .cat-intro-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 20px;
        }

        .intro-card-large {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            min-height: 300px;
            display: flex;
            align-items: flex-end;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-base);
            border: 1px solid var(--border-light);
        }

        .intro-card-large:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .intro-card-large .intro-bg {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/coverpic/cover-2.webp');
            background-size: cover;
            background-position: center;
            transition: transform var(--transition-img);
        }

        .intro-card-large:hover .intro-bg {
            transform: scale(1.03);
        }

        .intro-card-large .intro-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(16, 37, 27, 0.85) 0%, transparent 70%);
        }

        .intro-card-large .intro-content {
            position: relative;
            z-index: 2;
            padding: 28px;
            color: #fff;
        }

        .intro-card-large .intro-label {
            display: inline-block;
            background: var(--gradient-btn);
            color: #fff;
            border-radius: var(--radius-pill);
            padding: 4px 14px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .intro-card-large h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .intro-card-large p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            max-width: 480px;
        }

        .intro-card-small {
            border-radius: var(--radius-lg);
            overflow: hidden;
            min-height: 145px;
            display: flex;
            align-items: flex-end;
            box-shadow: var(--shadow-card);
            transition: all var(--transition-base);
            border: 1px solid var(--border-light);
        }

        .intro-card-small:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .intro-card-small .intro-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transition: transform var(--transition-img);
        }

        .intro-card-small:hover .intro-bg {
            transform: scale(1.03);
        }

        .intro-card-small .intro-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(16, 37, 27, 0.8) 0%, transparent 60%);
        }

        .intro-card-small .intro-content {
            position: relative;
            z-index: 2;
            padding: 20px;
            color: #fff;
        }

        .intro-card-small .intro-label {
            display: inline-block;
            background: rgba(255, 255, 255, 0.18);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-pill);
            padding: 3px 12px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .intro-card-small h3 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .intro-card-small p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
        }

        .intro-card-small.col-1 {
            position: relative;
            background-image: url('/assets/images/coverpic/cover-3.webp');
            background-size: cover;
            background-position: center;
        }

        .intro-card-small.col-2 {
            position: relative;
            background-image: url('/assets/images/coverpic/cover-4.webp');
            background-size: cover;
            background-position: center;
        }

        /* ===== Content List ===== */
        .cat-list-section {
            padding: 60px 0 72px;
            background: var(--bg-warm);
        }

        .cat-list-section .section-heading {
            margin-bottom: 32px;
        }

        .cat-list-grid {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .cat-list-item {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            padding: 16px;
            display: flex;
            gap: 20px;
            align-items: center;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-card);
            transition: all var(--transition-base);
        }

        .cat-list-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }

        .cat-list-thumb {
            width: 120px;
            height: 90px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-warm);
        }

        .cat-list-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-img);
        }

        .cat-list-item:hover .cat-list-thumb img {
            transform: scale(1.04);
        }

        .cat-list-body {
            flex: 1;
            min-width: 0;
        }

        .cat-list-body h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .cat-list-body p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .cat-list-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .cat-list-meta .date {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .cat-list-meta .view-detail {
            color: var(--brand-primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: all var(--transition-base);
        }

        .cat-list-meta .view-detail:hover {
            color: var(--brand-accent);
        }

        /* ===== Timeline ===== */
        .timeline-section {
            padding: 72px 0;
            background: var(--brand-dark);
            position: relative;
            overflow: hidden;
        }

        .timeline-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 260px;
            height: 260px;
            background: radial-gradient(circle, rgba(200, 169, 106, 0.14) 0%, transparent 70%);
            border-radius: 50%;
        }

        .timeline-section .section-heading h2 {
            color: #fff;
        }

        .timeline-section .section-heading .section-eyebrow {
            color: var(--brand-accent);
        }

        .timeline-wrapper {
            position: relative;
            max-width: 800px;
            margin: 36px auto 0;
            padding-left: 32px;
        }

        .timeline-wrapper::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--brand-accent), rgba(200, 169, 106, 0.1));
            border-radius: 3px;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 28px;
            padding: 20px 24px;
            background: rgba(255, 255, 255, 0.06);
            border-radius: var(--radius-md);
            border-left: 3px solid var(--brand-accent);
            transition: all var(--transition-base);
            backdrop-filter: blur(4px);
        }

        .timeline-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(4px);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -29px;
            top: 24px;
            width: 11px;
            height: 11px;
            border-radius: 50%;
            background: var(--brand-accent);
            box-shadow: 0 0 0 4px rgba(200, 169, 106, 0.2);
        }

        .timeline-item .timeline-date {
            font-size: 13px;
            color: var(--brand-accent);
            font-weight: 600;
            margin-bottom: 4px;
        }

        .timeline-item h3 {
            font-size: 18px;
            color: #fff;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .timeline-item p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding: 72px 0;
            background: var(--card-bg);
        }

        .faq-section .section-heading {
            margin-bottom: 36px;
        }

        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            border: 1px solid var(--border-light) !important;
            border-radius: var(--radius-md) !important;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: none !important;
            background: var(--card-bg);
        }

        .accordion-button {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            background: var(--card-bg);
            padding: 18px 20px;
            border-radius: var(--radius-md) !important;
            position: relative;
            transition: all var(--transition-base);
        }

        .accordion-button:not(.collapsed) {
            color: var(--brand-primary);
            background: var(--bg-warm);
            box-shadow: none;
            border-left: 4px solid var(--brand-accent);
            border-radius: var(--radius-md) var(--radius-md) 0 0 !important;
        }

        .accordion-button:focus {
            box-shadow: none;
            outline: 3px solid rgba(200, 169, 106, 0.45);
            outline-offset: -1px;
        }

        .accordion-button::after {
            display: none;
        }

        .accordion-button .faq-icon {
            margin-left: auto;
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--brand-accent);
            transition: transform var(--transition-base);
        }

        .accordion-button:not(.collapsed) .faq-icon {
            transform: rotate(45deg);
        }

        .accordion-body {
            font-size: 15px;
            line-height: 1.75;
            color: var(--text-muted);
            padding: 16px 20px 20px;
            background: var(--bg-warm);
            border-radius: 0 0 var(--radius-md) var(--radius-md);
        }

        /* ===== CTA ===== */
        .cta-section {
            padding: 72px 0;
            background: var(--bg-warm);
        }

        .cta-card {
            background: var(--brand-dark);
            border-radius: var(--radius-lg);
            padding: 56px 32px;
            text-align: center;
            border: 2px solid transparent;
            background-image: linear-gradient(var(--brand-dark), var(--brand-dark)), var(--gradient-btn);
            background-origin: border-box;
            background-clip: padding-box, border-box;
            box-shadow: 0 12px 40px rgba(16, 37, 27, 0.35);
            position: relative;
            overflow: hidden;
        }

        .cta-card::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -80px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(200, 169, 106, 0.12);
        }

        .cta-card h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--brand-accent);
            margin-bottom: 12px;
        }

        .cta-card p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 520px;
            margin: 0 auto 28px;
        }

        .btn-cta-big {
            display: inline-block;
            background: var(--gradient-btn);
            color: #fff;
            border: none;
            border-radius: var(--radius-pill);
            padding: 16px 56px;
            font-size: 16px;
            font-weight: 700;
            min-width: 200px;
            height: 56px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-base);
        }

        .btn-cta-big:hover {
            filter: brightness(1.05);
            transform: translateY(-2px);
            color: #fff;
            box-shadow: 0 8px 24px rgba(200, 169, 106, 0.4);
        }

        .btn-cta-big:focus {
            outline: 3px solid rgba(200, 169, 106, 0.45);
            outline-offset: 2px;
        }

        /* ===== Footer ===== */
        .footer {
            background: var(--brand-dark);
            padding: 48px 0 24px;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-brand-col .footer-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 12px;
        }

        .footer-desc {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            margin-bottom: 16px;
            max-width: 300px;
        }

        .footer-social {
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            transition: all var(--transition-base);
        }

        .footer-social a:hover {
            background: var(--brand-accent);
            color: var(--brand-dark);
        }

        .footer h5 {
            font-size: 15px;
            color: var(--brand-accent);
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            transition: color var(--transition-base);
        }

        .footer-links a:hover {
            color: var(--brand-accent);
        }

        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 12px;
            line-height: 1.5;
        }

        .footer-contact li i {
            color: var(--brand-accent);
            margin-top: 4px;
            flex-shrink: 0;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 16px;
            text-align: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }

        /* ===== Focus states ===== */
        a:focus-visible,
        button:focus-visible {
            outline: 3px solid rgba(200, 169, 106, 0.45);
            outline-offset: 2px;
        }

        .navbar-nav .nav-link:focus-visible {
            outline: 3px solid rgba(200, 169, 106, 0.45);
            outline-offset: -2px;
        }

        /* ===== Responsive ===== */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                position: fixed;
                top: 0;
                right: 0;
                bottom: 0;
                width: 320px;
                background: var(--brand-dark);
                padding: 72px 24px 24px;
                box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
                transform: translateX(100%);
                transition: transform var(--transition-base);
                z-index: 1060;
                overflow-y: auto;
            }

            .navbar-collapse.show {
                transform: translateX(0);
            }

            .nav-close-btn {
                display: block;
            }

            .navbar-nav {
                gap: 8px;
                margin-bottom: 24px;
            }

            .nav-link {
                font-size: 16px;
                padding: 12px 16px !important;
                border-radius: var(--radius-sm);
                color: rgba(255, 255, 255, 0.9) !important;
            }

            .nav-link.active {
                color: var(--brand-accent) !important;
                background: rgba(200, 169, 106, 0.08);
            }

            .nav-link.active::after {
                left: 0;
                right: auto;
                top: 0;
                bottom: 0;
                width: 3px;
                height: 100%;
            }

            .nav-actions {
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }

            .nav-actions .btn {
                text-align: center;
            }

            .cat-intro-grid {
                grid-template-columns: 1fr;
            }

            .intro-card-large {
                min-height: 260px;
            }

            .intro-card-small {
                position: relative;
                background-size: cover;
            }

            .intro-card-small .intro-bg {
                display: none;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 767.98px) {
            .container-1140 {
                padding: 0 20px;
            }

            .page-banner {
                padding: 100px 0 48px;
                min-height: 240px;
            }

            .banner-inner h1 {
                font-size: 28px;
            }

            .banner-inner p {
                font-size: 14px;
            }

            .cat-intro {
                padding: 48px 0 40px;
            }

            .cat-intro-grid {
                gap: 14px;
            }

            .intro-card-large {
                min-height: 220px;
            }

            .intro-card-large .intro-content {
                padding: 20px;
            }

            .intro-card-large h3 {
                font-size: 18px;
            }

            .intro-card-small {
                min-height: 160px;
            }

            .cat-list-section {
                padding: 40px 0 48px;
            }

            .cat-list-item {
                flex-direction: row;
                padding: 12px;
                gap: 12px;
            }

            .cat-list-thumb {
                width: 88px;
                height: 72px;
            }

            .cat-list-body h3 {
                font-size: 15px;
                white-space: normal;
                -webkit-line-clamp: 2;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .cat-list-body p {
                display: none;
            }

            .cat-list-meta {
                font-size: 12px;
                gap: 10px;
            }

            .timeline-section {
                padding: 48px 0;
            }

            .timeline-wrapper {
                padding-left: 20px;
            }

            .timeline-wrapper::before {
                left: 6px;
            }

            .timeline-item {
                padding: 16px;
            }

            .timeline-item::before {
                left: -19px;
            }

            .timeline-item h3 {
                font-size: 16px;
            }

            .faq-section {
                padding: 48px 0;
            }

            .accordion-button {
                font-size: 15px;
                padding: 14px 14px 14px 16px;
            }

            .cta-section {
                padding: 48px 0;
            }

            .cta-card {
                padding: 36px 20px;
            }

            .cta-card h2 {
                font-size: 24px;
            }

            .btn-cta-big {
                width: 100%;
                max-width: 240px;
                padding: 14px 32px;
                height: 52px;
                font-size: 15px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .footer-bottom {
                font-size: 11px;
            }
        }

        @media (max-width: 575.98px) {
            .banner-inner h1 {
                font-size: 24px;
            }

            .banner-inner .banner-tag {
                font-size: 12px;
                padding: 4px 14px;
            }

            .cat-list-meta .view-detail {
                display: none;
            }

            .intro-card-small p {
                display: -webkit-box;
                -webkit-line-clamp: 1;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }
        }
