:root {
    /* Color Palette */
    --bg-color: #0d0b0a;
    --bg-darker: #080706;
    --bg-card: #151210;
    --text-main: #f0e6d2;
    --text-muted: #b5a999;
    --gold: #d4af37;
    --gold-light: #f5d76e;
    --gold-gradient: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #8c7322 100%);
    --border-color: rgba(212, 175, 55, 0.2);
    --border-light: rgba(212, 175, 55, 0.15);
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Spacing & Sizes */
    --nav-height: 80px;
    --container-max: 1280px;
    --radius-sm: 4px;
    --radius-md: 8px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Classes */
.uppercase { text-transform: uppercase; letter-spacing: 0.15em; }
.tracking-wide { letter-spacing: 0.35em; }
.italic { font-style: italic; }
.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}
.gold-line {
    display: inline-block;
    height: 1px;
    width: 40px;
    background: var(--gold-gradient);
}
.gold-line.small {
    width: 32px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.section-desc {
    color: var(--text-muted);
    max-width: 600px;
}
.section-desc.center {
    margin-left: auto;
    margin-right: auto;
}

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}
.section-padding {
    padding: 100px 0;
}
@media (min-width: 768px) {
    .section-padding { padding: 140px 0; }
}
.bg-darker {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 100;
    transition: var(--transition-medium);
    border-bottom: 1px solid transparent;
}
.header.scrolled {
    background: rgba(13, 11, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logo img {
    height: 40px;
    width: auto;
}
.desktop-nav {
    display: none;
    gap: 40px;
}
@media (min-width: 768px) {
    .desktop-nav { display: flex; }
    .mobile-menu-btn { display: none; }
}
.nav-link {
    color: rgba(252, 249, 242, 0.8);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: var(--transition-fast);
}
.nav-link:hover {
    color: var(--gold-primary);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.icon-btn {
    background: none;
    border: none;
    color: rgba(252, 249, 242, 0.8);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-btn:hover {
    color: var(--gold-primary);
}
.cart-btn {
    position: relative;
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold-gradient);
    color: var(--bg-darker);
    font-size: 10px;
    font-weight: 600;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Nav */
.mobile-nav {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(13, 11, 10, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.active {
    max-height: 300px;
}
.mobile-link {
    color: rgba(252, 249, 242, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}
.mobile-link:last-child {
    border-bottom: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 16px 32px;
    border-radius: 0;
    transition: var(--transition-medium);
    cursor: pointer;
    border: 1px solid transparent;
}
.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-darker);
}
.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
.link-secondary {
    color: rgba(252, 249, 242, 0.8);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    transition: var(--transition-fast);
    position: relative;
}
.link-secondary::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--gold-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}
.link-secondary:hover {
    color: var(--gold-primary);
}
.link-secondary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05); /* Base scale */
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    /* Lightened the overlay so the photo is not too dark */
    background: linear-gradient(180deg, transparent 40%, rgba(13, 11, 10, 0.9) 100%),
                radial-gradient(circle at center, transparent 30%, rgba(13, 11, 10, 0.4) 100%);
}
.hero-content {
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}
.hero-text-card {
    max-width: 550px;
    padding: 40px;
    background: rgba(13, 11, 10, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}
.hero-text-card .subtitle {
    transform: translateZ(20px);
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.05;
    margin: 16px 0 32px;
    letter-spacing: -0.02em;
    transform: translateZ(40px);
    text-shadow: 
        1px 1px 0px rgba(0, 0, 0, 0.3),
        2px 2px 0px rgba(0, 0, 0, 0.2),
        3px 3px 0px rgba(0, 0, 0, 0.15),
        4px 4px 0px rgba(0, 0, 0, 0.1),
        5px 5px 8px rgba(0, 0, 0, 0.5);
}
.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-main);
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    transform: translateZ(30px);
}
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    transform: translateZ(50px);
}
.hero-features {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px 48px;
    font-size: 0.875rem;
    color: var(--text-main);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    transform: translateZ(20px);
}
.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-primary);
}

/* Categories Section */
.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .category-grid { grid-template-columns: repeat(3, 1fr); }
}
.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    text-decoration: none;
    color: var(--text-light);
    transform-style: preserve-3d;
    transform: perspective(1000px);
}
.category-img-wrapper {
    position: absolute;
    inset: 0;
    transition: transform 0.6s var(--easing);
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--easing);
}
.category-card:hover .category-img-wrapper {
    transform: scale(1.05);
}
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13,11,10,0.9) 0%, rgba(13,11,10,0.2) 60%, transparent 100%);
}
.category-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    transform: translateZ(30px);
}
.category-info h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-main);
    font-weight: 400;
}
.category-info .desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.category-info .price-start {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-primary);
    margin-top: 12px;
    font-weight: 500;
}
.category-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: var(--transition-medium);
}
.category-card:hover .category-icon {
    background: var(--gold-gradient);
    color: var(--bg-darker);
    border-color: transparent;
}

/* Collection Section */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.filter-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: rgba(252, 249, 242, 0.7);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-medium);
}
.filter-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}
.filter-btn.active {
    background: var(--gold-gradient);
    color: var(--bg-darker);
    border-color: transparent;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
}
@media (min-width: 1024px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: fadeIn 0.6s ease forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.product-img-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 8px;
    background-color: var(--bg-darker);
    overflow: hidden;
}
.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}
.product-card:hover .product-img-wrapper img {
    transform: scale(1.05);
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold-gradient);
    color: var(--bg-darker);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 4px 10px;
    z-index: 2;
}
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(13, 11, 10, 0.7);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-light);
    color: rgba(252, 249, 242, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 2;
}
.wishlist-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}
.add-to-cart-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gold-gradient);
    color: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transform: translateY(100%);
    transition: var(--transition-medium);
    cursor: pointer;
    border: none;
    z-index: 2;
}
.product-card:hover .add-to-cart-overlay {
    transform: translateY(0);
}
.product-info {
    margin-top: 16px;
}
.product-category {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold-primary);
}
.product-title {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    margin-top: 4px;
    line-height: 1.3;
}
.product-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-price {
    margin-top: 12px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.price-current {
    font-size: 1rem;
    font-weight: 500;
}
.price-old {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}
@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}
.about-images {
    position: relative;
}
.about-img-main {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    overflow: hidden;
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-secondary {
    display: none;
    position: absolute;
    bottom: -24px;
    right: -16px;
    width: 176px;
    aspect-ratio: 1/1;
    border-radius: var(--radius-sm);
    border: 4px solid var(--bg-color);
    overflow: hidden;
    z-index: 10;
}
@media (min-width: 640px) {
    .about-img-secondary { display: block; }
}
@media (min-width: 1024px) {
    .about-img-secondary { right: -32px; width: 224px; }
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.floating {
    animation: floating 6s ease-in-out infinite;
}
@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.about-text {
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
}
.stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.15em;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    background-color: var(--border-light); /* Acts as border for items */
}
@media (min-width: 640px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(4, 1fr); }
}
.feature-item {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    transform-style: preserve-3d;
    transform: perspective(1000px);
}
.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateZ(20px);
}
.feature-item h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    transform: translateZ(10px);
}
.feature-item p {
    color: var(--text-main);
    font-size: 0.875rem;
    transform: translateZ(5px);
}

/* Newsletter */
.newsletter-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 64px 24px;
    text-align: center;
    overflow: hidden;
}
@media (min-width: 768px) {
    .newsletter-card { padding: 80px 64px; }
}
.gold-top-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0.5;
}
.newsletter-card .section-title {
    max-width: 700px;
    margin: 16px auto 0;
}
.newsletter-form {
    max-width: 440px;
    margin: 32px auto 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
@media (min-width: 640px) {
    .newsletter-form { flex-direction: row; }
}
.newsletter-form input {
    flex: 1;
    background: var(--bg-color);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    outline: none;
    transition: var(--transition-fast);
}
.newsletter-form input:focus {
    border-color: var(--gold-primary);
}
.disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-light);
    padding: 64px 0 0;
}
@media (min-width: 768px) {
    .footer { padding: 80px 0 0; }
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-logo {
    height: 44px;
}
.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-muted);
    max-width: 300px;
}
.social-links {
    display: flex;
    gap: 12px;
}
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(252, 249, 242, 0.7);
    transition: var(--transition-fast);
}
.social-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}
.footer-links h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 20px;
}
.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links li, .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-fast);
}
.footer-links a:hover {
    color: var(--gold-primary);
}
.footer-links svg {
    color: var(--gold-primary);
}
.footer-bottom {
    border-top: 1px solid var(--border-light);
    margin-top: 64px;
    padding: 32px 0;
    text-align: center;
}
.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



