/* ==========================================================================
   JADE GROUP - PREMIUM LIGHT THEME & GLOWING ATMOSPHERE (PRODUCTION STAGE)
   ========================================================================== */

/* Design System & Color Tokens (HSL Custom Light/Glass Palettes) */
:root {
    --jade-bg: #f3f7fd;
    --jade-bg-rgb: 243, 247, 253;
    
    /* Primary brand contrast colors */
    --jade-navy: #091338;
    --jade-navy-2: #101e56;
    --jade-blue: #1e1e76;
    
    /* Light Theme Accents */
    --jade-cyan: #0088cc;
    --jade-cyan-rgb: 0, 136, 204;
    --jade-neon: #0099ff;
    --jade-neon-glow: rgba(0, 153, 255, 0.25);
    
    --jade-orange: #f36f00;
    --jade-orange-rgb: 243, 111, 0;
    --jade-orange-glow: rgba(243, 111, 0, 0.25);
    
    --jade-wine: #962876;
    
    /* Technical interfaces (White Glassmorphism) */
    --jade-panel: rgba(255, 255, 255, 0.8);
    --jade-border: rgba(0, 136, 204, 0.15);
    --jade-border-hover: rgba(0, 136, 204, 0.45);
    --jade-text: #1e293b;
    --jade-muted: #64748b;
}

html {
    scroll-behavior: smooth;
}

/* Base resets & layout */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--jade-text);
    background: var(--jade-bg);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

/* 
   ==========================================================================
   ATMOSPHERIC GLOWING COLOURED SPHERES (Vibrant & Highly Appreciated)
   ========================================================================== 
*/
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background: 
        radial-gradient(circle at 10% 20%, rgba(30, 30, 230, 0.18), transparent 45rem),
        radial-gradient(circle at 85% 15%, rgba(0, 153, 255, 0.22), transparent 42rem),
        radial-gradient(circle at 45% 85%, rgba(243, 111, 0, 0.2), transparent 48rem),
        radial-gradient(circle at 80% 70%, rgba(150, 40, 118, 0.14), transparent 40rem);
    filter: blur(10px);
}

/* Tech Hexagonal Grid Overlay - Softly visible in Light Theme */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(0, 136, 204, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 136, 204, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.9;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6, 
.hero-title, .glow-text, .section-title, .font-outfit {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    color: var(--jade-navy);
}

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

.text-cyan {
    color: #0077b6 !important;
    text-shadow: 0 0 8px rgba(0, 119, 182, 0.15);
}

.text-orange {
    color: var(--jade-orange) !important;
    text-shadow: 0 0 8px rgba(243, 111, 0, 0.15);
}

/* White Glassmorphism Panel base */
.jade-panel, .jade-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 250, 253, 0.75) 100%);
    border: 1px solid var(--jade-border);
    border-radius: 24px;
    box-shadow: 
        0 20px 45px rgba(8, 20, 60, 0.06), 
        inset 0 0 20px rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.neon-frame {
    box-shadow: 
        0 15px 40px rgba(8, 20, 60, 0.05),
        0 0 25px rgba(0, 136, 204, 0.08),
        inset 0 0 25px rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 136, 204, 0.22);
}

/* ==========================================================================
   NAVIGATION BAR (PREMIUM LIGHT GLASS)
   ========================================================================== */
.jade-nav {
    background: rgba(255, 255, 255, 0.78) !important;
    border-bottom: 1.5px solid rgba(0, 136, 204, 0.16) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 30px rgba(8, 20, 60, 0.02);
}

.navbar-brand {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(8, 20, 60, 0.05);
}

.navbar-brand-text {
    font-weight: 800;
    color: var(--jade-navy);
    font-size: 1.25rem;
    line-height: 1;
}

.navbar-brand-sub {
    font-weight: 800;
    color: var(--jade-cyan) !important;
    font-size: 0.56rem !important;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 0.15rem;
    text-shadow: 0 0 8px rgba(0, 136, 204, 0.15);
}

.navbar-logo-img {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 3px 6px rgba(8, 20, 60, 0.06));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar-brand:hover .navbar-logo-img {
    transform: scale(1.08) rotate(3deg);
}

.nav-link {
    font-size: 0.92rem;
    font-weight: 700;
    color: #334155 !important;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--jade-cyan);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--jade-cyan) !important;
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Premium Shopping Cart Pill Button */
.nav-link-cart-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.08) 0%, rgba(0, 153, 255, 0.04) 100%);
    border: 1px solid rgba(0, 136, 204, 0.22);
    border-radius: 99px;
    padding: 0.45rem 1.1rem !important;
    color: var(--jade-navy) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 136, 204, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.nav-link-cart-pill i {
    font-size: 1rem;
    color: var(--jade-cyan);
    transition: transform 0.3s ease;
}

.cart-pill-badge {
    background: linear-gradient(135deg, var(--jade-orange) 0%, #ff8824 100%);
    color: #ffffff !important;
    border-radius: 8px;
    padding: 0.3rem 0.55rem !important;
    font-size: 0.72rem !important;
    font-weight: 800;
    box-shadow: 0 3px 8px rgba(243, 111, 0, 0.25);
    margin-left: 0.25rem;
}

.nav-link-cart-pill:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.12) 0%, rgba(0, 153, 255, 0.08) 100%);
    border-color: rgba(0, 136, 204, 0.45);
    box-shadow: 
        0 6px 15px rgba(0, 136, 204, 0.1),
        0 0 12px rgba(0, 136, 204, 0.08);
}

.nav-link-cart-pill:hover i {
    transform: scale(1.15) rotate(-3deg);
}

.nav-link-cart-pill:active {
    transform: translateY(0);
}

/* ── Login Pill (Guest) ── */
.nav-login-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, var(--jade-orange) 0%, #ff8824 100%);
    border: none;
    border-radius: 99px;
    padding: 0.45rem 1.1rem;
    color: #ffffff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(243, 111, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-login-pill i {
    font-size: 1.05rem;
}

.nav-login-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 111, 0, 0.4);
    color: #fff !important;
}

.nav-login-pill:active {
    transform: translateY(0);
}

/* ── Account Pill (Logged-in) ── */
.nav-account-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1) 0%, rgba(0, 153, 255, 0.06) 100%);
    border: 1px solid rgba(0, 136, 204, 0.28);
    border-radius: 99px;
    padding: 0.35rem 0.9rem 0.35rem 0.4rem;
    color: var(--jade-navy) !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-account-pill:hover,
.nav-account-pill.show {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.16) 0%, rgba(0, 153, 255, 0.1) 100%);
    border-color: rgba(0, 136, 204, 0.5);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.12);
}

/* Avatar circle inside the pill */
.nav-account-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--jade-navy) 0%, var(--jade-cyan) 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}

/* Remove bootstrap's default dropdown-toggle arrow */
.nav-account-pill.dropdown-toggle::after {
    display: none;
}

/* Mobile: full width pills */
@media (max-width: 991px) {
    .nav-login-pill,
    .nav-account-pill {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* Mobile dropdown adjustments */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 136, 204, 0.15);
        border-radius: 18px;
        padding: 1.25rem;
        margin-top: 0.75rem;
        box-shadow: 0 10px 30px rgba(8, 20, 60, 0.06);
    }
    
    .nav-link {
        padding: 0.6rem 0.5rem !important;
    }
    
    .nav-link::after {
        left: 0.5rem;
        right: 0.5rem;
    }
    
    .nav-link-cart-pill {
        margin-top: 0.5rem;
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   HERO SECTION (GLOWING SPHERES FOCAL BACKDROP)
   ========================================================================== */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.6) 0%, rgba(243, 247, 253, 0.4) 100%);
    border-bottom: 1px solid rgba(0, 136, 204, 0.08);
}

.hero-inner {
    position: relative;
    z-index: 5;
}

.eyebrow {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--jade-cyan);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 136, 204, 0.06);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    border: 1px solid rgba(0, 136, 204, 0.18);
}

.hero-title {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    font-size: clamp(2rem, 5.5vw, 4.2rem);
    line-height: 1.1;
    font-weight: 800;
    background: linear-gradient(to right, var(--jade-navy), var(--jade-navy-2) 60%, var(--jade-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero .lead {
    max-width: 680px;
    color: #475569;
    font-size: clamp(0.95rem, 2vw, 1.12rem);
    margin-bottom: 2rem;
}

/* Hero metric pills */
.hero-metrics .metric-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--jade-navy);
    border: 1px solid rgba(0, 136, 204, 0.2);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(8, 20, 60, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-metrics .metric-pill:hover {
    transform: translateY(-2px);
    border-color: var(--jade-cyan);
    box-shadow: 0 6px 16px rgba(0, 136, 204, 0.15);
}

.hero-metrics .metric-pill i {
    color: var(--jade-cyan);
}

/* ==========================================================================
   SMART SELECTOR WIZARD (Light Glass Stepper Track)
   ========================================================================== */
.selector-progress {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.progress-track {
    position: absolute;
    top: 22px;
    left: 10%;
    width: 80%;
    height: 6px;
    background: rgba(8, 20, 60, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    z-index: 1;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--jade-cyan), #00b0ff);
    box-shadow: 0 0 10px rgba(0, 136, 204, 0.35);
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.progress-steps {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
}

.progress-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.node-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 136, 204, 0.2);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    color: var(--jade-muted);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    box-shadow: 0 4px 10px rgba(8, 20, 60, 0.04);
}

.node-circle::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 136, 204, 0);
    opacity: 0;
    transition: all 0.4s ease;
}

.node-label {
    margin-top: 0.6rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--jade-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.4s ease;
    text-align: center;
}

/* Node active states */
.progress-node.active .node-circle {
    color: #ffffff;
    border-color: var(--jade-cyan);
    background: var(--jade-navy-2);
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.35);
}

.progress-node.active .node-circle::before {
    animation: rotate-dashed 8s linear infinite;
    border-color: rgba(0, 136, 204, 0.5);
    opacity: 1;
}

.progress-node.active .node-label {
    color: var(--jade-navy);
}

/* Node completed states */
.progress-node.completed .node-circle {
    color: #ffffff;
    border-color: var(--jade-cyan);
    background: var(--jade-cyan);
    box-shadow: 0 4px 10px rgba(0, 136, 204, 0.2);
}

.progress-node.completed .node-label {
    color: var(--jade-cyan);
}

/* ==========================================================================
   WIZARD STEPS & LIGHT CHOICE CARDS
   ========================================================================== */
.selector-steps-container {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.selector-step {
    opacity: 0;
    transform: translateY(15px) scale(0.99);
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.selector-step.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.selector-step.d-none {
    display: none !important;
}

/* Light Choice Cards (Step 1 Selection) */
.choice-card {
    width: 100%;
    min-height: 110px;
    border: 1px solid rgba(0, 136, 204, 0.18);
    border-radius: 20px;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--jade-navy);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 245, 255, 0.8) 100%);
    box-shadow: 0 10px 25px rgba(8, 20, 60, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.choice-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 136, 204, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.choice-card i {
    font-size: 1.9rem; /* Increased icon size for high visual impact */
    color: var(--jade-cyan);
    text-shadow: 0 0 8px rgba(0, 136, 204, 0.2);
    margin-bottom: 0.4rem;
    transition: transform 0.3s ease;
}

.choice-card span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.15rem;
    display: block;
}

.choice-card small {
    color: var(--jade-muted);
    font-size: 0.78rem;
    line-height: 1.3;
}

/* Hover effects choice cards */
.choice-card:hover {
    transform: translateY(-6px);
    border-color: var(--jade-border-hover);
    box-shadow: 
        0 15px 30px rgba(8, 20, 60, 0.08),
        0 0 20px rgba(0, 136, 204, 0.15);
    color: var(--jade-navy);
}

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

.choice-card:hover i {
    transform: scale(1.12) rotate(3deg);
}

/* ==========================================================================
   HOLOGRAPHIC SCANNER LOADER (LIGHT CLASS INTERFACE)
   ========================================================================== */
.holographic-scanner {
    position: relative;
    z-index: 5;
}

.scanner-hex-shield {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 136, 204, 0.3);
    box-shadow: 
        0 4px 20px rgba(8, 20, 60, 0.06),
        0 0 20px rgba(0, 136, 204, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.scanner-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 136, 204, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 136, 204, 0.06) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.7;
}

.scanner-laser {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--jade-cyan), transparent);
    box-shadow: 
        0 0 8px var(--jade-cyan),
        0 0 16px var(--jade-cyan);
    animation: laser-sweep 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    z-index: 3;
}

.scanner-core-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 4px rgba(0, 136, 204, 0.3));
    animation: pulse-core 1.5s ease-in-out infinite;
    z-index: 2;
}

.text-cyan-muted {
    color: #475569;
}

@keyframes rotate-dashed {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes laser-sweep {
    0%, 100% {
        top: 5%;
        opacity: 0.3;
    }
    50% {
        top: 90%;
        opacity: 1;
    }
}

@keyframes pulse-core {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

/* ==========================================================================
   FEEDBACK CHIPS & RESULTS
   ========================================================================== */
.selector-feedback-hint, .selector-feedback-result {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 136, 204, 0.18);
    border-radius: 14px;
    padding: 0.65rem 1.25rem !important;
    font-size: 0.88rem;
    color: var(--jade-muted);
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 15px rgba(8, 20, 60, 0.03);
}

.selector-feedback-result {
    border-color: rgba(0, 136, 204, 0.25);
    background: rgba(0, 136, 204, 0.05);
    color: var(--jade-navy);
}

/* ==========================================================================
   PRODUCT CATALOG & LIGHT GLASS CARDS (Square 1:1 Aspect ratio)
   ========================================================================== */
.product-card {
    border: 1px solid rgba(0, 136, 204, 0.16);
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 251, 255, 0.85) 100%) !important;
    box-shadow: 0 10px 30px rgba(8, 20, 60, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 136, 204, 0.45);
    box-shadow: 
        0 15px 35px rgba(8, 20, 60, 0.09),
        0 0 20px rgba(0, 136, 204, 0.1);
}

.product-thumb-frame {
    display: block;
    width: 100%;
    aspect-ratio: 9 / 16; /* 9:16 vertical aspect ratio on mobile vertical! */
    overflow: hidden;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(240, 248, 255, 0.7) 100%);
    position: relative;
    border-bottom: 1px solid rgba(0, 136, 204, 0.1);
    padding: 0;
}

.product-thumb-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Fill the vertical space beautifully */
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-thumb-frame img {
    transform: scale(1.06);
}

.product-card .card-body {
    padding: 1.1rem;
    background: transparent;
}

.product-card .card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    color: var(--jade-navy);
    height: 2.7em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--jade-orange);
    margin-bottom: 0.4rem;
}

.stock-badge {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.product-card .card-footer {
    background: rgba(240, 244, 252, 0.5);
    border-top: 1px solid rgba(0, 136, 204, 0.1);
    padding: 0.8rem 1.1rem 1.1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-card .card-footer .btn {
    flex: 1;
    min-width: 80px;
    padding: 0.45rem 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
}

/* ==========================================================================
   BUTTONS SYSTEM (PREMIUM STYLING)
   ========================================================================== */
.btn {
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: all 0.25s ease;
}

/* Vibrant Orange Button */
.btn-orange {
    background: linear-gradient(135deg, var(--jade-orange) 0%, #ff8824 100%);
    color: #ffffff !important;
    border: none;
    box-shadow: 0 4px 15px rgba(243, 111, 0, 0.3);
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 18px rgba(243, 111, 0, 0.45),
        0 0 10px rgba(243, 111, 0, 0.25);
    background: linear-gradient(135deg, #ff8824 0%, var(--jade-orange) 100%);
}

.btn-orange:active {
    transform: translateY(0);
}

.btn-orange:disabled {
    background: #cbd5e1;
    color: rgba(255, 255, 255, 0.55) !important;
    box-shadow: none;
    cursor: not-allowed;
}

/* Semi-transparent Tech Outline Button */
.btn-outline-navy {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 136, 204, 0.35);
    color: var(--jade-navy);
}

.btn-outline-navy:hover, 
.btn-outline-navy.active {
    background: rgba(0, 136, 204, 0.08);
    border-color: var(--jade-cyan);
    color: var(--jade-cyan);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.15);
    transform: translateY(-2px);
}

/* Green WhatsApp Button */
.btn-outline-success {
    border-color: rgba(37, 211, 102, 0.5);
    color: #0e6224;
    background: rgba(37, 211, 102, 0.04);
}

.btn-outline-success:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: #25d366;
    color: #0e6224;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

/* ==========================================================================
   FORMS & CRISP LIGHT INPUTS
   ========================================================================== */
.form-control, .form-select {
    background-color: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(0, 136, 204, 0.22) !important;
    color: var(--jade-text) !important;
    border-radius: 12px !important;
    padding: 0.7rem 1.1rem !important;
    transition: all 0.25s ease !important;
}

.form-control::placeholder {
    color: #94a3b8 !important;
}

.form-control:focus, .form-select:focus {
    background-color: #ffffff !important;
    border-color: var(--jade-cyan) !important;
    box-shadow: 0 0 12px rgba(0, 136, 204, 0.2) !important;
    color: var(--jade-navy) !important;
}

.form-label {
    color: var(--jade-navy) !important;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 0.45rem;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON & MISC EFFECTS
   ========================================================================== */
.btn-whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.6rem;
    background: linear-gradient(135deg, #128c7e, #25d366);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-whatsapp-float:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

.floating {
    animation: float-anim 4s ease-in-out infinite;
}

.reveal-up {
    animation: reveal-up-anim 0.6s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.pulse-slow {
    animation: pulse-slow-anim 2.5s infinite ease-in-out;
}

@keyframes float-anim {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes reveal-up-anim {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes pulse-slow-anim {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ==========================================================================
   REFINED FOOTER (LIGHT CLASS)
   ========================================================================== */
.footer {
    background: #040c2c; /* Deep, dark elegant navy for premium baseline grounding */
    color: #8ea8db; /* Readable soft tech blue-grey text */
    border-top: 2px solid rgba(0, 136, 204, 0.35);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.3);
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 136, 204, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-title {
    color: #ffffff; /* Solid white titles for excellent readability */
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    border-bottom: 2px solid rgba(0, 136, 204, 0.45);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #cbd5e1 !important; /* Soft grey description for high contrast */
}

.footer-links a {
    color: #8ea8db;
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #00e5ff; /* Pop glowing cyan on hover! */
    padding-left: 6px;
    text-shadow: 0 0 8px rgba(0, 229, 255, 0.55);
}

.footer-contact-item {
    text-decoration: none;
    color: #8ea8db;
    font-size: 0.88rem;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
}

a.footer-contact-item:hover {
    color: #00e5ff;
}

.bg-navy-light {
    background: rgba(0, 136, 204, 0.12);
}

.border-cyan-light {
    border-color: rgba(0, 136, 204, 0.3) !important;
}

.developer-credits-block {
    margin-top: 0.8rem;
}

.serviceweb-logo {
    filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.25));
    transition: all 0.3s ease;
}

.developer-logo-link:hover .serviceweb-logo {
    filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.65));
    transform: scale(1.05);
}

.social-icons-footer .btn-outline-navy {
    width: 36px;
    height: 36px;
    padding: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 0.9rem;
    border-color: rgba(0, 136, 204, 0.4);
    color: #dbeaff;
    background: rgba(0, 136, 204, 0.08);
}

.social-icons-footer .btn-outline-navy:hover {
    background: rgba(0, 229, 255, 0.15);
    border-color: #00e5ff;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.35);
}

/* ==========================================================================
   PAGE HEADER
   ========================================================================== */
.page-head {
    padding: 4.5rem 0 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(243, 247, 253, 0.8) 100%);
    border-bottom: 1px solid rgba(0, 136, 204, 0.15);
    position: relative;
}

.page-head::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--jade-cyan), transparent);
}

.page-head h1 {
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.6rem);
    background: linear-gradient(135deg, var(--jade-navy), var(--jade-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.page-head p {
    color: var(--jade-muted);
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* ==========================================================================
   MODAL DIALOG PREVIEW
   ========================================================================== */
.image-preview-modal-content {
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(0, 136, 204, 0.22) !important;
    box-shadow: 0 10px 40px rgba(8, 20, 60, 0.08) !important;
    border-radius: 24px !important;
    backdrop-filter: blur(20px);
}

.image-preview-full {
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   HERO LOGO BACKDROP GLOW
   ========================================================================== */
.logo-glow-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.85);
    padding: 1rem 2.2rem;
    border-radius: 24px;
    box-shadow: 
        0 12px 30px rgba(8, 20, 60, 0.08),
        0 0 20px rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.logo-glow-wrapper:hover {
    transform: scale(1.04) translateY(-2px);
    box-shadow: 
        0 15px 35px rgba(8, 20, 60, 0.12),
        0 0 25px rgba(0, 136, 204, 0.15);
}

.hero-logo {
    display: block;
    width: auto;
    max-height: 95px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(3, 8, 30, 0.08));
}

/* ==========================================================================
   MOBILE-FIRST RESPONSIVENESS
   ========================================================================== */

/* Very small screens: adjust spacing & card widths */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .choice-card {
        min-height: 100px;
        padding: 0.85rem 1.1rem;
    }
    
    .choice-card i {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
    }
    
    .choice-card span {
        font-size: 0.95rem;
    }
    
    .choice-card small {
        font-size: 0.72rem;
    }
    
    /* Product grid adjustments */
    .product-card .card-body {
        padding: 0.8rem;
    }
    
    .product-card .card-title {
        font-size: 0.82rem;
        height: 2.7em;
    }
    
    .product-card .price {
        font-size: 1rem;
    }
    
    .product-card .card-footer {
        padding: 0.6rem 0.8rem 0.8rem;
    }
}

/* Desktop and Tablets (min-width: 768px) */
@media (min-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 4.5rem 0;
    }
    
    .choice-card {
        min-height: 120px;
        padding: 1.2rem;
    }
    
    .choice-card i {
        font-size: 2.1rem;
        margin-bottom: 0.45rem;
    }
    
    .choice-card span {
        font-size: 1.2rem;
    }
    
    .choice-card small {
        font-size: 0.8rem;
    }
    
    .product-card .card-body {
        padding: 1.25rem;
    }
    
    .product-card .card-title {
        font-size: 1.05rem;
        height: auto;
        display: block;
        overflow: visible;
    }
    
    .product-card .price {
        font-size: 1.3rem;
    }
    
    .product-card .card-footer {
        padding: 1rem 1.25rem 1.25rem;
        gap: 0.6rem;
    }
    
    .product-card .card-footer .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
}

/* Compact mobile footer improvements */
@media (max-width: 767px) {
    .footer {
        padding-top: 1.5rem !important;
        padding-bottom: 1rem !important;
        margin-top: 2rem !important;
    }
    
    .footer .row.g-4 {
        --bs-gutter-y: 1.25rem !important;
    }
    
    .footer-desc {
        display: none !important; /* Hide long description to save space on mobile */
    }
    
    .footer-title {
        margin-bottom: 0.4rem !important;
        padding-bottom: 0.25rem !important;
        font-size: 0.85rem !important;
        border-bottom: 1.5px solid rgba(0, 136, 204, 0.2) !important;
    }
    
    .footer-brand-meta {
        margin-top: -0.25rem;
    }
    
    .footer-links li {
        margin-bottom: 0.3rem !important;
    }
    
    .footer-contact-item {
        font-size: 0.8rem !important;
    }
    
    /* Hide Enlaces (redundant quick links) on mobile to save vertical scrolling space */
    .footer .col-lg-2.col-md-6 {
        display: none !important;
    }
    
    /* Developer credit block and social icons layout compacting */
    .developer-credits-block {
        margin-top: 0.25rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer hr {
        margin: 0.75rem 0 !important;
        opacity: 0.1;
    }
    
    .copyright-text {
        font-size: 0.75rem !important;
        justify-content: center;
    }
    
.footer-bottom-links {
    margin-top: 0.4rem;
}
}

.smart-selector-anchor {
    display: block;
    position: relative;
    top: -8.5rem;
    visibility: hidden;
    pointer-events: none;
}

#smart-selector {
    scroll-margin-top: 2rem;
}

#smart-selector .jade-panel {
    scroll-margin-top: 2rem;
}

#smart-selector .selector-progress {
    padding-top: 0.35rem;
}

/* Glassmorphism light table styles */
.table {
    --bs-table-bg: transparent !important;
    --bs-table-color: var(--jade-text) !important;
    border-color: rgba(0, 136, 204, 0.12) !important;
}

.table th {
    font-family: 'Outfit', sans-serif;
    color: var(--jade-navy) !important;
    font-weight: 700;
    border-bottom: 2px solid rgba(0, 136, 204, 0.25) !important;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 1rem 0.75rem !important;
}

.table td {
    color: var(--jade-text) !important;
    padding: 1.1rem 0.75rem !important;
    font-weight: 500;
}

.table tr {
    border-bottom: 1px solid rgba(0, 136, 204, 0.08);
}

/* ==========================================================================
   SUB-OPTION CARDS (STEP 2 PREFERENCE SELECTION)
   ========================================================================== */
.sub-option-card {
    width: 100%;
    min-height: 96px;
    border: 1px solid rgba(0, 136, 204, 0.16);
    border-radius: 18px;
    padding: 0.9rem 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--jade-navy);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 250, 255, 0.88) 100%);
    box-shadow: 0 6px 18px rgba(8, 20, 60, 0.03);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    outline: none;
}

.sub-option-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 136, 204, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.sub-card-icon {
    font-size: 1.55rem;
    color: var(--jade-cyan);
    margin-bottom: 0.35rem;
    transition: transform 0.25s ease, color 0.25s ease;
    text-shadow: 0 0 6px rgba(0, 136, 204, 0.15);
}

.sub-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--jade-navy);
    transition: color 0.25s ease;
    display: block;
}

/* Hover state */
.sub-option-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 136, 204, 0.38);
    box-shadow: 
        0 10px 22px rgba(8, 20, 60, 0.06),
        0 0 15px rgba(0, 136, 204, 0.1);
    color: var(--jade-navy);
}

.sub-option-card:hover::before {
    opacity: 1;
}

.sub-option-card:hover .sub-card-icon {
    transform: scale(1.15) rotate(2deg);
    color: var(--jade-neon);
}

/* Active / Selected state */
.sub-option-card.active {
    background: linear-gradient(135deg, var(--jade-navy-2) 0%, var(--jade-navy) 100%) !important;
    border-color: var(--jade-cyan) !important;
    box-shadow: 
        0 8px 22px rgba(0, 136, 204, 0.22),
        inset 0 0 12px rgba(255, 255, 255, 0.1);
}

.sub-option-card.active .sub-card-title {
    color: #ffffff !important;
}

.sub-option-card.active .sub-card-icon {
    color: #00f0ff !important; /* Cyber neon cian */
    transform: scale(1.15);
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.65);
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
    .sub-option-card {
        min-height: 84px;
        padding: 0.7rem 0.5rem;
        border-radius: 14px;
    }
    
    .sub-card-icon {
        font-size: 1.35rem;
        margin-bottom: 0.25rem;
    }
    
    .sub-card-title {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   ROBUST ICON CENTERING UTILITIES (Wipes out inherited line-height offsets)
   ========================================================================== */
.place-items-center, 
.node-circle,
.scanner-hex-shield {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.place-items-center i, 
.node-circle i,
.scanner-hex-shield i {
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ==========================================================================
   TRANSPARENT BADGE TEXT CONTRAST OVERRIDES
   ========================================================================== */
.badge.text-navy {
    color: var(--jade-navy) !important;
}
.badge.text-cyan {
    color: #0077b6 !important;
}
.badge.text-orange {
    color: var(--jade-orange) !important;
}

/* ==========================================================================
   PRODUCT IMAGE INTERACTIVE PREVIEW & HOVER POPUPS
   ========================================================================== */
.product-preview-hover-wrapper {
    position: relative;
    display: inline-block;
}

.product-preview-hover-card {
    display: block !important;
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) scale(0.85);
    width: 130px;
    height: 130px;
    background: #ffffff;
    border: 1.5px solid rgba(0, 136, 204, 0.25) !important;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(9, 19, 56, 0.2) !important;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
}

.product-preview-hover-wrapper:hover .product-preview-hover-card {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* Ensure smooth pointer transitions on interactive triggers */
.product-image-trigger {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: block;
    outline: none;
    box-shadow: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}
.product-image-trigger:hover {
    transform: scale(1.05);
    opacity: 0.95;
}

/* ==========================================================================
   METADATA & MEDIOS DE PAGO MODERN PREMIUM SYSTEM
   ========================================================================== */
.jade-dropdown-menu .dropdown-item:hover {
    background: rgba(0, 136, 204, 0.15) !important;
    color: #00f0ff !important;
}

#comprobanteModal .modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 255, 0.98) 100%) !important;
    border: 1px solid rgba(0, 136, 204, 0.25) !important;
    box-shadow: 0 20px 50px rgba(9, 19, 56, 0.15), inset 0 0 15px rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
}

.payment-switch:checked {
    background-color: var(--jade-cyan) !important;
    border-color: var(--jade-cyan) !important;
    box-shadow: 0 0 8px rgba(0, 136, 204, 0.45) !important;
}

.btn-outline-cyan {
    color: var(--jade-cyan) !important;
    border-color: rgba(0, 136, 204, 0.4) !important;
    background: rgba(0, 136, 204, 0.02) !important;
    transition: all 0.25s ease;
}

.btn-outline-cyan:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--jade-cyan) 0%, #0099ff 100%) !important;
    border-color: transparent !important;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.25) !important;
    transform: translateY(-1px);
}

.btn-xs {
    padding: 0.25rem 0.65rem;
    font-size: 0.7rem;
    line-height: 1.25;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* ==========================================================================
   GASTRONOMIC PREMIUM HERO & MEDIA BACKDROP
   ========================================================================== */
.hero.gastronomic-hero {
    min-height: clamp(380px, 70vh, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    color: #ffffff;
    background: #03081e;
    border-bottom: 2px solid rgba(212, 175, 55, 0.35);
}

.hero-media-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg, .hero-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(9, 19, 56, 0.6) 0%, rgba(3, 8, 30, 0.88) 100%);
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.hero.gastronomic-hero .eyebrow {
    background: rgba(212, 175, 55, 0.12) !important;
    color: #ffdf7a !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
}

.hero.gastronomic-hero .hero-title {
    color: #ffffff !important;
    background: linear-gradient(to right, #ffffff, #fff2cc 50%, #ffdf7a) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
}

.hero.gastronomic-hero .lead {
    color: rgba(255, 255, 255, 0.88) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6) !important;
}

.hero.gastronomic-hero .metric-pill {
    background: rgba(16, 30, 86, 0.5) !important;
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    color: #ffdf7a !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.hero.gastronomic-hero .metric-pill i {
    color: #ffdf7a !important;
}

.hero.gastronomic-hero .metric-pill:hover {
    background: rgba(16, 30, 86, 0.75) !important;
    border-color: #ffdf7a !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3) !important;
    transform: translateY(-3px) !important;
}

/* ==========================================================================
   SEQUENTIAL BRANDS MARQUEE (CSS CONTINUOUS CAROUSEL)
   ========================================================================== */
.brands-marquee-wrapper {
    width: 100%;
    background: linear-gradient(90deg, #091338 0%, #101e56 100%);
    padding: 1.5rem 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

/* Gradient fades on the edges */
.brands-marquee-wrapper::before,
.brands-marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.brands-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #091338, transparent);
}
.brands-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #101e56, transparent);
}

.brands-marquee-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffdf7a;
    text-align: center;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-shadow: 0 0 8px rgba(255, 223, 122, 0.2);
}

.brands-jump-cta {
    position: absolute;
    top: 0.95rem;
    right: 1.25rem;
    z-index: 3;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffdf7a;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 223, 122, 0.34);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 24px rgba(3, 8, 30, 0.3);
    transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.brands-jump-cta i {
    position: relative;
    z-index: 2;
    font-size: 1.45rem;
    line-height: 1;
}

.brands-jump-cta:hover,
.brands-jump-cta:focus-visible {
    color: #ffffff;
    background: rgba(255, 223, 122, 0.16);
    box-shadow: 0 14px 28px rgba(255, 223, 122, 0.18);
    transform: translateY(2px) scale(1.06);
}

.brands-jump-cta:focus-visible {
    outline: 2px solid rgba(255, 223, 122, 0.65);
    outline-offset: 3px;
}

.brands-jump-pulse {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 50%;
    border: 1px solid rgba(255, 223, 122, 0.55);
    animation: brands-jump-pulse 1.8s ease-out infinite;
}

@keyframes brands-jump-pulse {
    0% {
        transform: scale(1);
        opacity: 0.85;
    }
    70% {
        transform: scale(1.5);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.brands-marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
}

.brands-marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: marquee 25s linear infinite;
    min-width: 100%;
}

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

.brand-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    transition: transform 0.3s ease;
}

.brand-logo-item img {
    max-height: 40px;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.55);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.brand-logo-item:hover img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.08);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Discreet footer link access styling */
.incognito-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    margin-left: 0.55rem;
    color: rgba(255, 255, 255, 0.52) !important;
    background: transparent;
    border: none;
    border-radius: 999px;
    opacity: 0.42;
    transition: opacity 0.3s ease, color 0.3s ease, transform 0.3s ease, background 0.3s ease;
    font-size: 1rem;
    vertical-align: middle;
    text-decoration: none;
    padding: 0;
}
.incognito-link:hover,
.incognito-link:focus-visible {
    opacity: 0.9 !important;
    color: #ffdf7a !important;
    background: rgba(255, 223, 122, 0.08);
    transform: scale(1.08);
}

.copyright-text {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.incognito-link:focus-visible {
    outline: 1px solid rgba(255, 223, 122, 0.45);
    outline-offset: 2px;
}

.footer-bottom-links a i {
    font-size: 0.85rem;
    opacity: 0.82;
}

/* Responsive tuning for marquee */
@media (max-width: 768px) {
    .brands-marquee-wrapper {
        padding: 1.1rem 0;
    }
    .brands-jump-cta {
        top: 0.7rem;
        right: 0.85rem;
        width: 42px;
        height: 42px;
    }
    .brands-jump-cta i {
        font-size: 1.2rem;
    }
    .brands-marquee-track {
        gap: 2.5rem;
    }
    .brand-logo-item {
        height: 36px;
    }
    .brand-logo-item img {
        max-height: 28px;
        max-width: 100px;
        filter: brightness(0) invert(1) opacity(0.75);
    }
}

/* ==========================================================================
   PHASE 2 MODULE REVITALIZATION
   ========================================================================== */
.catalog-toolbar {
    position: relative;
    overflow: hidden;
}

.catalog-search-shell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(0, 136, 204, 0.16);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.55);
}

.catalog-search-shell i {
    color: var(--jade-cyan);
    font-size: 1rem;
}

.catalog-search-input {
    border: 0;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

.catalog-pills {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.category-pill {
    border: 1px solid rgba(0, 136, 204, 0.16);
    background: rgba(255, 255, 255, 0.84);
    color: var(--jade-navy);
    border-radius: 999px;
    padding: 0.75rem 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.category-pill:hover,
.category-pill.active-pill {
    transform: translateY(-2px);
    border-color: rgba(0, 136, 204, 0.42);
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(243, 111, 0, 0.1));
    box-shadow: 0 8px 22px rgba(243, 111, 0, 0.12);
}

.premium-product-card:hover {
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2), 0 18px 35px rgba(8, 20, 60, 0.08);
}

.premium-product-card .product-thumb-frame {
    position: relative;
    overflow: hidden;
}

.premium-product-card img {
    transition: transform 0.38s ease;
}

.premium-product-card:hover img {
    transform: scale(1.05);
}

.product-chip {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 2;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-chip-premium {
    background: rgba(243, 111, 0, 0.14);
    color: #a24a00;
    border: 1px solid rgba(243, 111, 0, 0.2);
}

.product-chip-industrial {
    background: rgba(0, 136, 204, 0.12);
    color: #005f8f;
    border: 1px solid rgba(0, 136, 204, 0.18);
}

.product-card-copy {
    color: #475569;
    line-height: 1.45;
}

.glow-hogar {
    box-shadow: 0 18px 48px rgba(8, 20, 60, 0.05), 0 0 30px rgba(0, 136, 204, 0.22), inset 0 0 26px rgba(0, 136, 204, 0.06);
}

.glow-negocio {
    box-shadow: 0 18px 48px rgba(8, 20, 60, 0.05), 0 0 34px rgba(243, 111, 0, 0.22), inset 0 0 26px rgba(243, 111, 0, 0.05);
}

.contact-icon-shell {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(0, 136, 204, 0.06);
    border: 1px solid rgba(0, 136, 204, 0.16);
}

.contact-icon-shell i {
    font-size: 1.25rem;
}

.contact-icon-shell-warm {
    background: rgba(243, 111, 0, 0.06);
    border-color: rgba(243, 111, 0, 0.16);
}

.contact-icon-shell-dark {
    background: rgba(9, 19, 56, 0.05);
    border-color: rgba(9, 19, 56, 0.12);
}

.status-pulse-online {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background: #18c37e;
    box-shadow: 0 0 0 rgba(24, 195, 126, 0.55);
    animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(24, 195, 126, 0.48); }
    70% { box-shadow: 0 0 0 12px rgba(24, 195, 126, 0); }
    100% { box-shadow: 0 0 0 0 rgba(24, 195, 126, 0); }
}

.vip-calendar-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.vip-slot {
    border: 1px solid rgba(0, 136, 204, 0.14);
    background: rgba(255, 255, 255, 0.74);
    color: var(--jade-navy);
    border-radius: 16px;
    padding: 0.85rem 0.55rem;
    font-size: 0.8rem;
    font-weight: 700;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.vip-slot:hover,
.vip-slot.is-selected {
    transform: translateY(-2px);
    border-color: rgba(0, 136, 204, 0.45);
    box-shadow: 0 10px 22px rgba(0, 136, 204, 0.12);
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(255, 255, 255, 0.92));
}

.sticky-cart-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem calc(0.9rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(0, 136, 204, 0.14);
    backdrop-filter: blur(18px);
    box-shadow: 0 -8px 28px rgba(8, 20, 60, 0.08);
}

.sticky-cart-bar-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--jade-muted);
}

.sticky-cart-bar strong {
    color: var(--jade-navy);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
}

.sticky-cart-bar-cta {
    min-width: 170px;
}

.payment-dropzone {
    position: relative;
    border: 1.5px dashed rgba(0, 136, 204, 0.26);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(241, 247, 255, 0.86));
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.4rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.payment-dropzone.is-dragover {
    border-color: rgba(0, 136, 204, 0.48);
    box-shadow: 0 12px 26px rgba(0, 136, 204, 0.12);
    transform: translateY(-2px);
}

.payment-dropzone-input {
    position: absolute !important;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.payment-dropzone-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.55rem;
    color: var(--jade-navy);
}

.payment-dropzone-copy i {
    font-size: 2rem;
    color: var(--jade-cyan);
}

.payment-dropzone-copy span {
    color: var(--jade-muted);
    font-size: 0.85rem;
}

.payment-dropzone-preview {
    width: 100%;
}

.payment-preview-image {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    border-radius: 16px;
    border: 1px solid rgba(0, 136, 204, 0.14);
    margin-bottom: 0.85rem;
}

.payment-preview-file {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    justify-content: center;
}

.payment-preview-file i {
    font-size: 2rem;
    color: var(--jade-cyan);
}

.payment-preview-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    color: var(--jade-navy);
}

.payment-preview-meta span {
    color: var(--jade-muted);
    font-size: 0.82rem;
}

@media (max-width: 767px) {
    .vip-calendar-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body:has(.sticky-cart-bar) {
        padding-bottom: 96px;
    }
}

/* ==========================================================================
   KNOWLEDGE CENTER — PREMIUM MAGAZINE STYLE
   ========================================================================== */
.knowledge-featured-card {
    border: 1px solid rgba(0, 136, 204, 0.18);
    box-shadow: 0 20px 50px rgba(8, 20, 60, 0.07), inset 0 0 20px rgba(255, 255, 255, 0.6);
    transition: box-shadow 0.3s ease;
}

.knowledge-featured-card:hover {
    box-shadow: 0 25px 60px rgba(8, 20, 60, 0.1), 0 0 30px rgba(0, 136, 204, 0.12);
}

.knowledge-featured-media {
    border-radius: 24px 0 0 24px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 767px) {
    .knowledge-featured-media {
        border-radius: 24px 24px 0 0;
        min-height: 200px !important;
    }
}

.knowledge-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.knowledge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(8, 20, 60, 0.09), 0 0 20px rgba(0, 136, 204, 0.1);
    border-color: rgba(0, 136, 204, 0.35);
}

.knowledge-card-accent {
    height: 4px;
    width: 100%;
    border-radius: 0;
}

.knowledge-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.knowledge-read-time {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--jade-muted);
    display: flex;
    align-items: center;
}

.knowledge-summary {
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.5em;
}

/* ==========================================================================
   CATALOG — ADDITIONAL POLISH
   ========================================================================== */
.catalog-toolbar {
    border: 1px solid rgba(0, 136, 204, 0.14);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(245, 249, 255, 0.8));
}

/* ==========================================================================
   KITS — HOVER OVERLAY GLOW
   ========================================================================== */
.kit-glow-card {
    position: relative;
    overflow: hidden;
}

.kit-glow-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.06), transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    border-radius: inherit;
}

.kit-glow-card:hover::after {
    opacity: 1;
}

.kit-glow-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 45px rgba(8, 20, 60, 0.1),
        0 0 25px rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.3) !important;
}

/* ==========================================================================
   CONTACT — VIP CARD HOVER
   ========================================================================== */
.jade-card.contact-agent-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 40px rgba(8, 20, 60, 0.09),
        0 0 20px rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   MICRO-ANIMATIONS: PRODUCT CARD COUNT BADGE PULSE
   ========================================================================== */
@keyframes badge-pop {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.35); }
    100% { transform: scale(1); }
}

.badge-pop {
    animation: badge-pop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

/* ==========================================================================
   SCROLLBAR (WEBKIT) — PREMIUM SUBTLE STYLE
   ========================================================================== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 136, 204, 0.04);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 136, 204, 0.25);
    border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 136, 204, 0.5);
}

/* ==========================================================================
   TOAST NOTIFICATIONS — UPGRADE
   ========================================================================== */
.jade-toast {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    z-index: 1090;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 136, 204, 0.25);
    box-shadow: 0 12px 35px rgba(8, 20, 60, 0.1), 0 0 20px rgba(0, 136, 204, 0.12);
    backdrop-filter: blur(12px);
    color: var(--jade-navy);
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    opacity: 0;
    animation: toast-in 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    pointer-events: none;
    white-space: nowrap;
}

.jade-toast i {
    color: var(--jade-cyan);
    font-size: 1.1rem;
}

@keyframes toast-in {
    0%   { opacity: 0; transform: translateX(-50%) translateY(-12px); }
    15%  { opacity: 1; transform: translateX(-50%) translateY(0); }
    75%  { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-8px); }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE — PREMIUM QUEEN LAYOUT
   ========================================================================== */

/* ── Back-to-catalog link ── */
.product-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--jade-navy);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 136, 204, 0.2);
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(8, 20, 60, 0.04);
    backdrop-filter: blur(8px);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-back-link i {
    font-size: 1.15rem;
    color: var(--jade-cyan);
    transition: transform 0.25s ease;
}

.product-back-link:hover {
    color: var(--jade-cyan);
    border-color: rgba(0, 136, 204, 0.45);
    box-shadow: 0 6px 18px rgba(0, 136, 204, 0.15);
    transform: translateX(-2px);
}

.product-back-link:hover i {
    transform: translateX(-3px);
}

/* ── Image frame: 9:16 portrait ── */
.product-detail-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0%, rgba(240, 247, 255, 0.75) 100%);
    border: 1px solid rgba(0, 136, 204, 0.16);
    box-shadow:
        0 24px 56px rgba(8, 20, 60, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

.product-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease;
}

.product-detail-img-wrap:hover .product-detail-img {
    transform: scale(1.04);
}

/* Badge — top left */
.product-detail-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
}

/* Stock dot — top right */
.product-detail-stock-dot {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-detail-stock-dot.in-stock {
    background: #18c37e;
    animation: pulse-green 1.8s infinite;
}

.product-detail-stock-dot.out-stock {
    background: #ef4444;
}

/* Zoom hint */
.product-detail-zoom-hint {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: rgba(9, 19, 56, 0.55);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-detail-img-wrap:hover .product-detail-zoom-hint {
    opacity: 1;
}

/* ── Right panel ── */
.product-detail-panel {
    position: sticky;
    top: 80px; /* offset for fixed navbar */
}

.product-detail-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--jade-navy), var(--jade-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-detail-short-desc {
    color: #475569;
    font-size: 1rem;
    line-height: 1.65;
}

/* ── Price block ── */
.product-detail-price-block {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(243, 111, 0, 0.06), rgba(255, 136, 36, 0.04));
    border: 1px solid rgba(243, 111, 0, 0.15);
    border-radius: 18px;
}

.product-detail-price-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--jade-muted);
}

.product-detail-price {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--jade-orange);
    line-height: 1;
    letter-spacing: -0.02em;
}

/* ── Stock badge ── */
.product-detail-stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.15rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.88rem;
}

.product-detail-stock-badge.stock-ok {
    background: rgba(24, 195, 126, 0.1);
    color: #0e6f4a;
    border: 1px solid rgba(24, 195, 126, 0.25);
}

.product-detail-stock-badge.stock-no {
    background: rgba(239, 68, 68, 0.08);
    color: #b91c1c;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.product-detail-stock-badge i {
    font-size: 1rem;
}

/* ── Description section ── */
.product-detail-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--jade-muted);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 136, 204, 0.1);
}

.product-detail-description {
    color: var(--jade-text);
    font-size: 0.94rem;
    line-height: 1.7;
}

/* ── Trust badges ── */
.product-trust-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0, 136, 204, 0.1);
}

.product-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--jade-muted);
}

.product-trust-item i {
    font-size: 1rem;
    color: var(--jade-cyan);
}

/* ── Responsive: desktop image max-width ── */
@media (min-width: 768px) {
    .product-detail-img-wrap {
        max-width: 360px;
        margin: 0 auto;
    }

    .product-detail-zoom-hint {
        display: none; /* only on mobile (touch) */
    }
}

@media (max-width: 767px) {
    .product-detail-img-wrap {
        aspect-ratio: 9 / 16;
        max-width: 280px;
        margin: 0 auto;
    }

    .product-detail-title {
        font-size: 1.6rem;
    }

    .product-trust-row {
        gap: 1rem;
    }

    .product-detail-panel {
        position: static; /* disable sticky on mobile */
    }
}

/* ==========================================================================
   AUTH SYSTEM — FORMS, INPUTS, ALERTS, PAGES
   ========================================================================== */

.auth-page-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Icon circle */
.auth-icon-circle {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(0, 136, 204, 0.08);
    border: 1px solid rgba(0, 136, 204, 0.2);
    font-size: 2rem;
}

/* Styled input with left icon */
.auth-input-group {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.auth-input-group > i:first-child {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    z-index: 4;
    color: var(--jade-cyan);
    font-size: 0.95rem;
    pointer-events: none;
}

.auth-input-group .form-control,
.auth-input-group .auth-input-control {
    padding-left: 3rem !important;
    padding-right: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 136, 204, 0.2);
    color: var(--jade-navy);
    font-weight: 500;
    min-height: 48px;
    line-height: 1.25;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-input-group .form-control:focus,
.auth-input-group .auth-input-control:focus {
    border-color: var(--jade-cyan);
    box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.12);
    background: #fff;
}

.auth-input-group .auth-input-control-password {
    padding-right: 3rem !important;
}

/* Eye toggle button */
.auth-eye-btn {
    position: absolute;
    right: 0.75rem;
    z-index: 5;
    background: none;
    border: none;
    color: var(--jade-muted);
    padding: 0.25rem;
    cursor: pointer;
    transition: color 0.2s;
}

.auth-eye-btn:hover {
    color: var(--jade-cyan);
}

.input-group {
    align-items: stretch;
}

.input-group .input-group-text {
    min-width: 3rem;
    justify-content: center;
    color: var(--jade-cyan);
    background: rgba(255, 255, 255, 0.92) !important;
    padding-inline: 0.85rem;
    flex: 0 0 auto;
}

.input-group > .form-control,
.input-group > .form-select {
    min-height: 48px;
    padding-left: 0.95rem;
    padding-right: 1rem;
    background: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.input-group > .form-control::placeholder,
.input-group > .form-select,
.auth-input-group .form-control::placeholder,
.auth-input-group .auth-input-control::placeholder {
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.72;
}

.input-group > .form-select {
    background-position: right 0.9rem center;
    padding-right: 2.35rem;
}

.input-group textarea.form-control {
    padding-left: 1rem;
    padding-right: 1rem;
}

.auth-policies-box a i,
.footer-bottom-links a i {
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .smart-selector-anchor {
        top: -10.5rem;
    }

    #smart-selector {
        scroll-margin-top: 1rem;
    }

    #smart-selector .jade-panel {
        scroll-margin-top: 1rem;
    }

    .input-group .input-group-text {
        min-width: 2.85rem;
    }
}

/* Alerts */
.auth-alert {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.87rem;
    font-weight: 600;
}

.auth-alert-danger {
    background: rgba(220, 53, 69, 0.07);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.auth-alert-success {
    background: rgba(24, 195, 126, 0.07);
    color: #0e6f4a;
    border: 1px solid rgba(24, 195, 126, 0.2);
}

/* Policies checkbox */
.auth-policies-box {
    background: rgba(0, 136, 204, 0.03);
    border: 1px solid rgba(0, 136, 204, 0.12);
    border-radius: 12px;
    padding: 1rem;
}

.auth-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--jade-cyan);
    cursor: pointer;
    flex-shrink: 0;
}

/* Password strength bar */
.pass-bar-track {
    height: 5px;
    border-radius: 99px;
    background: rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 4px;
}

.pass-bar-fill {
    height: 100%;
    border-radius: 99px;
    transition: width 0.3s ease, background 0.3s ease;
}

/* ==========================================================================
   PROFILE PAGE
   ========================================================================== */

/* Avatar initials circle */
.profile-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--jade-navy), var(--jade-cyan));
    color: #fff;
    display: grid;
    place-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.25);
}

/* Order card */
.order-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 136, 204, 0.12);
    border-radius: 18px;
    padding: 1.25rem;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.order-card:hover {
    box-shadow: 0 8px 24px rgba(8, 20, 60, 0.07);
    border-color: rgba(0, 136, 204, 0.25);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Progress stepper */
.order-progress {
    display: flex;
    align-items: center;
    gap: 0;
}

.order-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}

.order-step-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(0, 0, 0, 0.1);
    display: grid;
    place-items: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--jade-muted);
    transition: all 0.3s ease;
}

.order-step.done .order-step-dot {
    background: rgba(0, 136, 204, 0.12);
    border-color: var(--jade-cyan);
    color: var(--jade-cyan);
}

.order-step.current .order-step-dot {
    background: var(--jade-cyan);
    border-color: var(--jade-cyan);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 136, 204, 0.2);
}

.order-step span {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--jade-muted);
    white-space: nowrap;
}

.order-step-line {
    flex: 1;
    height: 2px;
    background: rgba(0, 0, 0, 0.08);
    margin-bottom: 1.4rem;
    transition: background 0.3s ease;
}

.order-step-line.done {
    background: var(--jade-cyan);
}

/* ==========================================================================
   ORDER TRACKER (home page widget)
   ========================================================================== */

.order-tracker-shell {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 136, 204, 0.15);
    border-radius: 18px;
    padding: 1.25rem;
    backdrop-filter: blur(8px);
}

.order-tracker-shell .auth-input-group > i:first-child {
    left: 1rem;
}

.order-tracker-shell #tracker-input {
    padding-left: 3.15rem !important;
}

/* ==========================================================================
   REGISTER INVITE CARD
   ========================================================================== */

.register-invite-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 249, 255, 0.85));
    border: 1px solid rgba(0, 136, 204, 0.18);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(8, 20, 60, 0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.register-invite-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0, 136, 204, 0.08);
    border: 1px solid rgba(0, 136, 204, 0.2);
    font-size: 1.4rem;
    color: var(--jade-cyan);
    flex-shrink: 0;
}

.register-invite-body {
    flex: 1;
    min-width: 200px;
}

.register-invite-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .register-invite-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
    }
    .register-invite-actions {
        width: 100%;
        justify-content: center;
    }
}

/* ── Custom 9:16 Aspect Ratio Preview Modal ── */
#imagePreviewModal .modal-dialog {
    max-width: 420px; /* Ancho máximo para mantener formato vertical */
    margin-left: auto;
    margin-right: auto;
}

#imagePreviewModal .image-preview-full {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(0, 136, 204, 0.15);
}
