/* Golden Scents Store — Premium Frontend Styles
   Aligned to Shopify Dawn theme (Figtree, scheme-4) */

/* ============================================
   GOOGLE FONTS — Figtree (matches Shopify theme)
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Colour palette — Shopify scheme-4 */
    --primary-gold: #FFD700;
    --gold-light: #FFE44D;
    --gold-dark: #E6C200;
    --bg-dark: #000000;
    --bg-card: #111111;
    --bg-hover: #1a1a1a;
    --text-white: #FFFFFF;
    --text-gray: #AAAAAA;
    --text-muted: #666666;
    --border-color: #222222;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;

    /* Typography — Figtree */
    --font-body: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Buttons — from Shopify settings_data */
    --btn-radius: 40px;
    --btn-border-width: 1px;
    --btn-shadow: 0 8px 10px rgba(18, 18, 18, .15);

    /* Spacing — Shopify settings */
    --spacing-section: 0px;
    --spacing-grid-h: 8px;
    --spacing-grid-v: 8px;

    /* Transition */
    --transition: all 0.3s ease;
    --transition-lift: all 0.35s cubic-bezier(.25, .46, .45, .94);
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    inset: 0;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .5s ease-out, visibility .5s ease-out;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 215, 0, .3);
    border-radius: 50%;
    border-top-color: var(--primary-gold);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   RESETS
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1600px;
    /* Shopify page_width: 1600 */
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   ANNOUNCEMENT / TOP BAR  —  Scrolling Ticker
   ============================================ */
.top-bar {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    overflow: hidden;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.top-social {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    padding: 0 15px;
    z-index: 2;
}

.top-social a {
    color: var(--primary-gold);
    font-size: .9rem;
    transition: var(--transition);
}

.top-social a:hover {
    color: var(--gold-light);
    transform: scale(1.15);
}

/* Scrolling marquee ticker */
.top-message {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 25s linear infinite;
    gap: 60px;
}

.ticker-track span {
    color: var(--primary-gold);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0 30px;
    flex-shrink: 0;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Fallback for old markup (arrows + single span) */
.nav-arrow {
    background: none;
    border: none;
    color: var(--primary-gold);
    cursor: pointer;
    padding: 5px;
    font-size: .7rem;
}

.nav-arrow:hover {
    color: var(--gold-light);
}

.top-currency {
    color: var(--primary-gold);
    font-size: .82rem;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0 15px;
    z-index: 2;
}

.top-currency i {
    font-size: .7rem;
    margin-left: 5px;
}

/* ============================================
   MAIN HEADER
   ============================================ */
.store-header {
    background: var(--bg-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 55px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 1.5px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 28px;
    margin-right: auto;
}

.main-nav a {
    color: var(--primary-gold);
    font-weight: 500;
    font-size: .85rem;
    text-transform: capitalize;
    letter-spacing: .5px;
    padding: 8px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold-light);
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 22px;
}

.icon-link {
    color: var(--primary-gold);
    font-size: 1.1rem;
    position: relative;
    transition: var(--transition);
}

.icon-link:hover {
    color: var(--gold-light);
    transform: scale(1.15);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Search Overlay */
.search-overlay {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
}

.search-overlay.active {
    display: block;
}

.search-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--btn-radius);
    overflow: hidden;
}

.search-form input {
    flex: 1;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-right: none;
    padding: 15px 24px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: var(--btn-radius) 0 0 var(--btn-radius);
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.search-form input::placeholder {
    color: var(--text-muted);
}

.search-form button {
    background: var(--primary-gold);
    border: none;
    padding: 15px 28px;
    color: var(--bg-dark);
    cursor: pointer;
    font-size: 1rem;
    border-radius: 0 var(--btn-radius) var(--btn-radius) 0;
    transition: var(--transition);
}

.search-form button:hover {
    background: var(--gold-light);
}

/* ============================================
   HERO — SLIDESHOW
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .2) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    width: 100%;
    padding: 0 40px;
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--primary-gold);
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    letter-spacing: 1px;
}

/* Hero Navigation */
.hero-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
}

.hero-nav-btn {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: .7;
    transition: var(--transition);
}

.hero-nav-btn:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-white);
    opacity: .4;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.hero-dot.active {
    opacity: 1;
    background: var(--primary-gold);
    transform: scale(1.2);
}

.hero-pause {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1rem;
    cursor: pointer;
    opacity: .7;
}

/* =============================================
   MULTICOLUMN 3-IMAGE SECTION (Below Slider)
   Matches Shopify multicolumn layout exactly
   ============================================= */
.multicolumn-section {
    width: 100%;
    padding: 0;
    background: var(--bg-dark);
}

.multicolumn-container {
    display: flex;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    /* Subtle gap so each image keeps its rounded look internally */
    gap: 0;
}

.multicolumn-item {
    flex: 1;
    overflow: hidden;
    /* Each column clips the zooming image */
    position: relative;
}

.multicolumn-img-wrapper {
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: block;
}

.multicolumn-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Smooth zoom on hover — matching Shopify's media--hover-effect */
    transition: transform 0.5s ease;
    transform-origin: center center;
}

.multicolumn-item:hover img {
    transform: scale(1.05);
}



/* Static Hero Fallback */
.hero {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, .06) 0%, transparent 70%);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 40px;
    letter-spacing: 1px;
}

.hero-btn {
    display: inline-block;
    background: transparent;
    color: var(--primary-gold);
    padding: 16px 50px;
    border: 2px solid var(--primary-gold);
    border-radius: var(--btn-radius);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: .85rem;
    transition: var(--transition);
    box-shadow: var(--btn-shadow);
}

.hero-btn:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(255, 215, 0, .25);
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 20px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title p {
    color: var(--text-gray);
    font-size: .95rem;
    letter-spacing: 1px;
}

/* ============================================
   PRODUCT GRID
   ============================================ */
.products-section {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px 24px;
    }
}

/* ============================================
   PRODUCT CARD
   ============================================ */
.product-card {
    background: transparent;
    border: none;
    overflow: hidden;
    position: relative;
    transition: none;
    border-radius: 0;
}

.product-card:hover {
    transform: none;
    box-shadow: none;
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.product-card:hover .product-image-secondary {
    opacity: 1;
}

.product-card:hover .product-image-primary {
    opacity: 0;
}

/* Product Image */
.product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--bg-card);
    overflow: hidden;
    display: block;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s cubic-bezier(.25, .46, .45, .94), opacity .4s ease;
    padding: 0;
}

.product-image-primary {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.product-image-secondary {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
}

/* Image zoom on hover (Shopify-style) */
.product-card:hover .product-image img:not(.product-image-secondary) {
    transform: scale(1.05);
}

/* Quick-add bar — reveals on hover (desktop), always visible on mobile */
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    background: transparent;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .25s ease, transform .25s ease;
    display: flex;
    gap: 0;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

.product-card .product-overlay .btn {
    transform: none;
    opacity: 1;
    transition: background-color .2s ease, color .2s ease;
    box-shadow: none;
}

.product-card .product-overlay .btn-primary {
    flex: 1;
    background: var(--primary-gold);
    color: var(--bg-dark);
    border: 1px solid var(--primary-gold);
    border-radius: 0;
    padding: 13px 16px;
    font-size: .7rem;
    letter-spacing: 1.5px;
}

.product-card .product-overlay .btn-primary:hover {
    background: var(--gold-light);
    color: var(--bg-dark);
    transform: none;
    box-shadow: none;
}

.product-card .product-overlay .btn-whatsapp {
    flex: 0 0 46px;
    width: 46px;
    padding: 0;
    border-radius: 0;
    background: #25D366;
    color: #ffffff;
    border: 1px solid #25D366;
    border-left: 1px solid rgba(0, 0, 0, .25);
}

.product-card .product-overlay .btn-whatsapp:hover {
    background: #20BD5A;
    color: #ffffff;
    transform: none;
    box-shadow: none;
}

/* Badges */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 11px;
    font-size: .65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-radius: 2px;
    z-index: 5;
    background: var(--bg-dark);
}

.badge-sale {
    color: var(--danger);
    box-shadow: inset 0 0 0 1px var(--danger);
}

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

.badge-featured {
    color: var(--primary-gold);
    box-shadow: inset 0 0 0 1px var(--primary-gold);
}

/* Product Info */
.product-info {
    padding: 14px 0 0;
    text-align: left;
    transition: none;
}

.product-card:hover .product-info {
    background: transparent;
}

/* Base .product-brand — used standalone in the PDP sidebar (.product-details) */
.product-brand {
    font-size: .7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    transition: color .3s ease;
}

.product-card .product-brand {
    font-size: .68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    transition: none;
}

.product-name {
    font-family: var(--font-heading);
    font-size: .92rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 6px;
    line-height: 1.4;
    transition: color .2s ease;
}

.product-name a {
    color: inherit;
    transition: color .2s ease;
}

.product-name a:hover {
    color: var(--primary-gold);
}

/* Base .product-price / .current-price — used standalone in the PDP sidebar */
.product-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

.product-card .product-price {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.price-label {
    font-size: .78rem;
    font-weight: 400;
    color: var(--text-muted);
}

.product-card .current-price {
    font-size: .95rem;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: .3px;
}

.product-card .no-image {
    background: var(--bg-card);
    color: var(--primary-gold);
    opacity: .6;
}

.original-price {
    font-size: .85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Stock Status */
.stock-status {
    font-size: .7rem;
    padding: 5px 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border-radius: var(--btn-radius);
}

.stock-in {
    background: transparent;
    color: var(--success);
    border: 1px solid var(--success);
}

.stock-low {
    background: transparent;
    color: var(--warning);
    border: 1px solid var(--warning);
}

.stock-out {
    background: transparent;
    color: var(--danger);
    border: 1px solid var(--danger);
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

/* ============================================
   BUTTONS  —  40px Rounded + Shadow
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: var(--btn-border-width) solid transparent;
    border-radius: var(--btn-radius);
    font-family: var(--font-body);
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: var(--btn-shadow);
}

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

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(255, 215, 0, .25);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-white);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--text-white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #20BD5A;
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(37, 211, 102, .25);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(255, 215, 0, .2);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 10px 20px;
    font-size: .75rem;
}

/* ============================================
   BRAND COLLECTIONS
   ============================================ */
.collections-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.collection-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    transition: var(--transition-lift);
    border-radius: 4px;
}

.collection-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, transparent 60%);
    z-index: 1;
}

.collection-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(255, 215, 0, .08);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.collection-card:hover img {
    transform: scale(1.1);
}

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    text-align: center;
}

.collection-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.collection-card span {
    font-size: .8rem;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-page {
    padding: 60px 0;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.product-gallery {
    position: relative;
}

.main-image {
    aspect-ratio: 1;
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

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

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    padding: 20px 0;
}

.product-details .product-brand {
    font-size: .75rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.product-details h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-white);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-details .product-price {
    margin-bottom: 25px;
    justify-content: flex-start;
}

.product-details .current-price {
    font-size: 1.8rem;
    font-weight: 600;
}

.product-description {
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.9;
    font-size: .95rem;
}

.product-description h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-meta {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    margin-bottom: 30px;
}

.meta-item {
    display: flex;
    margin-bottom: 12px;
    font-size: .9rem;
}

.meta-item strong {
    width: 120px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: .75rem;
}

.meta-item span {
    color: var(--text-white);
}

.product-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-detail-actions .btn {
    padding: 18px 40px;
    font-size: .85rem;
}

/* ============================================
   COLLECTION PAGE
   ============================================ */
.collection-header {
    background: var(--bg-card);
    padding: 60px 0;
    text-align: center;
}

.collection-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.collection-header p {
    color: var(--text-gray);
    font-size: .95rem;
    letter-spacing: 1px;
}

.products-count {
    color: var(--text-muted);
    font-size: .85rem;
    letter-spacing: 1px;
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.filter-bar select {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: .85rem;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: var(--btn-radius);
    appearance: none;
    -webkit-appearance: none;
    padding-right: 35px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
}

.filter-bar select:focus {
    outline: none;
    border-color: var(--primary-gold);
}

/* ============================================
   FOOTER
   ============================================ */
.store-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    color: var(--primary-gold);
    font-size: .85rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-gray);
    font-size: .9rem;
    line-height: 1.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-gray);
    font-size: .85rem;
    letter-spacing: .5px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--bg-dark);
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: .8rem;
    letter-spacing: 1px;
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: var(--bg-dark);
    border-left: 1px solid var(--border-color);
    z-index: 2000;
    transition: right .4s cubic-bezier(.25, .46, .45, .94);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h3 {
    color: var(--primary-gold);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.cart-close {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.cart-close:hover {
    color: var(--primary-gold);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 25px 30px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.cart-empty i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: .3;
    color: var(--primary-gold);
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: .95rem;
}

.cart-item-brand {
    font-size: .7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.cart-item-price {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-left: auto;
}

.cart-item-remove:hover {
    color: var(--danger);
}

.cart-footer {
    padding: 25px 30px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-card);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-total span:last-child {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-note {
    font-size: .75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-align: center;
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .85);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: var(--bg-dark);
    z-index: 2001;
    transition: left .4s cubic-bezier(.25, .46, .45, .94);
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border-color);
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-header h3 {
    color: var(--primary-gold);
    font-size: .9rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-menu-close:hover {
    color: var(--primary-gold);
}

.mobile-nav {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav a {
    display: block;
    padding: 16px 0;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
    text-transform: capitalize;
}

.mobile-nav a:hover {
    color: var(--primary-gold);
    padding-left: 12px;
}

/* ============================================
   ABOUT & CONTACT PAGES
   ============================================ */
.page-header {
    background: var(--bg-card);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-gray);
    font-size: 1rem;
    letter-spacing: 1px;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 0;
}

.page-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.page-content p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: .95rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px 20px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: .95rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.contact-info-card i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-top: 3px;
}

.contact-info-card h3 {
    color: var(--text-white);
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-card p {
    color: var(--text-gray);
    font-size: .9rem;
    margin-bottom: 0;
}

/* ============================================
   REVEAL ON SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for grid items */
.reveal-child>* {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease;
}

.reveal-child.revealed>*:nth-child(1) {
    transition-delay: .05s;
}

.reveal-child.revealed>*:nth-child(2) {
    transition-delay: .1s;
}

.reveal-child.revealed>*:nth-child(3) {
    transition-delay: .15s;
}

.reveal-child.revealed>*:nth-child(4) {
    transition-delay: .2s;
}

.reveal-child.revealed>*:nth-child(5) {
    transition-delay: .25s;
}

.reveal-child.revealed>*:nth-child(6) {
    transition-delay: .3s;
}

.reveal-child.revealed>*:nth-child(7) {
    transition-delay: .35s;
}

.reveal-child.revealed>*:nth-child(8) {
    transition-delay: .4s;
}

.reveal-child.revealed>* {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37, 211, 102, .4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, .5);
    color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1,
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* No hover on touch — keep the quick-add bar visible and usable */
    .product-overlay {
        opacity: 1;
        transform: none;
        pointer-events: auto;
        position: static;
        margin-top: 8px;
    }

    .top-bar-content {
        justify-content: center;
    }

    .top-social,
    .top-currency {
        display: none;
    }

    .hero,
    .hero-slider {
        height: 60vh;
        min-height: 400px;
    }

    .hero h1,
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero p,
    .hero-content p {
        font-size: .95rem;
    }

    .collections-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .collection-header h1 {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 50px 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        gap: 20px 12px;
    }

    .current-price {
        font-size: .95rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .hero h1,
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-btn {
        padding: 14px 36px;
        font-size: .8rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: var(--primary-gold);
    font-size: 3rem;
    height: 100%;
    opacity: .5;
}

.text-success {
    color: var(--success) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-danger {
    color: var(--danger) !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in {
    animation: fadeIn .6s ease;
}

.slide-up {
    animation: slideUp .6s ease;
}