:root {
    /* Color Palette */
    --color-bg-dark: #0a0a0a;
    --color-bg-card: #141414;
    --color-text-main: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-gold-primary: #d4af37;
    --color-gold-hover: #f1c40f;
    --color-gold-dim: #8a7018;
    --color-white: #ffffff;
    --color-border: #333333;

    /* Typography */
    --font-heading: 'Cinzel', serif;
    /* Elegant serif for headings */
    --font-body: 'Lato', 'Noto Serif SC', sans-serif;
    /* Clean sans-serif for body */

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold-primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gold-primary);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    opacity: 1;
}

/* Typography Utilities */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.section {
    padding: var(--spacing-xl) 0;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid transparent;
    border-radius: 0;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--color-gold-primary);
    color: var(--color-bg-dark);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* 脉冲动画 - 用于吸引用户点击 */
.pulse-animate {
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(212, 175, 55, 0.3);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.btn-outline {
    border-color: var(--color-gold-primary);
    color: var(--color-gold-primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--color-gold-primary);
    color: var(--color-bg-dark);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-400 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-gold-primary) 50%, var(--color-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    transition: var(--transition-fast);
    background: rgba(10, 10, 10, 0);
    /* Transparent initially */
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    padding: var(--spacing-xs) 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-white);
}

.logo .accent {
    color: var(--color-gold-primary);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-links li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-gold-primary);
    transition: var(--transition-fast);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.nav-icons a {
    font-size: 1.2rem;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--color-gold-primary);
    color: var(--color-bg-dark);
    font-size: 0.6rem;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--color-bg-dark);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* 移动端/微信浏览器兼容 */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

/* 视频播放按钮覆盖层 */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
}

.play-button-wrapper {
    text-align: center;
    color: white;
}

.play-button {
    width: 100px;
    height: 100px;
    border: 3px solid var(--color-gold-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--color-gold-primary);
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--color-gold-primary);
    color: var(--color-bg-dark);
}

.play-button i {
    margin-left: 5px;
    /* 视觉上居中播放图标 */
}

.play-button-wrapper p {
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 300;
}

/* Cookie 授权全屏遮罩 */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cookie-modal {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.1);
}

.cookie-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-hover));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--color-bg-dark);
}

.cookie-modal h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 15px;
}

.cookie-modal>p {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.cookie-accept-btn {
    background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-hover));
    color: var(--color-bg-dark);
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: pulse 2s ease-in-out infinite;
}

.cookie-accept-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.cookie-note {
    color: #666;
    font-size: 12px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .cookie-modal {
        padding: 30px 20px;
    }

    .cookie-modal h2 {
        font-size: 1.2rem;
    }

    .cookie-accept-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* Placeholder for when user replaces the image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--spacing-sm);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    opacity: 0.8;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

/* Collections / Products */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-gold-primary);
}

.section-desc {
    color: var(--color-text-muted);
    font-family: var(--font-heading);
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-gold-primary);
    margin: var(--spacing-sm) auto;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 8px 24px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--color-gold-primary);
    color: var(--color-gold-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

/* Product Card Styling */
.product-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: var(--spacing-sm);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    group: hover;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold-dim);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    /* Square images */
    background-color: #222;
    /* Placeholder bg */
    margin-bottom: var(--spacing-sm);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.1);
}

.product-details {
    text-align: center;
}

.product-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--color-white);
}

.product-price {
    font-weight: 700;
    color: var(--color-gold-primary);
    font-size: 1.1rem;
}

.add-to-cart {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-gold-primary);
    color: var(--color-bg-dark);
    padding: 10px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-card:hover .add-to-cart {
    transform: translateY(0);
}

/* About Section */
.about {
    background-color: #0d0d0d;
}

.about-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.about-text {
    flex: 1;
}

.about-subtitle {
    margin-bottom: var(--spacing-sm);
    color: var(--color-gold-primary);
    font-size: 1.5rem;
}

.about-text p {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-muted);
}

.about-image {
    flex: 1;
}

.img-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-gold-dim);
    font-size: 3rem;
    border: 1px solid var(--color-border);
}

/* Newsletter */
.newsletter {
    background-color: var(--color-gold-dim);
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1573408301185-9146fe634ad0?q=80&w=2075&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--color-white);
}

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.newsletter p {
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Footer */
.footer {
    background-color: #050505;
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    display: block;
    margin-bottom: var(--spacing-sm);
}

.footer-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    max-width: 300px;
    margin-bottom: var(--spacing-md);
}

.social-links a {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-right: var(--spacing-sm);
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: var(--color-gold-primary);
}

.footer-col h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a,
.footer-col ul li {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-col ul li i {
    width: 20px;
    color: var(--color-gold-primary);
}

.footer-col ul li a:hover {
    color: var(--color-gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid #1a1a1a;
    color: #555;
    font-size: 0.8rem;
}

/* Response Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .navbar .nav-links,
    .navbar .nav-icons {
        display: none;
        /* Simplification for mobile MVP, normally would add hamburger menu logic */
    }

    .hamburger {
        display: block;
        color: var(--color-white);
        font-size: 1.5rem;
    }

    .about-content {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .filter-buttons {
        gap: 5px;
    }

    .filter-btn {
        padding: 6px 16px;
        font-size: 0.85rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}