/* store.css - Royal Watch MTY Luxury Boutique Storefront Styling — Premium Edition */

:root {
    --bg-primary: #05050a;
    --bg-secondary: #0a0a10;
    --bg-card: #111118;
    --bg-card-hover: #16161f;
    --accent-gold: #c5a059;
    --accent-gold-hover: #dfba73;
    --accent-gold-light: rgba(197, 160, 89, 0.08);
    --accent-gold-glow: rgba(197, 160, 89, 0.18);
    --border-color: rgba(197, 160, 89, 0.1);
    --border-color-glow: rgba(197, 160, 89, 0.35);
    
    --text-primary: #F5F5F7;
    --text-secondary: #A0A0A9;
    --text-muted: #6B6B76;
    
    --status-disponible: #10b981;
    --status-apartado: #f59e0b;
    --status-consignado: #6366f1;
    --status-vendido: #ef4444;
    
    --font-heading: 'Cinzel', serif;
    --font-sans: 'Inter', sans-serif;
    --font-sub: 'Outfit', sans-serif;
    
    --transition-speed: 0.35s;
    --transition-curve: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: #252528; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-gold); }

/* ===================== */
/* STORE HEADER          */
/* ===================== */
.store-header {
    background-color: rgba(5, 5, 10, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.store-header.scrolled {
    background-color: rgba(5, 5, 10, 0.96);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--accent-gold);
    object-fit: cover;
    transition: box-shadow 0.3s;
}

.store-logo:hover .logo-img {
    box-shadow: 0 0 14px rgba(197, 160, 89, 0.5);
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-text span {
    font-family: var(--font-sub);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    display: block;
}

/* Nav Menu */
.store-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-sub);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition-speed);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width var(--transition-speed) var(--transition-curve);
}

.nav-link:hover {
    color: var(--accent-gold);
}
.nav-link:hover::after {
    width: 100%;
}

.admin-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: var(--accent-gold-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 12px;
    transition: all var(--transition-speed);
}

.admin-link:hover {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
}

/* Currency Settings */
.header-settings { display: flex; align-items: center; }

.currency-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.currency-toggle-wrapper .toggle-label {
    font-size: 10px;
    color: var(--text-muted);
    font-family: var(--font-sub);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.currency-switch {
    display: flex;
    background-color: rgba(255,255,255,0.04);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 2px;
}

.currency-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: all var(--transition-speed);
    letter-spacing: 0.5px;
}

.currency-btn.active {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
}

/* ======================== */
/* CANVAS PARTICLES         */
/* ======================== */
#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ======================== */
/* HERO SECTION — PREMIUM   */
/* ======================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 30%, var(--bg-primary) 100%);
    z-index: 3;
    pointer-events: none;
}

/* ======================== */
/* HERO CAROUSEL            */
/* ======================== */
.hero-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.carousel-slide .hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s;
}

.carousel-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    position: relative;
    max-width: 860px;
    padding: 0 24px;
    z-index: 5;
    text-align: center;
}

.hero-tagline {
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-tagline::before,
.hero-tagline::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.6;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.15;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #FFFFFF 20%, #e8d5a8 60%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 44px auto;
    font-weight: 300;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 4px;
    font-family: var(--font-sub);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all var(--transition-speed) var(--transition-curve);
}

.btn-gold {
    background: linear-gradient(135deg, var(--accent-gold), #b8934a);
    color: #06060c;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
    box-shadow: 0 0 28px rgba(197, 160, 89, 0.5), 0 6px 20px rgba(0,0,0,0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(197, 160, 89, 0.4);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: var(--accent-gold-light);
    transform: translateY(-2px);
}

/* Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 16, 0.45);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--text-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s var(--transition-curve);
}

.carousel-control:hover {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
}

.carousel-control.prev { left: 24px; }
.carousel-control.next { right: 24px; }

/* Indicators */
.carousel-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dots .dot.active {
    background: var(--accent-gold);
    transform: scale(1.35);
    box-shadow: 0 0 8px var(--accent-gold);
}

/* ======================== */
/* HERO STATS BAR           */
/* ======================== */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 1000px;
    background: rgba(10, 10, 16, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid var(--border-color);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.55);
}

.hero-stat-item {
    flex: 1;
    padding: 24px 20px;
    text-align: center;
    position: relative;
}

.hero-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-color);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: var(--font-sub);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

/* ======================== */
/* BRAND MARQUEE            */
/* ======================== */
.marquee-section {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.marquee-section::before,
.marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-section::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}
.marquee-section::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marquee-scroll 28s linear infinite;
    width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
    padding: 0 48px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: color 0.3s;
}

.marquee-item:hover { color: var(--accent-gold); }

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-gold);
    opacity: 0.4;
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ======================== */
/* CATALOG SECTION          */
/* ======================== */
.catalog-section {
    background-color: var(--bg-primary);
    padding: 100px 28px;
    border-top: 1px solid var(--border-color);
}

.catalog-container { max-width: 1280px; margin: 0 auto; }

.section-title-wrapper {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 30px);
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.gold-line {
    width: 50px;
    height: 1.5px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    margin: 0 auto 16px auto;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Filters Card */
.filters-card {
    background: linear-gradient(135deg, rgba(20,20,28,0.9), rgba(14,14,20,0.9));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 36px;
    backdrop-filter: blur(8px);
}

.filters-row-main {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.search-box-wrapper {
    position: relative;
    flex-grow: 1;
    max-width: 700px;
}

.search-box-wrapper input {
    width: 100%;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 13px 18px 13px 50px;
    font-size: 14px;
    border-radius: 8px;
    font-family: var(--font-sans);
    transition: all var(--transition-speed);
}

.search-box-wrapper input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: rgba(197, 160, 89, 0.04);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.08);
}

.search-icon {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    color: var(--text-muted);
    pointer-events: none;
}

.sort-box-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-box-wrapper label {
    font-family: var(--font-sub);
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.sort-box-wrapper select {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 11px 16px;
    font-size: 13px;
    border-radius: 8px;
    font-family: var(--font-sans);
    cursor: pointer;
    outline: none;
    transition: border-color var(--transition-speed);
}

.sort-box-wrapper select:focus {
    border-color: var(--accent-gold);
}

/* Brand Tags */
.brands-filter-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(197, 160, 89, 0.06);
    padding-top: 18px;
}

.brands-filter-row .filter-title {
    font-family: var(--font-sub);
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1.5px;
}

.brand-tags-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.brand-tag {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 18px;
    font-size: 11.5px;
    font-family: var(--font-sub);
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-curve);
    letter-spacing: 0.5px;
}

.brand-tag:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: var(--accent-gold-light);
}

.brand-tag.active {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15), rgba(197, 160, 89, 0.08));
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    font-weight: 600;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.12);
}

.catalog-info-bar {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 24px;
    display: flex;
    justify-content: flex-end;
    font-family: var(--font-sub);
    letter-spacing: 0.5px;
}

.catalog-info-bar strong {
    color: var(--accent-gold);
}

/* ======================== */
/* PRODUCTS GRID — PREMIUM  */
/* ======================== */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 28px;
}

/* Watch Card — Glassmorphism */
.watch-card {
    background: linear-gradient(145deg, rgba(22,22,32,0.95), rgba(14,14,22,0.95));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    transition: all 0.5s var(--transition-curve);
    /* Scroll reveal starts hidden */
    opacity: 0;
    transform: translateY(30px);
}

.watch-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.watch-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(197,160,89,0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-speed);
    z-index: 0;
    pointer-events: none;
}

.watch-card:hover {
    transform: translateY(-10px);
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(197, 160, 89, 0.08),
        0 0 30px rgba(197, 160, 89, 0.06);
}

.watch-card:hover::before { opacity: 1; }

/* Card Image */
.card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: radial-gradient(circle at center, #131320 0%, #08080f 100%);
}

.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--transition-curve);
}

.watch-card:hover .card-img { transform: scale(1.08); }

/* Image hover overlay with CTA */
.card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,12,0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.4s var(--transition-curve);
    z-index: 5;
}

.watch-card:hover .card-img-overlay { opacity: 1; }

.overlay-btn {
    font-family: var(--font-sub);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #06060c;
    background: var(--accent-gold);
    padding: 9px 22px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transform: translateY(10px);
    transition: transform 0.4s var(--transition-curve);
}

.watch-card:hover .overlay-btn { transform: translateY(0); }

/* Badge */
.card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: var(--font-sub);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 10;
    backdrop-filter: blur(6px);
}

.card-badge.status-disponible {
    background-color: rgba(16, 185, 129, 0.12);
    color: var(--status-disponible);
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.card-badge.status-apartado {
    background-color: rgba(245, 158, 11, 0.12);
    color: var(--status-apartado);
    border: 1px solid rgba(245, 158, 11, 0.3);
}
.card-badge.status-consignado {
    background-color: rgba(99, 102, 241, 0.12);
    color: var(--status-consignado);
    border: 1px solid rgba(99, 102, 241, 0.3);
}
.card-badge.status-vendido {
    background-color: rgba(239, 68, 68, 0.12);
    color: var(--status-vendido);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Card Body */
.card-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.card-brand {
    font-family: var(--font-sub);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--accent-gold);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-brand::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0.5;
}

.card-model {
    font-family: var(--font-sans);
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 40px;
}

.card-ref {
    font-family: monospace;
    font-size: 10.5px;
    color: var(--text-muted);
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

/* Spec tags */
.card-specs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.card-spec-tag {
    font-size: 10px;
    background-color: rgba(255,255,255,0.03);
    color: var(--text-secondary);
    padding: 3px 9px;
    border-radius: 4px;
    border: 1px solid rgba(197, 160, 89, 0.07);
    font-family: var(--font-sub);
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid rgba(197, 160, 89, 0.06);
    padding-top: 16px;
}

.card-price {
    font-family: var(--font-sub);
    font-size: 17px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.card-btn {
    background: none;
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--accent-gold);
    padding: 7px 14px;
    border-radius: 4px;
    font-family: var(--font-sub);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.watch-card:hover .card-btn {
    background-color: var(--accent-gold);
    color: #06060c;
    border-color: var(--accent-gold);
}

/* Empty Catalog State */
.empty-catalog-msg {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(20,20,28,0.6), rgba(14,14,22,0.6));
    border: 1px dashed rgba(197, 160, 89, 0.15);
    border-radius: 12px;
}

.empty-catalog-msg i {
    width: 44px;
    height: 44px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.empty-catalog-msg h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
}

.empty-catalog-msg p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ======================== */
/* ABOUT SECTION            */
/* ======================== */
.about-section {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 120px 28px;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.about-container { max-width: 1280px; margin: 0 auto; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image-side { display: flex; justify-content: center; }

.about-logo-card {
    background: linear-gradient(135deg, rgba(22,22,32,0.95), rgba(14,14,22,0.95));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.4),
        0 0 0 1px rgba(197, 160, 89, 0.05);
    width: 320px;
    height: 320px;
    position: relative;
    transition: all 0.5s var(--transition-curve);
}

.about-logo-card:hover {
    border-color: rgba(197, 160, 89, 0.25);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.5),
        0 0 40px rgba(197, 160, 89, 0.06);
    transform: translateY(-5px);
}

.about-logo-card::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    right: -14px;
    bottom: -14px;
    border: 1px solid rgba(197, 160, 89, 0.08);
    border-radius: 18px;
    pointer-events: none;
}

.about-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.about-text-side .sub-tag {
    font-family: var(--font-sub);
    font-size: 10px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 14px;
}

.about-text-side h3 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: 1px;
    margin-bottom: 24px;
    line-height: 1.3;
    background: linear-gradient(135deg, #fff 60%, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text-side > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.9;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 36px;
}

.service-card {
    background: linear-gradient(135deg, rgba(22,22,32,0.95), rgba(14,14,22,0.95));
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--transition-curve);
    box-shadow:
        0 10px 24px rgba(0,0,0,0.3),
        0 0 0 1px rgba(197, 160, 89, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(197,160,89,0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 160, 89, 0.28);
    box-shadow:
        0 20px 40px rgba(0,0,0,0.55),
        0 0 30px rgba(197, 160, 89, 0.05);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gold-light);
    border: 1.5px solid rgba(197, 160, 89, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    color: var(--accent-gold);
    transition: all 0.5s var(--transition-curve);
}

.service-card:hover .service-card-icon {
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    box-shadow: 0 0 16px rgba(197, 160, 89, 0.4);
    transform: scale(1.08);
}

.service-card-icon i {
    width: 26px;
    height: 26px;
}

.service-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.service-card p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 300;
}

.card-accent-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: var(--font-sub);
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-gold);
    background-color: rgba(197, 160, 89, 0.1);
    border: 1.5px solid rgba(197, 160, 89, 0.25);
    padding: 3px 10px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

/* ======================== */
/* FOOTER                   */
/* ======================== */
.store-footer {
    background-color: #03030a;
    border-top: 1px solid var(--border-color);
    padding: 70px 28px 24px 28px;
    position: relative;
}

.store-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
    opacity: 0.4;
}

.footer-container { max-width: 1280px; margin: 0 auto; }

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

.footer-info .footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid rgba(197, 160, 89, 0.4);
    object-fit: cover;
    margin-bottom: 18px;
}

.footer-info h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: 2.5px;
    margin-bottom: 5px;
}

.footer-info p {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 300;
}

.footer-info .location-text {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--text-secondary);
    font-size: 12px;
}

.footer-info .location-text i {
    width: 13px;
    height: 13px;
    color: var(--accent-gold);
}

.footer-links h5, .footer-contact h5 {
    font-family: var(--font-sub);
    font-size: 10px;
    text-transform: uppercase;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
    font-size: 13px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-speed);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    display: block;
    width: 12px;
    height: 1px;
    background: var(--accent-gold);
    opacity: 0;
    transition: opacity var(--transition-speed);
}

.footer-links a:hover { color: var(--accent-gold); }
.footer-links a:hover::before { opacity: 1; }

.footer-contact { display: flex; flex-direction: column; gap: 16px; }

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-family: var(--font-sub);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all var(--transition-speed);
}

.contact-btn:hover {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.35);
    transform: translateY(-2px);
}

.contact-btn i { width: 16px; height: 16px; }

.footer-contact p {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact p i {
    width: 14px;
    height: 14px;
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(197, 160, 89, 0.06);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

/* ======================== */
/* FLOATING WHATSAPP BTN    */
/* ======================== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: 0;
    animation: float-in 1s 1.5s var(--transition-curve) both;
}

.whatsapp-float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35), 0 2px 8px rgba(0,0,0,0.4);
    transition: all 0.4s var(--transition-curve);
    position: relative;
    overflow: hidden;
}

.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: wa-pulse 2.5s ease-out infinite;
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2); opacity: 0; }
}

.whatsapp-float-btn:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
    position: relative;
    z-index: 1;
}

.wa-tooltip {
    background: #25D366;
    color: white;
    font-family: var(--font-sub);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 6px 0 0 6px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.35s var(--transition-curve);
    pointer-events: none;
    margin-right: -6px;
    letter-spacing: 0.3px;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes float-in {
    from { transform: translateY(80px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ======================== */
/* LIGHTBOX MODAL — PREMIUM */
/* ======================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--transition-curve);
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: linear-gradient(145deg, rgba(18,18,26,0.98), rgba(12,12,20,0.98));
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 14px;
    max-width: 940px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 36px;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.45s var(--transition-curve);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(197, 160, 89, 0.06),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-secondary);
    cursor: pointer;
    padding: 7px;
    border-radius: 8px;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.1);
    border-color: rgba(197, 160, 89, 0.3);
}

.modal-close-btn i { width: 18px; height: 18px; }

/* Modal Layout */
.modal-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
}

.modal-image-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-img-main-wrapper {
    background: radial-gradient(circle at center, #131325 0%, #07070f 100%);
    border-radius: 10px;
    border: 1px solid rgba(197, 160, 89, 0.08);
    overflow: hidden;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Enabled for absolute gallery arrows */
}

.modal-main-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s var(--transition-curve);
}

.modal-img-main-wrapper:hover .modal-main-img {
    transform: scale(1.03);
}

/* Modal Image Gallery Styles */
.modal-img-viewport {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s ease;
}

.modal-img-viewport.fade-out {
    opacity: 0;
}

.modal-gallery-arrow {
    background: rgba(10, 10, 16, 0.65);
    border: 1px solid rgba(197, 160, 89, 0.2);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s var(--transition-curve);
    opacity: 0.65;
}

.modal-gallery-arrow:hover {
    opacity: 1;
    background: var(--accent-gold);
    color: var(--bg-primary);
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.4);
}

.modal-gallery-arrow.prev { left: 12px; }
.modal-gallery-arrow.next { right: 12px; }

.modal-thumbnails-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 6px 0 10px 0;
    margin-top: 6px;
}

.modal-thumbnails-wrapper::-webkit-scrollbar {
    height: 4px;
}
.modal-thumbnails-wrapper::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
}
.modal-thumbnails-wrapper::-webkit-scrollbar-thumb {
    background: rgba(197, 160, 89, 0.15);
    border-radius: 2px;
}
.modal-thumbnails-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

.modal-thumbnails-track {
    display: flex;
    gap: 8px;
    justify-content: center;
    width: max-content;
    margin: 0 auto;
    padding: 0 4px;
}

.modal-thumb {
    width: 52px;
    height: 52px;
    border-radius: 6px;
    border: 1.5px solid rgba(197, 160, 89, 0.12);
    background: #08080f;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition-curve);
    opacity: 0.6;
    flex-shrink: 0;
}

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

.modal-thumb:hover {
    opacity: 0.9;
    border-color: rgba(197, 160, 89, 0.4);
}

.modal-thumb.active {
    opacity: 1;
    border-color: var(--accent-gold);
    transform: scale(1.05);
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.3);
}

.modal-info-col {
    display: flex;
    flex-direction: column;
}

.modal-brand {
    font-family: var(--font-sub);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    color: var(--accent-gold);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-brand::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--accent-gold);
}

.modal-model {
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.modal-ref-code {
    font-family: monospace;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 22px;
    padding: 4px 10px;
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
    display: inline-block;
}

.modal-price-box {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08), rgba(197, 160, 89, 0.04));
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 8px;
    padding: 18px 22px;
    margin-bottom: 24px;
}

.modal-price-box .price-label {
    font-family: var(--font-sub);
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
}

.modal-price-value {
    font-family: var(--font-sub);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

/* Specs Table */
.modal-specs-box h5 {
    font-family: var(--font-sub);
    font-size: 10px;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
    border-left: 2px solid var(--accent-gold);
    padding-left: 10px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 26px;
}

.specs-table tr { border-bottom: 1px solid rgba(197, 160, 89, 0.05); }
.specs-table tr:last-child { border-bottom: none; }

.specs-table td {
    padding: 11px 0;
    font-size: 13px;
}

.specs-table .spec-label {
    color: var(--text-muted);
    width: 42%;
    font-family: var(--font-sub);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specs-table .spec-value {
    color: var(--text-primary);
    font-weight: 500;
}

.modal-status-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-status-badge.status-disponible { background-color: rgba(16, 185, 129, 0.12); color: var(--status-disponible); border: 1px solid rgba(16, 185, 129, 0.3); }
.modal-status-badge.status-apartado { background-color: rgba(245, 158, 11, 0.12); color: var(--status-apartado); border: 1px solid rgba(245, 158, 11, 0.3); }
.modal-status-badge.status-consignado { background-color: rgba(99, 102, 241, 0.12); color: var(--status-consignado); border: 1px solid rgba(99, 102, 241, 0.3); }
.modal-status-badge.status-vendido { background-color: rgba(239, 68, 68, 0.12); color: var(--status-vendido); border: 1px solid rgba(239, 68, 68, 0.3); }

.modal-action-box { margin-top: auto; }

.btn-action-wa {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-family: var(--font-sub);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all var(--transition-speed);
}

.btn-action-wa:hover {
    box-shadow: 0 0 24px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

.btn-action-wa i { width: 18px; height: 18px; }

.action-caption {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-top: 10px;
    text-align: center;
    line-height: 1.6;
}

/* ======================== */
/* ANIMATIONS               */
/* ======================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll Reveal base */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--transition-curve), transform 0.7s var(--transition-curve);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ======================== */
/* RESPONSIVE               */
/* ======================== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-logo-card { width: 260px; height: 260px; }
}

@media (max-width: 900px) {
    .modal-content-grid { grid-template-columns: 1fr; gap: 24px; }
    .modal-img-main-wrapper { height: 260px; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .hero-stats { flex-wrap: wrap; }
}

@media (max-width: 768px) {
    .header-container { padding: 10px 18px; }
    .store-nav { gap: 18px; }
    .hero-title { font-size: 30px; }
    .hero-subtitle { font-size: 14px; }
    .filters-row-main { flex-direction: column; align-items: stretch; }
    .sort-box-wrapper { justify-content: space-between; }
    .brand-tags-container { gap: 6px; }
    .brand-tag { padding: 5px 12px; font-size: 11px; }
    .whatsapp-float { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
    .logo-text { display: none; }
    .store-nav { gap: 12px; }
    .nav-link { font-size: 11px; }
    .admin-link span { display: none; }
    .admin-link { padding: 6px; }
    .hero-stats { display: none; }
    .modal-container { padding: 20px; }
}

/* ======================== */
/* PROMO PRICING STYLES     */
/* ======================== */
.card-price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 13px;
    margin-right: 8px;
    font-weight: 400;
}
.modal-price-container {
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.modal-price-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 17px;
    font-weight: 400;
}
.status-promocion {
    background-color: var(--accent-gold) !important;
    color: var(--bg-primary) !important;
    font-weight: 700 !important;
}

/* ======================== */
/* MODAL URGENCY BOX        */
/* ======================== */
.modal-urgency-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(197, 160, 89, 0.25);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.urgency-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-secondary);
    font-family: var(--font-sub);
}
.urgency-item.viewers-count {
    color: var(--text-primary);
    font-weight: 500;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}
.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #ef4444;
    animation: pulse-ring 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    top: 0;
    left: 0;
}
@keyframes pulse-ring {
    0% { transform: scale(0.95); opacity: 0.8; }
    100% { transform: scale(2.8); opacity: 0; }
}
.urgency-icon-alert {
    width: 14px;
    height: 14px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* ======================== */
/* LIVE ACTIVITY TOAST      */
/* ======================== */
.activity-toast-container {
    position: fixed;
    bottom: 108px;
    left: 32px;
    z-index: 1400;
    pointer-events: none;
}
.activity-toast {
    background: linear-gradient(135deg, rgba(17, 17, 24, 0.95), rgba(10, 10, 16, 0.95));
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 8px;
    padding: 14px 18px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 16px rgba(197, 160, 89, 0.05);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 380px;
    width: max-content;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s var(--transition-curve), opacity 0.5s ease;
    pointer-events: auto;
}
.activity-toast.show {
    transform: translateY(0);
    opacity: 1;
}
.activity-toast-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--accent-gold-light);
    border: 1px solid rgba(197, 160, 89, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    flex-shrink: 0;
}
.activity-toast-icon i {
    width: 16px;
    height: 16px;
}
.activity-toast-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.activity-toast-title {
    font-size: 11px;
    font-family: var(--font-sub);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-gold);
    font-weight: 700;
}
.activity-toast-body {
    font-size: 12.5px;
    color: var(--text-primary);
    line-height: 1.4;
    font-weight: 400;
}
.activity-toast-time {
    font-size: 10.5px;
    color: var(--text-muted);
    margin-top: 1px;
}

@media (max-width: 768px) {
    .activity-toast-container {
        left: 20px;
        bottom: 90px;
        right: 20px;
    }
    .activity-toast {
        max-width: 100%;
        width: auto;
    }
}

/* ======================== */
/* TOP PROMO BAR & TIMER    */
/* ======================== */
.promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, #05050a 0%, #151525 50%, #05050a 100%);
    border-bottom: 1.5px solid rgba(197, 160, 89, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    font-family: var(--font-sub);
    font-size: 12px;
    color: var(--text-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.promo-bar-content {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 16px;
}

.promo-bar-text {
    font-weight: 400;
    letter-spacing: 0.5px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 6px;
}

.timer-segment {
    background: rgba(197, 160, 89, 0.12);
    border: 1.2px solid rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    padding: 2px 6px;
    font-weight: 700;
    color: var(--accent-gold);
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    min-width: 32px;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.timer-segment strong {
    font-family: monospace;
    font-size: 12px;
    margin-right: 1px;
}

@media (max-width: 768px) {
    .promo-bar {
        height: auto;
        padding: 8px 10px;
    }
    .promo-bar-content {
        flex-direction: column;
        gap: 6px;
    }
    .promo-bar-text {
        font-size: 10.5px;
        text-align: center;
    }
    .store-header {
        top: 60px; /* shift header down further on mobile since promo bar wraps */
    }
    body {
        padding-top: 20px;
    }
}

/* ==================================================================== */
/* IPHONE & MOBILE RESPONSIVENESS OVERRIDES                             */
/* ==================================================================== */

/* Smooth Scroll Offset for Fixed Headers */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 130px;
    }
}
@media (min-width: 769px) {
    html {
        scroll-padding-top: 110px;
    }
}

/* Hero Carousel & Content Offsets on Mobile */
@media (max-width: 768px) {
    .carousel-control {
        display: none !important; /* Hide left/right arrows to prevent overlapping title text */
    }
    .carousel-dots {
        bottom: 70px; /* Position dots neatly above stats bar */
    }
    .hero-content {
        padding-top: 120px; /* Offset the fixed header stack height */
        padding-bottom: 40px;
    }
}
@media (max-width: 480px) {
    .carousel-dots {
        bottom: 24px; /* Position dots close to bottom since stats bar is hidden */
    }
    .hero-content {
        padding-top: 110px;
    }
}

/* Header & Navigation Spacing on Narrow Screens (iPhone) */
@media (max-width: 500px) {
    .header-container {
        padding: 10px 12px;
    }
    .store-nav {
        gap: 10px;
    }
    .nav-link {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    .currency-toggle-wrapper {
        gap: 4px;
    }
    .currency-toggle-wrapper .toggle-label {
        display: none; /* Hide "Moneda:" text to save horizontal space */
    }
    .currency-btn {
        padding: 3px 8px;
        font-size: 10px;
    }
    .logo-img {
        width: 36px;
        height: 36px;
    }
}

/* Horizontal-scrolling Brand Tags on Mobile (Native Feel) */
@media (max-width: 500px) {
    .brand-tags-container {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 8px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Hide default scrollbar (Firefox) */
        -ms-overflow-style: none; /* Hide default scrollbar (IE/Edge) */
    }
    .brand-tags-container::-webkit-scrollbar {
        display: none; /* Hide default scrollbar (Safari/Chrome) */
    }
    .brand-tag {
        flex: 0 0 auto;
        scroll-snap-align: start;
    }
}

/* Product & Info Grid Adjustments on Small Screens */
@media (max-width: 480px) {
    .store-grid {
        grid-template-columns: 1fr !important; /* Single column layout for perfect cards */
        gap: 20px;
    }
    .services-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    .catalog-section {
        padding: 48px 16px;
    }
    .about-section {
        padding: 48px 16px;
    }
}

/* Details Lightbox Modal Adjustments on Mobile */
@media (max-width: 480px) {
    .modal-container {
        padding: 24px 16px 20px 16px !important;
    }
    .modal-price-box {
        padding: 12px 16px;
        margin-bottom: 16px;
    }
    .modal-price-value {
        font-size: 22px;
    }
    .specs-table td {
        padding: 8px 0;
        font-size: 12px;
    }
    .modal-specs-box h5 {
        margin-bottom: 8px;
    }
    .modal-urgency-box {
        padding: 10px 12px;
        margin-bottom: 16px;
        gap: 8px;
    }
    .btn-action-wa {
        padding: 12px;
        font-size: 12.5px;
    }
    .modal-close-btn {
        top: 12px;
        right: 12px;
        padding: 6px;
    }
}


