:root {
    --color-white: #FFFFFF;
    --color-porcelain: #FAFAFA;
    --color-beige: #F2EFE9;
    --color-gold: #C5A059;
    --color-gold-light: #E6CFA1;
    --color-text-main: #2C2C2C;
    --color-text-light: #666666;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'EB Garamond', serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-white);
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-weight: 400;
    /* EB Garamond is delicate naturally */
    font-size: 1.05rem;
    /* Serif bodies need slightly more size */
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    /* Standardize weight */
    font-style: normal;
    /* Match logo */
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--color-text-main);
    font-family: var(--font-body);
    /* Buttons back to body font for cleaner look, or stick to Heading? Tenor Sans is great for buttons. */
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
}

.btn:hover {
    background-color: var(--color-text-main);
    color: var(--color-white);
}

/* Header */
header {
    position: fixed;
    top: 36px;
    /* Moved down for ticker */
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    /* Changed from all to transform for performance */
}

header.header-hidden {
    transform: translateY(-136px);
    /* Hide completely (100px height + 36px top) */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle separation */
}

/* 3-Column Layout */
.nav-left,
.nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
    gap: var(--spacing-md);
}

.nav-right {
    justify-content: flex-end;
}

.logo {
    flex: 0 0 auto;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-align: center;
}

/* Sidebar & Menu Button */
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-main);
    padding: 0;
    display: flex;
    align-items: center;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-menu {
    position: fixed;
    top: 0;
    left: -350px;
    /* Start off-screen */
    width: 350px;
    height: 100%;
    background: #FFFFFF;
    z-index: 999;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: var(--spacing-lg);
}

.sidebar-menu.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: var(--spacing-xl);
}

.close-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-main);
    padding: 0;
}

.sidebar-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.sidebar-links a {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--color-text-main);
    letter-spacing: 0.1em;
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: color 0.3s ease;
}

.sidebar-links a:hover {
    color: var(--color-gold);
}

/* Sidebar Nested Menu */
.sidebar-menu-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--spacing-xs);
    cursor: pointer;
}

.menu-item-header a {
    border-bottom: none !important;
    /* Remove individual border */
    padding-bottom: 0 !important;
    flex-grow: 1;
}

.submenu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-main);
    padding: 0 10px;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submenu-toggle.active {
    transform: rotate(180deg);
}

.sidebar-submenu {
    display: none;
    flex-direction: column;
    padding-left: var(--spacing-md);
    padding-top: var(--spacing-xs);
    gap: var(--spacing-xs);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-submenu.active {
    display: flex;
    opacity: 1;
}

.sidebar-submenu a {
    font-size: 1rem !important;
    text-transform: capitalize !important;
    border-bottom: none !important;
    padding: 5px 0;
    color: var(--color-text-light) !important;
}

.sidebar-submenu a:hover {
    color: var(--color-gold) !important;
}

/* 3rd Level Nested */
.sidebar-submenu .sidebar-submenu {
    padding-left: var(--spacing-sm);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}


/* Right Side Utilities */
.search-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search-input {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-main);
    width: 100px;
    /* Compact width */
    outline: none;
}

.header-search-input::placeholder {
    color: #999;
}

.header-icons {
    display: flex;
    gap: 25px;
    /* Fixed balanced gap */
    align-items: center;
}

.header-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-main);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.2s ease;
}



.header-icon-btn:hover {
    opacity: 0.7;
}

/* Sections General */
section {
    padding: var(--spacing-xl) 0;
}

/* Hero */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    /* Remove header offset for full immersion */
    background-color: var(--color-porcelain);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    /* Changed from top center to fix 'half visible' issue on wide images */
    opacity: 0;
    transition: opacity 2s ease-in-out;
    /* Slow luxury fade */
    transform: none;
    /* No zoom */
}

.slide.active {
    opacity: 1;
    transform: none;
    /* No zoom */
    transition: opacity 2s ease-in-out;
    /* Only fade */
}

/* Overlay for text readability if needed, though high-key image should be fine */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    /* Very subtle overlay */
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--spacing-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    -webkit-user-select: none;
    /* Safari */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* IE10+/Edge */
    user-select: none;
    /* Standard */
}

.hero-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-text-main);
    margin-bottom: var(--spacing-sm);
}

.hero h1 {
    font-size: 6.5rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    margin-bottom: var(--spacing-md);
    color: #000000;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
    letter-spacing: -0.01em;
}



/* Ghost Button */
.btn-ghost {
    display: inline-block;
    padding: 1rem 3rem;
    border: 1px solid var(--color-text-main);
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    transition: all 0.4s ease;
    cursor: pointer;
    background: transparent;
    color: var(--color-text-main);
}

.btn-ghost:hover {
    background-color: var(--color-text-main);
    color: var(--color-white);
}

/* Removed old .hero styling blocks */

/* Featured */
.featured {
    background-color: var(--color-white);
    padding: var(--spacing-xl) 0;
    /* More vertical breathing room */
}

/* Re-using global section-header, just ensuring spacing */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns */
    gap: var(--spacing-xl);
    /* Ample whitespace */
    align-items: stretch;
    /* Equal height cards */
}

.product-card {
    background-color: transparent;
    /* No background fill */
    padding: 0;
    /* Removing padding to let image float freely */
    text-align: center;
    /* Clickable removed */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    /* Stack elements vertically */
}

.product-card:hover {
    transform: translateY(-10px);
    /* Clean lift */
}

.product-img {
    width: 100%;
    height: 500px;
    /* Taller, more gallery-like aspect ratio */
    object-fit: cover;
    /* Or contain if images are PNGs with transpareny, but these are generated styles */
    margin-bottom: var(--spacing-md);
    background-color: var(--color-porcelain);
    /* Subtle backing for the image area itself if needed, or keeping it clean */
    /* To make it truly floating on white, we can remove background-color if images matched perfectly, 
       but keeping a very subtle tone might define the image space. 
       User said "floating on a plain background". Let's try transparent if images are good, 
       or very light grey if they are photos. 
       Given generated images have backgrounds, standardizing image container is safer. */
    background-color: transparent;
    display: block;
}

.product-info {
    font-family: var(--font-body);
    /* Sans-Serif */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* Take remaining space */
    justify-content: flex-end;
    /* Push content to bottom */
}

.product-info h3 {
    font-family: var(--font-body);
    /* Sans-Serif */
    font-size: 0.9rem;
    /* Small */
    text-transform: uppercase;
    /* Clean/Modern */
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xs);
    font-weight: 400;
    color: var(--color-text-main);
    min-height: 2.4em;
    /* Reserve space for 2 lines */
}

.product-price {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text-light);
    /* Muted */
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-sm);
}

/* Story Section */
.story {
    background-color: var(--color-beige);
    padding: 0;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.story-content h2 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.story-content p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    max-width: 500px;
}

/* Craftsmanship Section */
.craftsmanship {
    background-color: var(--color-porcelain);
    /* Slightly different tone or white */
    padding: 0;
}

/* ZOOM STYLES */
.product-gallery {
    position: relative;
    overflow: hidden;
    cursor: crosshair;
    /* Show zoom availability */
}

.product-gallery img {
    /* Existing styles from previous context if any, but ensure these: */
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* or cover depending on design */
    display: block;
    transform-origin: center center;
    transition: transform 0.1s ease-out;
    /* Smooth follow */
}


/* Reusing .story-container logic but with a specific class for potential tweaks */
.craftsmanship-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

/* Ensure image stays full height */
.craftsmanship-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craftsmanship-content {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-white);
    /* Contrast with image */
}

.craftsmanship-content h2 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

.craftsmanship-content p {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    max-width: 500px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #F5F5F5;
    /* Soft beige request */
    color: var(--color-text-main);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    font-family: var(--font-body);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-column h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-main);
}

.footer-column .logo {
    text-align: left;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    font-size: 0.85rem;
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--color-gold);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.newsletter-form input[type="email"] {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--color-text-light);
    padding: 0.5rem 0;
    width: 300px;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    color: var(--color-text-main);
}

.newsletter-form input[type="email"]::placeholder {
    color: #999;
}

.newsletter-form button {
    background: transparent;
    border: none;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    padding: 0;
    color: var(--color-text-main);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid #E0E0E0;
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--color-text-main);
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
}

.copyright {
    font-size: 0.75rem;
    color: var(--color-text-light);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}



@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    /* Fixed width to prevent exploding */
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    margin-top: 5px;
}

/* On mobile, full width */
@media (max-width: 768px) {
    .search-results-dropdown {
        width: 100%;
        min-width: 200px;
    }
}

.search-results-dropdown.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: background-color 0.2s ease;
    background: #fff;
    /* Ensure opacity */
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: var(--color-bg-alt);
}

.search-result-thumb {
    width: 50px;
    /* Enforce small size */
    height: 50px;
    /* Enforce small size */
    object-fit: cover;
    border-radius: 2px;
    margin-right: 15px;
    flex-shrink: 0;
}

.search-result-info {
    flex: 1;
    overflow: hidden;
}

.search-result-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--color-text-main);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-price {
    display: block;
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 500;
}

.search-no-results {
    padding: 15px;
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
    background: #fff;
}

/* Search Highlight Animation */
/* Search Highlight Animation */
@keyframes highlight-pulse {
    0% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: scale(1);
    }
}

.product-card.search-highlight {
    animation: highlight-pulse 1.5s ease-in-out infinite;
    z-index: 10;
    /* No border color as requested */
}

/* =========================================
   Cart Functionality Styles
   ========================================= */

/* Cart Icon Badge */
.header-icon-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--color-gold);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-body);
}

/* Add to Cart Button */
/* Add to Cart Button */
.add-to-cart-btn {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 12px 0;
    background-color: transparent;
    border: 1px solid var(--color-text-main);
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.add-to-cart-btn:hover {
    background-color: var(--color-text-main);
    color: white;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    /* Hidden */
    width: 350px;
    height: 100%;
    background-color: var(--color-white);
    z-index: 2000;
    transition: right 0.4s ease;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
}

.cart-sidebar.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Header */
.cart-sidebar .sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    /* Reset */
}

.cart-sidebar h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.close-cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-main);
}

/* Cart Items List */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 0;
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-text-main);
    display: block;
    margin-bottom: 4px;
}

.cart-item-price {
    color: var(--color-gold);
    font-size: 0.9rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 5px;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: #cc0000;
}

/* Cart Footer */
.cart-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-text-main);
    color: white;
    border: 1px solid var(--color-text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.checkout-btn:hover {
    background-color: transparent;
    color: var(--color-text-main);
}

.empty-cart-msg {
    text-align: center;
    color: var(--color-text-light);
    margin-top: 2rem;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .cart-sidebar {
        width: 90%;
        right: -90%;
    }
}

/* =========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ========================================= */

/* Tablet (768px and below) */
@media (max-width: 768px) {

    /* Header */
    nav {
        height: 70px;
        padding: 0 10px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .header-search-input {
        width: 50px;
        font-size: 0.7rem;
    }

    .header-icons {
        gap: 15px;
    }

    .sidebar-menu {
        width: 280px;
        left: -280px;
        padding: var(--spacing-md);
    }

    /* Hero Section */
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
    }

    .btn-ghost {
        padding: 0.8rem 2rem;
        font-size: 0.8rem;
    }

    /* Product Grid - 2 columns on tablet */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .product-card {
        width: 100%;
    }

    .product-img {
        height: 220px;
        object-fit: cover;
    }

    .product-info h3 {
        font-size: 0.75rem;
    }

    .product-price {
        font-size: 0.7rem;
    }

    .add-to-cart-btn {
        font-size: 0.65rem;
        padding: 8px 0;
    }

    /* Page Header - Reduced padding on mobile */
    .page-header {
        padding-top: 70px !important;
        padding-bottom: 15px !important;
        margin-top: 0 !important;
    }

    .page-header h1 {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem;
    }

    .page-header p {
        font-size: 0.8rem !important;
        margin-top: 0.5rem !important;
    }

    /* Collection sections - less padding */
    .collection-section {
        padding-top: 1rem !important;
    }

    /* Story / Craftsmanship Sections */
    .story-container,
    .craftsmanship-container {
        grid-template-columns: 1fr;
    }

    .story-content,
    .craftsmanship-content {
        padding: var(--spacing-md);
    }

    .story-content h2,
    .craftsmanship-content h2 {
        font-size: 2.5rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }

    /* Sections */
    section {
        padding: var(--spacing-lg) 0;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {

    /* Container padding */
    .container {
        padding: 0 15px;
    }

    /* Header */
    nav {
        height: 60px;
    }

    .logo {
        font-size: 1.3rem;
        letter-spacing: 0.05em;
    }

    .nav-left {
        gap: 10px;
    }

    .search-container {
        display: flex;
        /* Show search on mobile */
    }

    .header-icons {
        gap: 12px;
    }

    /* Newsletter left alignment on mobile */
    .footer-column:last-child {
        margin-left: 0 !important;
        text-align: left;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.65rem;
    }

    .btn-ghost {
        padding: 0.7rem 1.5rem;
        font-size: 0.75rem;
    }

    /* Page Header - Even smaller on phones */
    .page-header {
        padding-top: 60px !important;
        padding-bottom: 10px !important;
    }

    .page-header h1 {
        font-size: 1.5rem !important;
    }

    .page-header p {
        font-size: 0.75rem !important;
    }

    /* Product Grid - 2 columns on mobile */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 10px;
    }

    .product-img {
        height: 180px;
        object-fit: cover;
    }

    .product-card {
        margin-bottom: var(--spacing-sm);
    }

    .product-info h3 {
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 0.85rem;
    }

    .add-to-cart-btn {
        font-size: 0.8rem;
        padding: 12px 0;
    }

    /* Story Sections */
    .story-content h2,
    .craftsmanship-content h2 {
        font-size: 2rem;
    }

    .story-content p,
    .craftsmanship-content p {
        font-size: 0.95rem;
    }

    /* Page Header (Collection Pages) */
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 0.85rem;
        padding: 0 10px;
    }

    /* Sections spacing */
    section {
        padding: var(--spacing-md) 0;
    }

    /* Featured Collection Headers */
    .featured h3,
    .collection-header h3 {
        font-size: 1.5rem;
    }

    .featured p {
        font-size: 0.8rem;
    }
}

/* Extra small screens (below 400px) */
@media (max-width: 400px) {
    .logo {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .product-img {
        height: 300px;
    }

    .sidebar-menu {
        width: 100%;
        left: -100%;
    }
}

/* Financial Ticker Styles */
.ticker-wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.95);
    /* Match Header Background */
    backdrop-filter: blur(10px);
    color: #333333;
    /* Dark text */
    z-index: 10000;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    /* Removed border and shadow for seamless header integration */
}

.ticker-content {
    display: flex;
    /* Slower animation for seamless reading */
    animation: ticker 250s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    margin-right: 4rem;
    /* Increased spacing */
    flex-shrink: 0;
    /* Prevent shrinking */
}

.ticker-label {
    color: #666;
    margin-right: 0.5rem;
    font-weight: 500;
}

.ticker-value {
    color: var(--color-gold);
    font-weight: 700;
}

.ticker-change {
    margin-left: 0.4rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.ticker-change.up {
    color: #27ae60;
}

.ticker-change.down {
    color: #c0392b;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Push body content down slightly to accommodate fixed header */
body {
    padding-top: 36px;
}. p r o d u c t - c a r d  
   o p a c i t y :   1   ! i m p o r t a n t ;   v i s i b i l i t y :   v i s i b l e   ! i m p o r t a n t ;   t r a n s f o r m :   n o n e   ! i m p o r t a n t ;    
 