/* ===================================================
   VIRAGO FITWEAR - MAIN STYLESHEET
   Premium Sportswear E-commerce
   =================================================== */

/* ===== CSS RESET & VARIABLES ===== */
:root {
    /* Colors - Verona Brand Palette — LUXURY PEARL CANVA & GOLD */
    --clr-primary: #D4AF37;
    --clr-primary-dark: #B8860B;
    --clr-primary-light: #F4D068;
    --clr-primary-glow: rgba(212, 175, 55, 0.4);
    --clr-accent: #E5C158;
    --clr-dark: #0a0a0a;
    --clr-dark-card: #0f0f14;
    --clr-light: #f4f4f7;
    --clr-gray: #e9e9f0;
    --clr-gray-text: #4a4a4a;
    --clr-gray-medium: #777777;
    --clr-border: rgba(0, 0, 0, 0.1);
    --clr-border-gold: rgba(212, 175, 55, 0.35);
    --clr-success: #22c55e;
    --clr-warning: #f59e0b;
    --clr-gold: #D4AF37;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-subheading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --max-width: 1200px;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #0d0d12;
}

body {
    font-family: var(--font-body);
    color: #0a0a0a;
    background: transparent;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition);
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== LUXURY GOLD UTILITIES & ANIMATIONS ===== */
.gold-gradient-text {
    background: linear-gradient(135deg, #FFF099 0%, #D4AF37 50%, #AA820A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold-gradient-bg {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #050505;
}

.badge-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #050505;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    text-transform: uppercase;
}

.badge-steel {
    background: linear-gradient(135deg, #2c3036 0%, #15181c 100%);
    color: #F4D068;
    border: 1px solid rgba(212, 175, 55, 0.4);
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    font-size: 0.65rem;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.badge-glass {
    background: linear-gradient(135deg, #D4AF37 0%, #AA820A 100%);
    color: #050505;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    font-size: 0.65rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-pill {
    border-radius: 50px !important;
    padding: 0.85rem 2.2rem !important;
}

/* ===== GOLD SPOTLIGHT MOUSE GLOW CARD EFFECT ===== */
.product-card,
.spotlight-card,
.gender-card-v2,
.card-luxury,
.trust-item {
    position: relative;
    border-radius: 20px;
    background: #0d0d0d;
    border: 1px solid rgba(212, 175, 55, 0.25);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card::before,
.spotlight-card::before,
.gender-card-v2::before,
.card-luxury::before,
.trust-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1.5px;
    background: radial-gradient(
        220px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
        rgba(255, 240, 153, 0.85),
        rgba(212, 175, 55, 0.5) 35%,
        rgba(170, 130, 10, 0.2) 60%,
        transparent 80%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.product-card::after,
.spotlight-card::after,
.gender-card-v2::after,
.card-luxury::after,
.trust-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        250px circle at var(--mouse-x, -500px) var(--mouse-y, -500px),
        rgba(212, 175, 55, 0.15),
        rgba(184, 134, 11, 0.05) 50%,
        transparent 80%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover::before,
.spotlight-card:hover::before,
.gender-card-v2:hover::before,
.card-luxury:hover::before,
.trust-item:hover::before,
.product-card:hover::after,
.spotlight-card:hover::after,
.gender-card-v2:hover::after,
.card-luxury:hover::after,
.trust-item:hover::after {
    opacity: 1;
}

.product-card:hover,
.spotlight-card:hover,
.gender-card-v2:hover,
.card-luxury:hover,
.trust-item:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 14px 40px rgba(212, 175, 55, 0.35), 0 0 20px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

/* ===== TOP BANNER ===== */
.top-banner {
    background: #050505;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    color: #F4D068;
    text-align: center;
    padding: 0.6rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
}

.banner-messages-container {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    min-height: 20px;
}

.banner-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -150%);
    opacity: 0;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.banner-message.active {
    transform: translate(-50%, -50%);
    opacity: 1;
    pointer-events: auto;
}

.nav-banner {
    background: transparent;
    border: none;
    color: var(--clr-light);
    opacity: 0.6;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0.2rem;
    transition: all 0.2s ease;
    z-index: 2;
}

.nav-banner:hover {
    opacity: 1;
    transform: scale(1.1);
}

.nav-banner svg {
    width: 16px;
    height: 16px;
}

.nav-left {
    margin-right: 0.5rem;
}

.nav-right {
    margin-left: 0.5rem;
}

.top-banner .close-banner {
    position: absolute;
    right: 1rem;
    color: var(--clr-light);
    display: flex;
    align-items: center;
    opacity: 0.7;
}

.top-banner .close-banner:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ===== HEADER / NAVBAR ===== */
.navbar {
    background-color: var(--clr-light);
    position: sticky;
    top: 0;
    z-index: 90;
    border-bottom: 1px solid var(--clr-border);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.03);
}

/* Text-based logo fallback */
.logo-v {
    color: var(--clr-primary);
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: -3px;
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--clr-dark);
    display: inline;
}

.logo-sub {
    font-size: 0.45rem;
    letter-spacing: 4px;
    color: var(--clr-gray-text);
    font-weight: 600;
    margin-top: 2px;
}

/* Navigation Links */
.nav-links {
    display: none;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--clr-gray-text);
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a:hover {
    color: var(--clr-dark);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown logic for Desktop */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
}

.nav-item-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    padding: 0.75rem 1.5rem !important;
    color: var(--clr-gray-text) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    display: block;
    width: 100%;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

.nav-dropdown-menu a:hover {
    background-color: rgba(139, 26, 43, 0.05);
    color: var(--clr-primary) !important;
    padding-left: 1.75rem !important;
}

/* Mobile Submenu */
.mobile-has-submenu {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--clr-border);
}

.mobile-submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    padding: 0.85rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-dark);
}

.mobile-submenu-toggle i {
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
    color: var(--clr-gray-text);
}

.mobile-submenu-toggle.active i {
    transform: rotate(180deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-submenu a {
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
    color: var(--clr-gray-text) !important;
    border-bottom: none !important;
    font-weight: 500 !important;
}

.mobile-submenu a:hover {
    color: var(--clr-primary) !important;
    padding-left: 1.5rem !important;
}

/* Nav Icons */
.nav-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.nav-icons button,
.nav-icons .nav-icon-link {
    color: var(--clr-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
}

.nav-icons button:hover,
.nav-icons .nav-icon-link:hover {
    color: var(--clr-primary);
    background-color: rgba(139, 26, 43, 0.08);
    transform: translateY(-1px);
}

.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 0;
    background-color: var(--clr-primary);
    color: var(--clr-light);
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-dark);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: calc(100vh - 80px - 40px);
    min-height: 550px;
    background-image: url('https://images.unsplash.com/photo-1541534741688-6078c6bfb5c5?q=80&w=2069&auto=format&fit=crop');
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
    color: var(--clr-light);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.2) 70%,
            rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 0;
    padding-left: var(--spacing-lg);
}

.tag {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.4rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.06);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    color: var(--clr-primary-light);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    opacity: 0.85;
    margin-bottom: 2.5rem;
    max-width: 450px;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .hero-content {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
        text-align: center;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons .btn-outline {
        display: none;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #050505;
    font-weight: 800;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
    border: 1px solid #F4D068;
    border-radius: var(--radius-sm);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #F4D068 0%, #D4AF37 100%);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.55);
}

.btn-outline {
    background-color: transparent;
    color: #F4D068;
    border: 1.5px solid #D4AF37;
    border-radius: var(--radius-sm);
}

.btn-outline:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    color: #050505;
    border-color: #F4D068;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.btn-full {
    width: 100%;
}

.btn-text {
    color: var(--clr-gray-text);
    text-transform: none;
    font-weight: 500;
    letter-spacing: 0;
}

.btn-text:hover {
    color: var(--clr-dark);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: var(--spacing-2xl) var(--spacing-md);
}

.section-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.sub-heading {
    color: var(--clr-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.section-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--clr-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.category-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    border-radius: var(--radius-md);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--clr-light);
}

.category-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}

.category-overlay span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: var(--transition);
}

.category-card:hover .category-overlay span {
    opacity: 1;
    transform: translateX(5px);
}

/* ===== OFFER BANNER ===== */
.offer-banner {
    position: relative;
    padding: var(--spacing-2xl) 0;
    background-image: url('https://images.unsplash.com/photo-1541534741688-6078c6bfb5c5?q=80&w=2069&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--clr-light);
}

.offer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(118, 9, 32, 0.5));
    z-index: 1;
}

.offer-content {
    position: relative;
    z-index: 2;
}

.offer-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.offer-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.offer-title span {
    color: var(--clr-primary-light);
}

.offer-subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 2rem;
    max-width: 500px;
}

/* ===== FEATURED PRODUCTS SECTION ===== */
.featured-section {
    padding: var(--spacing-2xl) var(--spacing-md);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    background: #0d0d0d;
    border: 1px solid rgba(212, 175, 55, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    padding: 0.3rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--clr-light);
    z-index: 10;
    letter-spacing: 1px;
    border-radius: 50px;
}

.badge-new {
    background: linear-gradient(135deg, #2c3036, #15181c);
    color: #F4D068;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.badge-bestseller,
.badge-acero_316l {
    background: linear-gradient(135deg, #2c3036 0%, #15181c 100%);
    color: #F4D068;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.badge-verona_glass {
    background: linear-gradient(135deg, #D4AF37 0%, #AA820A 100%);
    color: #050505;
    font-weight: 800;
}

.badge-limited {
    background-color: #333;
}

.product-image {
    position: relative;
    overflow: hidden;
    background-color: #111111;
    aspect-ratio: 1 / 1;
    max-height: 220px;
    margin-bottom: 0;
    border-radius: 20px 20px 0 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    transition: bottom 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-card:hover .product-overlay {
    bottom: 0;
}

.product-info {
    padding: 1.2rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #14141c;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    flex-grow: 1;
}

.product-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #ffffff;
    text-align: center;
    line-height: 1.35;
}

.product-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    margin-bottom: 0.8rem;
    text-align: center;
}

.product-price {
    font-weight: 800;
    color: #D4AF37;
    font-size: 1.1rem;
    text-align: center;
}

.product-compare-price {
    color: #888888;
    text-decoration: line-through;
    font-size: 0.85rem;
}

.add-to-cart-btn {
    width: auto;
    min-width: 140px;
    border-radius: 50px;
    padding: 0.45rem 1.2rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #FFF099 0%, #D4AF37 50%, #AA820A 100%);
    color: #050505;
    border: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, #F4D068 50%, #D4AF37 100%);
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background-color: var(--clr-gray);
    padding: var(--spacing-xl) 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 2.2rem 1.5rem;
    text-align: center;
    border-radius: 20px;
    background: rgba(15, 15, 22, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.trust-item h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #ffffff;
}

.trust-item p {
    font-size: 0.88rem;
    color: #bbbbbb;
    line-height: 1.6;
}

/* ===== INSTAGRAM CTA ===== */
.instagram-cta {
    padding: var(--spacing-2xl) var(--spacing-md);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.insta-item {
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.insta-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.85);
}

.footer {
    background-color: var(--clr-dark);
    color: var(--clr-light);
    padding-top: var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: var(--spacing-xl);
}

@media (max-width: 767px) {
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-desc {
        text-align: center;
        max-width: 280px;
        margin: 0 auto 1.5rem auto;
    }

    .footer-col ul li {
        justify-content: center;
    }
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo .logo-v {
    color: var(--clr-primary-light);
}

.footer-logo .logo-text {
    color: var(--clr-light);
}

.footer-desc {
    color: var(--clr-gray-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--clr-gray-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.footer-social a:hover {
    color: var(--clr-light);
    border-color: var(--clr-primary);
    background-color: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--clr-light);
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a,
.footer-col ul li {
    color: var(--clr-gray-medium);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--clr-light);
    transform: translateX(3px);
}

.footer-icon {
    width: 16px;
    height: 16px;
    color: var(--clr-primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--clr-gray-medium);
}

/* ===== SEARCH MODAL ===== */
.search-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(5px);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 15vh;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-modal {
    background: var(--clr-light);
    width: 90%;
    max-width: 650px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 1.5rem;
    transform: translateY(-30px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.search-overlay.active .search-modal {
    transform: translateY(0);
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.search-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--clr-dark);
}

.close-search {
    color: var(--clr-gray-medium);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-search:hover {
    color: var(--clr-primary);
    background-color: rgba(139, 26, 43, 0.08);
}

.search-input-group {
    position: relative;
    margin-bottom: 1rem;
}

.search-input-group .search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--clr-gray-medium);
    width: 20px;
    height: 20px;
}

.search-input-group input {
    width: 100%;
    padding: 1.25rem 1.25rem 1.25rem 3rem;
    font-size: 1.1rem;
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-md);
    outline: none;
    transition: var(--transition);
}

.search-input-group input:focus {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 4px rgba(139, 26, 43, 0.1);
}

.search-submit-btn {
    width: 100%;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background-color: var(--clr-light);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--clr-border);
}

.cart-header h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.close-cart {
    color: var(--clr-gray-text);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-cart:hover {
    color: var(--clr-primary);
    background-color: rgba(118, 9, 32, 0.05);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1rem;
    color: var(--clr-gray-text);
    text-align: center;
}

.cart-empty-icon {
    width: 48px;
    height: 48px;
    opacity: 0.3;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--clr-border);
    animation: fadeIn 0.3s ease;
}

.cart-item img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    background-color: var(--clr-gray);
    border-radius: var(--radius-sm);
}

.cart-item-details {
    flex: 1;
}

.cart-item-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cart-item-title-row h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.remove-item {
    color: var(--clr-gray-medium);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.remove-item:hover {
    color: var(--clr-primary);
    background-color: rgba(118, 9, 32, 0.05);
}

.cart-item-price {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--clr-primary);
    margin-bottom: 0.75rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--clr-border);
    width: fit-content;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.quantity-selector input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 0.85rem;
    font-weight: 600;
    outline: none;
}

.qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--clr-gray);
    font-weight: 600;
}

.qty-btn:hover {
    background-color: var(--clr-border);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--clr-border);
    background-color: var(--clr-light);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.cart-footer .btn-primary {
    margin-bottom: 0.5rem;
}

/* ===== MOBILE MENU ===== */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--clr-light);
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--clr-border);
}

.close-mobile {
    color: var(--clr-gray-text);
}

.close-mobile:hover {
    color: var(--clr-primary);
}

.mobile-nav {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav a {
    padding: 0.85rem 0;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-dark);
}

.mobile-nav a:hover {
    color: var(--clr-primary);
    padding-left: 10px;
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--clr-border);
}

.mobile-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.mobile-social a {
    color: var(--clr-gray-text);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--clr-border);
    border-radius: 50%;
}

.mobile-social a:hover {
    color: var(--clr-primary);
    border-color: var(--clr-primary);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 640px) {
    .product-grid {
        gap: 2rem;
    }

    .instagram-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
    }

    .mobile-toggle {
        display: none;
    }

    .categories-grid {
        gap: 1.5rem;
    }

    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-content {
        padding-left: 5rem;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* ==========================================================
   VARIANT SELECTION MODAL
   ========================================================== */
.variant-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.variant-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.variant-modal {
    background: white;
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 820px;
    max-height: 85vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.variant-modal-overlay.active .variant-modal {
    transform: scale(1) translateY(0);
}

.variant-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--clr-gray-text);
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.variant-modal-close:hover {
    background: rgba(0, 0, 0, 0.12);
    transform: scale(1.1);
}

.variant-modal-body {
    display: grid;
    grid-template-columns: 1fr;
    max-height: 85vh;
    overflow-y: auto;
}

.variant-modal-image {
    background: var(--clr-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    min-height: 250px;
}

.variant-modal-image img {
    max-width: 100%;
    max-height: 350px;
    object-fit: contain;
    border-radius: var(--radius-md);
    transition: all 0.4s ease;
}

.variant-modal-info {
    padding: 1.5rem;
    overflow-y: auto;
}

.variant-modal-info h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--clr-dark);
}

.vm-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--clr-primary);
    margin-bottom: 1.25rem;
}

.vm-section h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-gray-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.vm-variants-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.vm-variant-card {
    border: 2px solid var(--clr-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}

.vm-variant-card:hover {
    border-color: var(--clr-primary);
    box-shadow: 0 4px 15px var(--clr-primary-glow);
    transform: translateY(-2px);
}

.vm-variant-card.selected {
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 2px var(--clr-primary), 0 6px 20px var(--clr-primary-glow);
}

.vm-variant-card.out-of-stock {
    opacity: 0.4;
    pointer-events: none;
    filter: grayscale(0.5);
}

.vm-variant-img {
    height: 100px;
    overflow: hidden;
    background: var(--clr-gray);
}

.vm-variant-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.vm-variant-card:hover .vm-variant-img img {
    transform: scale(1.05);
}

.vm-variant-details {
    padding: 0.5rem 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.vm-variant-color {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-dark);
}

.vm-color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.vm-variant-size {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: 0.5px;
}

.vm-variant-stock {
    font-size: 0.65rem;
    color: var(--clr-gray-medium);
}

.vm-variant-stock.low {
    color: var(--clr-warning);
    font-weight: 600;
}

.vm-selected-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--clr-gray);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.vm-selected-details {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: space-between;
}

.vm-selected-details span:first-child {
    font-weight: 700;
    font-size: 0.9rem;
}

.vm-stock-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--clr-success);
}

.vm-stock-badge.urgent {
    color: var(--clr-warning);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.vm-add-btn {
    margin-top: 0.5rem;
    padding: 1rem;
    font-size: 0.95rem;
}

.vm-add-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--clr-gray-medium) !important;
    box-shadow: none !important;
}

.vm-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    color: var(--clr-gray-medium);
    grid-column: span 2;
}

.vm-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--clr-border);
    border-top-color: var(--clr-primary);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Cart variant info label */
.cart-variant-info {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--clr-primary);
    background: rgba(139, 26, 43, 0.08);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    margin-top: -0.25rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .variant-modal-body {
        grid-template-columns: 1fr 1fr;
    }

    .variant-modal-image {
        min-height: 400px;
    }

    .vm-variants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== MOBILE BOTTOM NAVIGATION BAR — 3 BUTTONS ===== */
.mobile-bottom-nav {
    display: none;
}
@media (max-width: 767px) {
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 68px;
        background: rgba(10, 10, 14, 0.96);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-top: 1px solid rgba(212, 175, 55, 0.30);
        z-index: 999;
        justify-content: space-around;
        align-items: center;
        padding: 0 0.5rem;
        padding-bottom: env(safe-area-inset-bottom);
        box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.45);
    }

    /* Individual nav items */
    .mbn-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: #888888;
        text-decoration: none;
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        flex: 1;
        height: 100%;
        gap: 3px;
        transition: color 0.25s ease;
        cursor: pointer;
        background: none;
        border: none;
        font-family: inherit;
        -webkit-tap-highlight-color: transparent;
    }
    .mbn-item i {
        width: 22px;
        height: 22px;
        stroke-width: 1.8;
    }
    .mbn-item.active {
        color: #D4AF37;
    }
    .mbn-item:active {
        color: #F4D068;
    }

    /* Center FAB Cart Button */
    .mbn-cart-fab {
        position: relative;
        flex: 1.2;
    }
    .mbn-fab-circle {
        width: 52px;
        height: 52px;
        background: linear-gradient(135deg, #FFF099 0%, #D4AF37 50%, #AA820A 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #050505;
        box-shadow: 0 6px 20px rgba(212, 175, 55, 0.50), 0 0 0 3px rgba(10, 10, 14, 0.96);
        margin-top: -26px;
        border: 3px solid rgba(10, 10, 14, 0.96);
        transition: transform 0.25s ease, box-shadow 0.25s ease;
        position: relative;
    }
    .mbn-cart-fab:active .mbn-fab-circle {
        transform: scale(0.92);
    }
    .mbn-fab-circle i {
        width: 22px;
        height: 22px;
        color: #050505;
        stroke-width: 2.2;
    }

    /* Cart badge on FAB */
    .mbn-cart-badge {
        position: absolute;
        top: -4px;
        right: -4px;
        background: #E53E3E;
        color: #ffffff;
        font-size: 0.58rem;
        font-weight: 800;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: none; /* hidden when 0 */
        align-items: center;
        justify-content: center;
        border: 2px solid rgba(10, 10, 14, 0.96);
        line-height: 1;
    }

    .mbn-cart-fab span:last-child {
        color: #D4AF37;
        font-weight: 800;
    }

    /* Body padding for bottom nav */
    body {
        padding-bottom: 72px !important;
    }
}

/* ===== COMPREHENSIVE MOBILE UX IMPROVEMENTS ===== */
@media (max-width: 767px) {
    /* --- Smooth scrolling iOS --- */
    html {
        -webkit-overflow-scrolling: touch;
    }

    /* --- Hero section mobile --- */
    .hero-section {
        height: clamp(420px, 70vh, 560px) !important;
    }
    .hero-content {
        padding: 0 1rem !important;
    }
    .hero-title {
        font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
        line-height: 1.18 !important;
    }
    .hero-desc {
        font-size: 0.92rem !important;
        margin-bottom: 1.4rem !important;
    }
    .hero-actions .btn,
    .btn-primary.btn-pill {
        padding: 0.85rem 1.8rem !important;
        font-size: 0.78rem !important;
        min-height: 48px;
    }
    .hero-arrow {
        width: 36px !important;
        height: 36px !important;
    }
    .hero-arrow.prev {
        left: 0.5rem !important;
    }
    .hero-arrow.next {
        right: 0.5rem !important;
    }
    .hero-dots {
        bottom: 1rem !important;
    }

    /* --- Section spacing reduction --- */
    .featured-section,
    .categories-section,
    .gender-section,
    .instagram-cta {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    .section-heading {
        margin-bottom: 1.8rem !important;
    }
    .section-heading h2 {
        font-size: clamp(1.4rem, 5.5vw, 2rem) !important;
    }
    .sub-heading {
        font-size: 0.72rem !important;
    }
    .section-desc {
        font-size: 0.85rem !important;
    }

    /* --- Product grid mobile --- */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    .product-card {
        border-radius: 14px !important;
    }
    .product-image {
        border-radius: 14px 14px 0 0 !important;
        max-height: 180px !important;
    }
    .product-info {
        padding: 0.8rem 0.6rem !important;
    }
    .product-title {
        font-size: 0.82rem !important;
        margin-bottom: 0.25rem !important;
    }
    .product-price {
        font-size: 0.95rem !important;
    }
    .product-compare-price {
        font-size: 0.72rem !important;
    }
    .add-to-cart-btn {
        padding: 0.5rem 1rem !important;
        font-size: 0.65rem !important;
        min-height: 40px;
        border-radius: 50px !important;
    }
    .badge {
        font-size: 0.55rem !important;
        padding: 0.2rem 0.5rem !important;
        top: 0.5rem !important;
        left: 0.5rem !important;
    }

    /* --- Flagship cards (Elige Tu Estilo) — stack vertical --- */
    .gender-row,
    .snap-mobile-row {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }
    .gender-card-v2,
    .snap-mobile-card {
        border-radius: 18px !important;
    }
    .gender-img-v2 {
        height: 220px !important;
    }
    .gender-info-v2 {
        padding: 1.2rem !important;
    }
    .gender-label-v2 {
        font-size: 1.2rem !important;
    }
    .gender-info-v2 p {
        font-size: 0.82rem !important;
        margin-bottom: 0.7rem !important;
    }
    .gender-link-v2 {
        font-size: 0.78rem !important;
    }

    /* --- Category circles mobile --- */
    .categories-section .container > div[style*="display: flex"] {
        gap: 1.2rem !important;
        justify-content: center !important;
    }
    .categories-section .container > div[style*="display: flex"] > a {
        flex: 0 0 auto;
    }
    .categories-section .container > div[style*="display: flex"] > a > div[style*="width: 130px"] {
        width: 90px !important;
        height: 90px !important;
    }
    .categories-section .container > div[style*="display: flex"] > a > span {
        font-size: 0.7rem !important;
        letter-spacing: 1px !important;
        margin-top: 0.5rem !important;
    }

    /* --- Instagram 3D Gallery mobile --- */
    .instagram-cta .container {
        padding: 0 0.5rem !important;
    }

    /* Folder and photos scale down on mobile */
    #folderGalleryContainer {
        transform: scale(0.72) !important;
        transform-origin: center center;
    }

    /* --- Trust section mobile --- */
    .trust-section {
        padding: 2.5rem 0.5rem !important;
    }
    .trust-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    .trust-item {
        padding: 1.5rem 1rem !important;
        border-radius: 14px !important;
    }
    .trust-item h4 {
        font-size: 1rem !important;
    }
    .trust-item p {
        font-size: 0.82rem !important;
    }

    /* --- Footer mobile --- */
    .footer {
        padding-bottom: 72px !important;
    }
    .footer-grid {
        gap: 2rem !important;
    }

    /* --- Navbar mobile tweaks --- */
    .navbar-luxury .nav-container {
        height: 60px !important;
    }
    .logo-brand-text span:first-child {
        font-size: 1.35rem !important;
    }
    .logo-brand-text span:last-child {
        font-size: 0.4rem !important;
    }
    .nav-btn-circle {
        width: 36px !important;
        height: 36px !important;
    }
    .nav-btn-circle i {
        width: 16px !important;
        height: 16px !important;
    }

    /* --- Touch target enforcement --- */
    a, button, [role="button"], input[type="submit"] {
        min-height: 44px;
        min-width: 44px;
    }

    /* --- Top banner mobile --- */
    .top-banner {
        font-size: 0.72rem !important;
        padding: 0.5rem 2.5rem !important;
    }

    /* --- Cart sidebar mobile fullscreen --- */
    .cart-sidebar {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* --- Mobile menu improvements --- */
    .mobile-menu {
        width: 85% !important;
        max-width: 340px !important;
    }
    .mobile-nav a {
        padding: 0.9rem 1rem !important;
        font-size: 0.95rem !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
    }
}

/* Tablet improvements (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
    }
    .gender-row,
    .snap-mobile-row {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* ===== SHAKE ANIMATION ===== */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
    20%, 40%, 60%, 80% { transform: translateX(4px); }
}