/* ================================================================
   FRONTEND.CSS — Premium Print Industry E-Commerce Design System
   ================================================================ */

:root {
    /* Brand Colors */
    --primary:          #1A1A1A;
    --primary-mid:      #2A2A2A;
    --accent:           #AF2926;
    --accent-hover:     #8a201e;
    --accent-light:     rgba(175, 41, 38, 0.12);

    /* Neutral Scale */
    --bg-white:   #FFFFFF;
    --bg-surface: #F5F5F5;
    --bg-card:    #FDFCFB;
    --text-dark:  #1A1A1A;
    --text-body:  #4b5563;
    --text-muted: #9ca3af;
    --border:     #e5e7eb;
    --border-sub: #f3f4f6;

    /* Status colors */
    --green:  #10b981;
    --blue:   #0077ff;
    --amber:  #f59e0b;
    --purple: #8b5cf6;
    --cyan:   #06b6d4;

    /* Spacing */
    --section-py: 90px;

    /* Radius */
    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  20px;
    --radius-xl:  28px;

    /* Shadows */
    --shadow-xs: 0 1px 3px rgba(0,0,0,.05);
    --shadow-sm: 0 4px 16px rgba(0,0,0,.07);
    --shadow-md: 0 8px 32px rgba(0,0,0,.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,.15);
    --shadow-accent: 0 4px 12px rgba(175, 41, 38, 0.25);

    /* Typography */
    --font-heading: 'Inter', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, sans-serif;
}

@media (max-width: 767px) {
    :root {
        --section-py: 60px;
    }
    h1 { font-size: 2.2rem !important; }
    h2 { font-size: 1.8rem !important; }
    h3 { font-size: 1.5rem !important; }
}


/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}


h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    /* Fluid Typography for Mobile-First */
    letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2.25rem); }
h4 { font-size: 1.25rem; }

img { max-width: 100%; }

a { text-decoration: none; }

.section-py      { padding: var(--section-py) 0; }
.bg-surface      { background: var(--bg-surface); }
.bg-white        { background: var(--bg-white); }
.bg-dark-gradient{ background: linear-gradient(135deg, var(--primary) 0%, #0f172a 100%); }

.min-vh-90 { min-height: 90vh; }

/* ── Typography Components ── */
.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.eyebrow-light { color: rgba(233,69,96,.9); }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-light .section-title { color: #fff; }

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-gradient-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #d93d39 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Utility Buttons ── */
.btn-link-arrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color .25s;
}
.btn-link-arrow:hover { color: var(--accent); }

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--bg-white);
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(175, 41, 38, 0.25);
}
.btn-cta-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(175, 41, 38, 0.4);
    color: var(--bg-white);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 600;
    border-radius: 30px;
    transition: all .3s;
}
.btn-cta-outline:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

/* ================================================================
   HERO BACKGROUND — Moubdi3oun Cinematic
   ================================================================ */
.hero-v3 {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -1;
}


.hero-overlay-dark {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: -1;
}

.hero-v3-content {
    max-width: 850px;
    padding: 0 1.5rem;
    text-align: center;
    color: #fff;
    z-index: 10;
}

.hero-v3 h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    animation: fadeInUp 1.2s forwards;
}

.hero-v3 p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1.2s forwards 0.3s;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   SHOP HERO & FILTERS
   ================================================================ */
.shop-hero {
    background: var(--text-dark);
    padding: 100px 0 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.shop-hero-backdrop {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: linear-gradient(rgba(26,26,26,0.8), rgba(26,26,26,1)),
                url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.shop-hero-content { position: relative; z-index: 2; }

.shop-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

.shop-breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.shop-breadcrumb a { color: rgba(0, 0, 0, 1); text-decoration: none; transition: 0.3s; }
.shop-breadcrumb a:hover { color: var(--accent); }

.shop-filter-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
}

.shop-filter-title {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shop-cat-link {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: 0.3s;
}

.shop-cat-link:hover, .shop-cat-link.active { color: var(--accent); padding-left: 5px; }

/* ==========================================================================
   SHOPIFY ELITE UPGRADE
   ========================================================================== */

/* 1. ANNOUNCEMENT BAR (MARQUEE) */
.announcement-bar {
    background: var(--text-dark);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    height: 38px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 1060;
}

.promo-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.promo-item {
    padding: 0 4rem;
    display: inline-block;
}

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

/* 2. MEGA MENU */
.has-megamenu {
    position: static !important;
}

/* Offcanvas Reset */
.offcanvas {
    max-width: 100% !important;
}
@media (min-width: 576px) {
    .offcanvas-end { width: 450px !important; }
}

.megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
    padding: 3rem 0;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-title {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    display: block;
}

.megamenu-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.megamenu-link:hover {
    color: var(--accent);
}

.megamenu-featured-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
}

.megamenu-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.megamenu-featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: #fff;
}

/* 3. MOBILE FLOATING DOCK — REMOVED */

@media (max-width: 991px) {
    .megamenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 1rem 1.5rem;
        display: none;
        border: none;
        background: var(--bg-surface);
        border-radius: 15px;
        margin-top: 10px;
    }

    .has-megamenu.active .megamenu {
        display: block;
    }

    .megamenu .container { padding: 0; }
    .megamenu .col-lg-3 { margin-bottom: 1.5rem !important; }
}




/* 4. SEARCH OVERLAY */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-input-full {
    font-size: 3rem;
    border: none;
    border-bottom: 2px solid var(--text-dark);
    background: transparent;
    text-align: center;
    width: 80%;
    max-width: 800px;
    outline: none;
    font-weight: 700;
    padding: 1rem 0;
}

/* 5. NEWSLETTER POPUP (SHOPIFY STYLE) */
.modal-newsletter {
    border-radius: 0 !important;
    border: none !important;
    overflow: hidden;
}

.newsletter-img {
    background: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&q=80') center center;
    background-size: cover;
    min-height: 400px;
}

/* MISC REFINEMENTS */
.badge-new {
    background: var(--accent);
    color: #fff;
    text-transform: uppercase;
    font-size: 0.6rem;
    letter-spacing: 1px;
    padding: 0.25rem 0.5rem;
    border-radius: 2px;
}

.lookbook-pin {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: pulse-pin 2s infinite;
}

/* ==========================================================================
   CREATIVE PORTFOLIO (MASONRY & MOTION)
   ========================================================================== */

.portfolio-grid {
    margin: 0 -15px;
}

.portfolio-item {
    padding: 15px;
    width: 33.333%;
}

@media (max-width: 991px) {
    .portfolio-item { width: 50%; }
}

@media (max-width: 767px) {
    .portfolio-item { width: 100%; }
}

/* Editorial Sizing (Masonry) */
.portfolio-item.tall { height: 600px; }
.portfolio-item.wide { width: 66.666%; }

.portfolio-card-v3 {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 450px;
    background: #f8f8f8;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.portfolio-overlay-v3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-card-v3:hover .portfolio-overlay-v3 {
    opacity: 1;
}

.portfolio-title-reveal {
    overflow: hidden;
}

.portfolio-title-reveal h4 {
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card-v3:hover .portfolio-title-reveal h4 {
    transform: translateY(0);
}

/* Filter Buttons */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: none;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    padding: 0.5rem 1rem;
    position: relative;
    transition: color 0.3s;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.filter-btn.active {
    color: var(--text-dark);
}

.filter-btn.active::after {
    width: 100%;
}

/* ================================================================
   REFINED PRODUCT CARD (pcard)
   ================================================================ */
.pcard {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pcard:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pcard-img {
    height: 320px;
    position: relative;
    overflow: hidden;
}

.pcard-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.pcard-badge {
    position: absolute;
    top: 15px; left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 5;
}

.pcard-badge--new { background: var(--accent); color: #fff; }
.pcard-badge--sale { background: #000; color: #fff; }
.pcard-badge--oos { background: #666; color: #fff; }

.pcard-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.pcard-cat {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.pcard-name {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height:1.3;
}
.pcard-name a { color: var(--text-dark); text-decoration: none; transition: 0.3s; }
.pcard-name a:hover { color: var(--accent); }

.pcard-price {
    font-size: 1.25rem;
    font-weight: 900;
    margin-top: auto;
}

.pcard-price-old {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: #999;
    margin-left: 8px;
}

/* ================================================================
   PDP (Product Detail Page)
   ================================================================ */
.pdp-spec-table { width: 100%; margin-top: 2rem; }
.pdp-spec-table tr { border-bottom: 1px solid rgba(0,0,0,0.05); }
.pdp-spec-table td { padding: 12px 0; font-size: 0.9rem; }
.pdp-spec-table td:first-child { font-weight: 800; width: 40%; color: var(--text-dark); text-transform: uppercase; letter-spacing: 1px; }

.variant-option {
    cursor: pointer;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: 0.3s;
}

.variant-option.active { border-color: var(--accent); background: var(--accent); color: #fff; }
.variant-option:hover:not(.active) { border-color: #ccc; }

.qty-selector {
    display: flex;
    align-items: center;
    border: 2px solid #eee;
    border-radius: 30px;
    padding: 5px;
    background: #fff;
}

.qty-btn {
    width: 35px; height: 35px;
    border-radius: 50%;
    background: #f8f8f8;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.qty-btn:hover { background: #eee; }

/* ================================================================
   ZIG-ZAG DEPARTMENTS
   ================================================================ */
.dept-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 80px;
}

.dept-row:nth-child(even) { flex-direction: row-reverse; }

.dept-media-box {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-lg);
}

.dept-media-box img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dept-row:hover .dept-media-box img { transform: scale(1.05); }

.dept-content-box {
    flex: 1;
    padding: 2rem;
}

.dept-pulse-icon {
    width: 70px; height: 70px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(175, 41, 38, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(175, 41, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(175, 41, 38, 0); }
}

/* ================================================================
   VERTICAL TIMELINE
   ================================================================ */
.timeline-track {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent) 15%, var(--accent) 85%, transparent);
    transform: translateX(-50%);
    opacity: 0.3;
}

.timeline-step {
    display: flex;
    margin-bottom: 100px;
    position: relative;
    align-items: center;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-card {
    width: 42%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    background: #fff;
    border-color: var(--accent);
}

.timeline-step:nth-child(odd) .step-card { margin-right: auto; text-align: right; }
.timeline-step:nth-child(even) .step-card { margin-left: auto; text-align: left; }

.step-marker {
    position: absolute;
    left: 50%; top: 50%;
    width: 80px; height: 80px;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
    letter-spacing: 1px;
}

.step-icon-inner {
    width: 100%;
    height: 100%;
    background: #fff;
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--accent);
    transition: all 0.4s;
}

.timeline-step:hover .step-icon-inner {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1) rotate(10deg);
}


/* ================================================================
   PORTFOLIO OVERLAYS
   ================================================================ */
.portfolio-card {
    border-radius: var(--radius-lg);
    height: 380px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

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

.portfolio-mask {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(26,26,26,0.95));
    padding: 2.5rem 1.5rem;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-mask { transform: translateY(0); }
.portfolio-card:hover img { transform: scale(1.1); }

@media (max-width: 991px) {
    .dept-row, .dept-row:nth-child(even) { flex-direction: column; gap: 2rem; margin-bottom: 60px; }
    .timeline-track::before { left: 25px; }
    .timeline-step .step-card { width: calc(100% - 70px); margin-left: 70px !important; text-align: left !important; padding: 25px; }
    .step-marker { left: 25px; width: 60px; height: 60px; }
    .step-icon-inner { font-size: 1.2rem; }
    .step-number { top: -10px; font-size: 0.6rem; }
}



.hero-trust-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    padding: 6px 14px;
    border-radius: 20px;
}
.trust-pill i { color: var(--green); }

/* Hero image stack */
.hero-image-stack {
    position: relative;
    max-width: 560px;
    margin: 40px 0;
}

.hero-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.hero-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* Floating spec cards */
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    animation: float-card 4s ease-in-out infinite;
}
.hero-float-top    { top: 30px; left: -30px; animation-delay: 0s; }
.hero-float-bottom { bottom: 40px; right: -28px; animation-delay: -2s; }

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

.float-label  { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.float-value  { font-size: 1.05rem; font-weight: 800; color: var(--text-dark); }

.float-icon-wrap {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}
.float-icon-green { background: rgba(16,185,129,.12); color: var(--green); }

.hero-float-badge {
    position: absolute;
    top: -16px; right: 24px;
    background: var(--accent);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 6px 20px rgba(233,69,96,.4);
    letter-spacing: .3px;
}

/* Hero wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0; right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }

/* ================================================================
   METRICS STRIP
   ================================================================ */
.metrics-strip {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
}

.metrics-row { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }

.metric-item {
    padding: 32px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
    transition: background .3s;
}
.metric-item:hover { background: var(--bg-surface); }

.metric-icon {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 10px;
    opacity: .8;
}

.metric-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
}
.metric-number span { font-size: 1.2rem; color: var(--accent); }

.metric-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .8px;
}

/* ================================================================
   CATEGORY CARDS V2
   ================================================================ */
.cat-card-v2 {
    display: block;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
}
.cat-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.cat-card-img { aspect-ratio: 9/10; overflow: hidden; position: relative; }
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat-card-v2:hover .cat-card-img img { transform: scale(1.08); }

.cat-icon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: transform .5s ease;
}
.cat-card-v2:hover .cat-icon-placeholder { transform: scale(1.1); }

.cat-icon-0 { background: rgba(233,69,96,.1); color: var(--accent); }
.cat-icon-1 { background: rgba(0,119,255,.1); color: var(--blue); }
.cat-icon-2 { background: rgba(245,158,11,.1); color: var(--amber); }
.cat-icon-3 { background: rgba(16,185,129,.1); color: var(--green); }

.cat-card-body {
    padding: 20px 20px 20px;
    position: relative;
}
.cat-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    transition: color .3s;
}
.cat-card-v2:hover .cat-card-name { color: var(--accent); }
.cat-card-count {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.cat-card-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) translateX(-6px);
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    opacity: 0;
    transition: all .3s;
}
.cat-card-v2:hover .cat-card-arrow { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ================================================================
   PRODUCT CARDS V2
   ================================================================ */
.product-card-v2 {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-sub);
    box-shadow: var(--shadow-xs);
    transition: all .4s cubic-bezier(.4,0,.2,1);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.product-v2-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--bg-surface);
    overflow: hidden;
}
.product-v2-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.product-card-v2:hover .product-v2-image img { transform: scale(1.06); }

.product-v2-badges {
    position: absolute;
    top: 12px; left: 12px;
    display: flex; flex-direction: column; gap: 6px;
}

.badge-v2 {
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.badge-new  { background: var(--text-dark); color: #fff; }
.badge-sale { background: var(--accent);    color: #fff; }

/* Overlay CTA */
.product-v2-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17,24,39,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity .3s;
    backdrop-filter: blur(3px);
}
.product-card-v2:hover .product-v2-overlay { opacity: 1; }

.btn-overlay {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    background: var(--accent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all .2s;
}
.btn-overlay:hover { background: var(--accent-hover); transform: scale(1.04); }
.btn-overlay-disabled { background: rgba(255,255,255,.25); cursor: not-allowed; color: rgba(255,255,255,.8); }

.btn-overlay-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    color: var(--text-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem;
    transition: all .2s;
}
.btn-overlay-icon:hover { background: #fff; color: var(--accent); transform: scale(1.08); }

.product-v2-body {
    padding: 18px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-v2-cat {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
    display: block;
}
.product-v2-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color .3s;
}
.product-card-v2:hover .product-v2-name { color: var(--accent); }

.product-v2-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}
.stars-row { color: #fbbf24; font-size: 0.8rem; }
.reviews-count { font-size: 0.75rem; color: var(--text-muted); }

.product-v2-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}
.price-sale { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); }
.price-old  { font-size: 0.9rem; color: var(--text-muted); text-decoration: line-through; }

.out-of-stock-label {
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 500;
}

/* ================================================================
   APPLICATIONS SECTION
   ================================================================ */
.app-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    height: 100%;
    transition: all .35s;
    backdrop-filter: blur(4px);
}
.app-card:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(233,69,96,.4);
    transform: translateY(-4px);
}

.app-icon {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    border: 1px solid rgba(233,69,96,.2);
}

.app-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.app-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,.55);
    line-height: 1.65;
    margin: 0;
}

/* ================================================================
   PROCESS — 4 Steps
   ================================================================ */
.process-track { position: relative; }

.process-line {
    display: none;
}
@media (min-width: 768px) {
    .process-line {
        display: block;
        position: absolute;
        top: 52px;
        left: calc(12.5% + 24px);
        right: calc(12.5% + 24px);
        height: 2px;
        background: linear-gradient(90deg, var(--border) 0%, var(--accent) 50%, var(--border) 100%);
        z-index: 0;
    }
}

.process-step {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
    position: relative;
    z-index: 1;
    transition: all .35s;
    height: 100%;
}
.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

.process-step-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
    border-color: transparent;
    color: #fff;
}
.process-step-accent .process-num,
.process-step-accent .process-title { color: #fff; }
.process-step-accent .process-desc  { color: rgba(255,255,255,.7); }
.process-step-accent .process-icon-wrap {
    background: rgba(233,69,96,.2);
    color: var(--accent);
}

.process-num {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 14px;
}

.process-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--accent-light);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
    transition: all .3s;
}
.process-step:hover .process-icon-wrap {
    background: var(--accent);
    color: #fff;
    transform: rotate(-6deg) scale(1.1);
}

.process-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.process-desc  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ================================================================
   USP MINI CARDS (Why Choose Us)
   ================================================================ */
.usp-mini-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-sub);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    height: 100%;
    transition: all .3s;
}
.usp-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: transparent;
}

.usp-mini-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 12px;
    transition: all .3s;
}
.usp-mini-card:hover .usp-mini-icon { transform: scale(1.1) rotate(-5deg); }

.usp-mini-title { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.usp-mini-desc  { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ================================================================
   QUOTE BANNER
   ================================================================ */
.quote-banner {
    position: relative;
    background: linear-gradient(135deg, var(--accent) 0%, #c82046 100%);
    padding: 70px 0;
    overflow: hidden;
}

.quote-banner-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 90% 50%, rgba(255,255,255,.1) 0%, transparent 60%),
        repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 1px, transparent 32px);
    pointer-events: none;
}

.quote-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.15);
    padding: 7px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.quote-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.03em;
}

.quote-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    margin: 0;
    max-width: 520px;
}

.quote-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
}
@media (max-width: 991px) { .quote-actions { align-items: flex-start; } }

.btn-quote-phone {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: #fff;
    color: var(--accent);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all .3s;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    min-width: 240px;
}
.btn-quote-phone:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,.25); color: var(--accent); }
.btn-quote-phone i { font-size: 1.3rem; }
.btn-quote-text { display: flex; flex-direction: column; line-height: 1.3; }
.btn-quote-text small { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.btn-quote-text strong { font-size: 1rem; color: var(--text-dark); }

.btn-quote-email {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 24px;
    border: 2px solid rgba(255,255,255,.4);
    color: rgba(255,255,255,.9);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all .3s;
}
.btn-quote-email:hover {
    border-color: rgba(255,255,255,.8);
    background: rgba(255,255,255,.1);
    color: #fff;
    transform: translateY(-2px);
}

/* ================================================================
   BRANDS SECTION
   ================================================================ */
.brands-section {
    background: var(--bg-surface);
    padding: 36px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.brands-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.brands-ticker {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 8px;
}

.brand-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-body);
    transition: all .25s;
}
.brand-chip:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xs);
}

/* ================================================================
   REVIEW CARDS
   ================================================================ */
.review-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-sub);
    height: 100%;
    transition: all .35s;
    display: flex;
    flex-direction: column;
}
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.review-stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 18px; }
.review-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-body);
    font-style: italic;
    flex: 1;
    margin-bottom: 24px;
}
.review-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.review-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #ff6b6b 100%);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.review-name { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.review-role { font-size: 0.78rem; color: var(--text-muted); }

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-white);
    transition: border-color .3s, box-shadow .3s;
}
.faq-item.faq-open {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(233,69,96,.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    gap: 16px;
    transition: color .2s;
}
.faq-question:hover { color: var(--accent); }
.faq-item.faq-open .faq-question { color: var(--accent); }

.faq-chevron {
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform .35s;
}
.faq-item.faq-open .faq-chevron { transform: rotate(180deg); color: var(--accent); }

.faq-answer {
    padding: 0 22px 20px;
}
.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.75;
    margin: 0;
}

/* ================================================================
   NEWSLETTER V2
   ================================================================ */
.newsletter-v2 {
    background: linear-gradient(135deg, var(--primary) 0%, #0d1b3e 100%);
    padding: 80px 0;
}

.newsletter-v2-inner {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    backdrop-filter: blur(6px);
}

.newsletter-v2-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.newsletter-v2-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.newsletter-v2-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
    margin: 0;
}

.newsletter-v2-form {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}
.newsletter-v2-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    transition: border-color .3s;
}
.newsletter-v2-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-v2-form input:focus { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.15); }
.newsletter-v2-form button {
    padding: 15px 28px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all .3s;
    white-space: nowrap;
    display: flex; align-items: center;
}
.newsletter-v2-form button:hover { background: var(--accent-hover); transform: translateY(-2px); }

.newsletter-v2-note { font-size: 0.78rem; color: rgba(255,255,255,.35); margin: 0; }

/* ================================================================
   HEADER & NAV
   ================================================================ */
.header-main {
    border-bottom: 1px solid var(--border-sub);
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #fff;
}

@media (max-width: 991px) {
    .navbar-brand h3 {
        font-size: 1.25rem !important;
        letter-spacing: -1px !important;
    }
    .header-main .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .navbar-toggler {
        padding: 0;
        order: -1;
        margin-right: 15px;
    }
}

.navbar-logo-img {
    height: 56px;
    width: auto;
    display: block;
}
@media (max-width: 991px) {
    .navbar-logo-img { height: 46px; }
}


.nav-link-custom {
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px;
    position: relative;
    transition: color .3s;
    text-decoration: none;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--accent);
    transition: all .3s;
    transform: translateX(-50%);
}
.nav-link-custom:hover::after,
.nav-link-custom.active::after  { width: 80%; }
.nav-link-custom:hover,
.nav-link-custom.active         { color: var(--accent); }

.action-btn-circle {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--bg-surface);
    color: var(--text-body);
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
    border: none;
    text-decoration: none;
}
.action-btn-circle:hover { background: var(--accent); color: #fff; }

/* ── Mobile navbar collapse styles ── */
@media (max-width: 991px) {
    /* Collapsed menu panel */
    #navbarMain {
        background: #fff;
        border-top: 1px solid var(--border);
        padding: 20px;
        margin: 0;
        border-radius: 0 0 24px 24px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }


    /* Nav links become full-width tappable rows */
    .nav-link-custom {
        display: block;
        padding: 11px 20px;
        border-radius: 10px;
        font-size: 0.95rem;
        font-weight: 600;
    }
    .nav-link-custom:hover,
    .nav-link-custom.active {
        background: var(--accent-light);
        color: var(--accent);
    }
    /* Hide the underline animation on mobile (background pill looks better) */
    .nav-link-custom::after { display: none; }

    /* Search full-width on mobile */
    #navbarMain form {
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}


/* ================================================================
   ELITE FOOTER (Legend Level)
   ================================================================ */
.footer-modern {
    background: #0A0A0A;
    color: rgba(255,255,255,.5);
    padding-top: 120px;
    padding-bottom: 120px; /* Space for Mobile Nav Dock */
    position: relative;
    border-top: 1px solid rgba(255,255,255,.03);
    overflow: hidden;
}

@media (min-width: 992px) {
    .footer-modern { padding-bottom: 50px; }
}

.footer-logo {
    height: 55px;
    margin-bottom: 2.5rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
}

.footer-column-title {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 2.5rem;
    position: relative;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 25px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links-list, .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li, .footer-contact-list li {
    margin-bottom: 14px;
}

.footer-links-list a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.footer-links-list a:hover {
    color: #fff;
}

.footer-links-list a:hover::after {
    width: 100%;
}

.footer-contact-list li {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
}

.footer-contact-list i {
    color: var(--accent);
    margin-top: 4px;
    font-size: 0.95rem;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(5px);
}

.footer-social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(175, 41, 38, 0.25);
}

.footer-bottom {
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,.03);
}

.footer-payments i {
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-payments i:hover {
    opacity: 1;
    color: #fff;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .section-py {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    
    .hero-v3 {
        height: 80vh !important;
        min-height: 500px;
    }
    
    .hero-v3-content h1 {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-align: left !important;
    }

    .hero-v3-content p {
        font-size: 0.9rem !important;
        padding: 0;
        text-align: left !important;
    }

    .hero-v3-content .d-flex {
        justify-content: flex-start !important;
    }

    .dept-row {
        margin-bottom: 40px !important;
    }

    .dept-media-box {
        height: 250px !important;
    }

    .dept-content-box {
        padding: 1rem 0 !important;
        text-align: left !important;
    }

    .dept-pulse-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
        margin: 0 0 1rem 0 !important;
    }

    .dept-content-box h3 {
        font-size: 1.5rem !important;
    }

    .dept-content-box p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }

    .app-card {
        padding: 1.5rem !important;
        text-align: left !important;
    }

    .app-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }

    .app-title {
        font-size: 0.9rem !important;
    }

    .app-desc {
        font-size: 0.75rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .section-eyebrow {
        font-size: 0.7rem !important;
        margin-bottom: 0.5rem !important;
        text-align: left !important;
    }

    .section-title {
        font-size: 1.7rem !important;
        margin-bottom: 1rem !important;
        text-align: left !important;
    }

    .section-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        text-align: left !important;
    }

    #contact .display-4 {
        font-size: 1.8rem !important;
        text-align: left !important;
    }

    #contact .h3 {
        font-size: 1.1rem !important;
    }

    #contact .rounded-circle {
        width: 45px !important;
        height: 45px !important;
        font-size: 1rem !important;
    }

    #contact .lead {
        font-size: 0.9rem !important;
        text-align: left !important;
    }
    
    .footer-main {
        padding-top: 50px !important;
        text-align: left !important;
    }
    .footer-social-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .footer-links-list li, .footer-contact-list li {
        margin-bottom: 10px;
    }
    .footer-contact-list li {
        justify-content: flex-start;
    }
    .footer-bottom {
        margin-top: 60px !important;
        text-align: left !important;
    }
    .footer-payments {
        justify-content: flex-start !important;
        margin-top: 15px;
    }
    .back-to-top {
        right: 20px;
        bottom: 20px;
    }
    
    .brands-ticker {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 15px !important;
        padding: 10px 0 !important;
        scrollbar-width: none !important;
    }
    .brands-ticker::-webkit-scrollbar {
        display: none !important;
    }
    .brand-chip {
        flex: 0 0 auto !important;
        margin: 0 !important;
        font-size: 0.9rem !important;
        padding: 8px 15px !important;
    }
}

.ls-2 { letter-spacing: 2px; }

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 46px;
    height: 46px;
    background: #fff;
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid var(--border-sub);
}

@media (min-width: 992px) {
    .back-to-top {
        bottom: 40px;
        right: 40px;
        width: 52px;
        height: 52px;
    }
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(233, 69, 96, 0.3);
}

.back-to-top i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

.progress-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.progress-circle path {
    fill: none;
    stroke: var(--accent);
    stroke-width: 4;
    stroke-linecap: round;
    box-sizing: border-box;
}



/* ================================================================
   BOOTSTRAP COMPATIBILITY
   ================================================================ */
.collapse { visibility: visible !important; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
    .print-hero-v2 { padding: 30px 0 0; }
    .display-hero  { font-size: 2.2rem; }
    .hero-img-main img { height: 360px; }
    .newsletter-v2-inner { padding: 36px 24px; }
    .newsletter-v2-form { flex-direction: column; }
}

@media (max-width: 767px) {
    :root { --section-py: 60px; }
    .display-hero  { font-size: 1.9rem; }
    .section-title { font-size: 1.6rem; }
    .metric-item   { border-right: none; border-bottom: 1px solid var(--border); }
    .quote-banner  { padding: 50px 0; }
    .quote-actions { align-items: flex-start; }
    .btn-quote-phone { min-width: auto; }
    .hero-float-card { display: none; }
    .hero-float-badge { display: none; }
}

/* ================================================================
   WHATSAPP FLOATING BUTTON
   ================================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 14px 20px 14px 16px;
    box-shadow: 0 6px 28px rgba(37,211,102,.45);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all .25s ease;
    animation: wa-pulse 2.5s infinite;
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: #fff;
    flex-shrink: 0;
}

.whatsapp-float-label {
    white-space: nowrap;
    overflow: hidden;
    max-width: 0;
    opacity: 0;
    transition: max-width .3s ease, opacity .3s ease;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(37,211,102,.55);
    color: #fff;
}

.whatsapp-float:hover .whatsapp-float-label {
    max-width: 120px;
    opacity: 1;
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,.45); }
    50%       { box-shadow: 0 6px 36px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.12); }
}

/* ================================================================
   SHOP PAGE
   ================================================================ */

/* ── Hero Strip ── */
.shop-hero {
    background: var(--primary);
    position: relative;
    overflow: hidden;
    padding: 72px 0 56px;
}
.shop-hero-backdrop {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(233,69,96,.15) 0%, transparent 70%);
    pointer-events: none;
}
.shop-hero-content { position: relative; max-width: 680px; }
.shop-hero-title {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 14px;
}
.shop-hero-sub {
    color: rgba(255,255,255,.6);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 22px;
}
.shop-breadcrumb {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.83rem; color: rgba(0, 0, 0, 1);
    flex-wrap: wrap;
}
.shop-breadcrumb a { color: rgba(0, 0, 0, 1); text-decoration: none; transition: color .2s; }
.shop-breadcrumb a:hover { color: #3d3d3d; }
.shop-bc-sep { opacity: .4; }

/* ── Body ── */
.shop-body { padding: 56px 0 100px; background: var(--bg-surface); }

/* ── Sidebar ── */
.shop-filter-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.shop-filter-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
/* Search */
.shop-search-wrap { display: flex; gap: 6px; }
.shop-search-input {
    flex: 1;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 0.875rem;
    outline: none;
    transition: border-color .2s;
}
.shop-search-input:focus { border-color: var(--accent); }
.shop-search-btn {
    background: var(--accent); color: #fff; border: none;
    border-radius: 10px; padding: 9px 14px; cursor: pointer;
    transition: background .2s;
}
.shop-search-btn:hover { background: var(--accent-hover); }

/* Categories */
.shop-cat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.shop-cat-link {
    display: flex; justify-content: space-between; align-items: center;
    padding: 9px 12px; border-radius: 8px; text-decoration: none;
    color: var(--text-body); font-size: 0.875rem;
    transition: background .2s, color .2s;
}
.shop-cat-link:hover { background: var(--bg-surface); color: var(--text-dark); }
.shop-cat-link.active { background: var(--accent); color: #fff; }
.shop-cat-count {
    font-size: 0.72rem; background: var(--bg-surface);
    padding: 2px 8px; border-radius: 20px; color: var(--text-muted);
}
.shop-cat-link.active .shop-cat-count { background: rgba(255,255,255,.2); color: #fff; }

/* Price */
.shop-price-inputs { display: flex; align-items: center; gap: 6px; min-width: 0; overflow: hidden; }
.shop-price-input {
    flex: 1; min-width: 0; width: 0;
    border: 1.5px solid var(--border); border-radius: 10px;
    padding: 8px 8px; font-size: 0.82rem; outline: none;
    transition: border-color .2s;
}
.shop-price-input:focus { border-color: var(--accent); }
.shop-price-sep { color: var(--text-muted); font-weight: 600; }
.shop-apply-btn {
    background: var(--accent); color: #fff; font-weight: 600; font-size: 0.84rem;
    border: none; border-radius: 10px; padding: 10px 18px; cursor: pointer;
    transition: background .2s, transform .15s;
    text-decoration: none; display: inline-flex; align-items: center;
}
.shop-apply-btn:hover { background: var(--accent-hover); transform: translateY(-1px); color: #fff; }

/* Quick links */
.shop-quick-link {
    display: block; padding: 8px 12px; border-radius: 8px;
    color: var(--text-body); font-size: 0.875rem; text-decoration: none;
    transition: background .2s, color .2s;
}
.shop-quick-link:hover { background: var(--accent-light); color: var(--accent); }
.text-accent { color: var(--accent); }

/* ── Toolbar ── */
.shop-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; flex-wrap: wrap;
    background: var(--bg-white); border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.shop-toolbar-left { display: flex; align-items: baseline; gap: 10px; }
.shop-toolbar-title { font-weight: 700; font-size: 1rem; color: var(--text-dark); }
.shop-toolbar-count { font-size: 0.8rem; color: var(--text-muted); }
.shop-sort-label { font-size: 0.8rem; color: var(--text-muted); white-space: nowrap; }
.shop-sort-select {
    border: 1.5px solid var(--border); border-radius: 8px;
    padding: 6px 12px; font-size: 0.84rem; outline: none; cursor: pointer;
    transition: border-color .2s;
}
.shop-sort-select:focus { border-color: var(--accent); }

/* ── Active filters ── */
.shop-active-filters {
    display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
    font-size: 0.82rem;
}
.shop-active-label { color: var(--text-muted); font-weight: 600; }
.shop-filter-tag {
    background: var(--accent-light); color: var(--accent);
    padding: 4px 12px; border-radius: 20px; font-weight: 500;
}
.shop-clear-link {
    color: var(--text-muted); text-decoration: none; margin-left: 4px;
    transition: color .2s;
}
.shop-clear-link:hover { color: var(--accent); }

/* ── Loader ── */
.shop-loader-spinner {
    width: 40px; height: 40px; border-radius: 50%;
    border: 3px solid var(--border); border-top-color: var(--accent);
    animation: spin .7s linear infinite;
    margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Empty state ── */
.shop-empty {
    text-align: center; padding: 80px 24px;
    background: var(--bg-white); border-radius: 20px;
}
.shop-empty-icon { font-size: 3.5rem; color: var(--border); margin-bottom: 20px; display: block; }
.shop-empty h5 { font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.shop-empty p { color: var(--text-muted); margin-bottom: 24px; }

/* ── Product Cards (pcard) — matches home page style ── */
.pcard {
    background: var(--bg-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    transition: transform .25s, box-shadow .25s;
    height: 100%;
    display: flex; flex-direction: column;
}
.pcard:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.13); }

.pcard-img {
    position: relative;
    background: #f1f3f6;
    overflow: hidden;
    aspect-ratio: 9/10;
}
.pcard-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s ease;
}
.pcard:hover .pcard-img img { transform: scale(1.05); }
.pcard-no-img {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--border); font-size: 2.5rem;
}

/* Badges */
.pcard-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; }
.pcard-badge {
    font-size: 0.7rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    padding: 3px 9px; border-radius: 20px; color: #fff;
}
.pcard-badge--new  { background: #10b981; }
.pcard-badge--sale { background: var(--accent); }
.pcard-badge--oos  { background: #6b7280; }

/* Hover overlay */
.pcard-overlay {
    position: absolute; inset: 0;
    background: rgba(26,26,46,.82);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 10px;
    opacity: 0; transition: opacity .25s;
}
.pcard:hover .pcard-overlay { opacity: 1; }
.pcard-overlay-btn {
    background: var(--accent); color: #fff; border: none;
    border-radius: 30px; padding: 10px 22px;
    font-size: 0.84rem; font-weight: 600; cursor: pointer;
    display: inline-flex; align-items: center; gap: 7px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    min-width: 140px; justify-content: center;
}
.pcard-overlay-btn:hover { background: var(--accent-hover); transform: translateY(-1px); color: #fff; }
.pcard-overlay-btn--ghost {
    background: transparent; border: 1.5px solid rgba(255,255,255,.5); color: rgba(255,255,255,.9);
}
.pcard-overlay-btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; }

/* Body */
.pcard-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.pcard-cat {
    font-size: 0.72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 6px;
}
.pcard-name {
    font-size: 0.93rem; font-weight: 600; line-height: 1.35;
    color: var(--text-dark); margin-bottom: 8px; flex: 1;
}
.pcard-name a { text-decoration: none; color: inherit; }
.pcard-name a:hover { color: var(--accent); }

.pcard-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.pcard-stars { color: #f59e0b; font-size: 0.75rem; display: flex; gap: 2px; }
.pcard-reviews { font-size: 0.75rem; color: var(--text-muted); }

.pcard-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.pcard-price-current { font-size: 1.1rem; font-weight: 800; color: var(--text-dark); }
.pcard-price-old { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; }

/* ── Shop Pagination ── */
.shop-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.shop-pagination .pagination { gap: 4px; margin: 0; }
.shop-pagination .page-link {
    border-radius: 8px !important; border: 1.5px solid var(--border);
    color: var(--text-dark); padding: 8px 14px; font-size: 0.875rem;
    transition: all .2s;
}
.shop-pagination .page-item.active .page-link {
    background: var(--accent); border-color: var(--accent); color: #fff;
}
.shop-pagination .page-link:hover { border-color: var(--accent); color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 991px) {
    .shop-hero { padding: 50px 0 40px; }
    .shop-sidebar { position: static !important; }
}
@media (max-width: 575px) {
    .pcard-overlay { display: none; } /* tap-based on mobile — overlay not useful */
    .shop-toolbar { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ================================================================
   PRODUCT DETAIL PAGE (PDP)
   ================================================================ */

/* ── Breadcrumb bar ── */
.pdp-breadcrumb-bar {
    background: var(--primary);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.pdp-breadcrumb {
    display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
    font-size: 0.82rem;
}
.pdp-breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.pdp-breadcrumb a:hover { color: #fff; }
.pdp-bc-sep { color: rgba(255,255,255,.25); }
.pdp-bc-current { color: rgba(255,255,255,.85); }

/* ── Body ── */
.pdp-body { background: var(--bg-surface); padding: 40px 0 80px; }

/* ── Main Card ── */
.pdp-card {
    background: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0,0,0,.08);
    margin-bottom: 32px;
}

/* ── Image Panel ── */
.pdp-image-panel {
    border-right: 1px solid var(--border);
    background: #f8f9fb;
    display: flex;
    flex-direction: column;
    /* Stick the image panel so it stays visible while
       the user reads a long description on the right */
    position: sticky;
    top: 70px; /* below fixed header */
    align-self: flex-start;
    /* Ensure it never collapses smaller than its content */
    height: auto;
}
.pdp-main-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Fixed square-ish frame — never shrinks or grows with description */
    height: 480px;
    min-height: 320px;
    max-height: 560px;
    padding: 28px;
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
    background: #f8f9fb;
}
.pdp-main-image {
    /* Fill the frame while preserving aspect ratio — no stretching */
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform .1s ease-out, opacity .18s;
}
.pdp-main-image-wrap:hover .pdp-main-image { transform: scale(2); }
.pdp-no-image {
    font-size: 4rem; color: var(--border);
    display: flex; align-items: center; justify-content: center;
    min-height: 320px; width: 100%;
}
.pdp-badges {
    position: absolute; top: 16px; left: 16px; display: flex; gap: 6px;
}
.pdp-badge {
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    padding: 4px 10px; border-radius: 20px; color: #fff; letter-spacing: .04em;
}
.pdp-badge--new  { background: #10b981; }
.pdp-badge--sale { background: var(--accent); }
.pdp-badge--oos  { background: #6b7280; }

/* Thumbnails */
.pdp-thumbs {
    display: flex; gap: 8px; padding: 16px 24px 24px;
    border-top: 1px solid var(--border); flex-wrap: wrap;
}
.pdp-thumb {
    width: 68px; height: 68px; border-radius: 10px; overflow: hidden;
    border: 2px solid transparent; cursor: pointer;
    transition: border-color .2s; flex-shrink: 0;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb:hover, .pdp-thumb.active { border-color: var(--accent); }

/* ── Info Panel ── */
.pdp-info-panel { padding: 40px 44px; }
.pdp-cat-label {
    font-size: 0.72rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
}
.pdp-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800;
    color: var(--text-dark); line-height: 1.2; margin-bottom: 14px;
}
.pdp-rating-row {
    display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.pdp-stars { color: #f59e0b; font-size: 0.9rem; display: flex; gap: 2px; }
.pdp-rating-count { font-size: 0.82rem; color: var(--text-muted); }

/* Price */
.pdp-price-row {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
    margin-bottom: 20px; padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.pdp-price-main {
    font-size: 2rem; font-weight: 800; color: var(--text-dark);
}
.pdp-price-old {
    font-size: 1rem; color: var(--text-muted); text-decoration: line-through;
}
.pdp-discount-badge {
    background: var(--accent-light); color: var(--accent);
    font-size: 0.82rem; font-weight: 700; padding: 4px 10px; border-radius: 20px;
}
.pdp-stock-badge {
    font-size: 0.78rem; font-weight: 600; padding: 5px 12px; border-radius: 20px;
}
.pdp-stock-badge--in  { background: rgba(16,185,129,.12); color: #059669; }
.pdp-stock-badge--out { background: rgba(107,114,128,.12); color: #6b7280; }

/* Description — scrollable so action buttons stay visible */
.pdp-description {
    font-size: 0.94rem; color: var(--text-body); line-height: 1.7;
    margin-bottom: 24px;
    max-height: 180px;
    overflow-y: auto;
    padding-right: 8px;
    /* Subtle bottom fade to hint more content exists */
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}
.pdp-description:hover {
    /* Show full content when user hovers/interacts */
    -webkit-mask-image: none;
    mask-image: none;
}
.pdp-description::-webkit-scrollbar { width: 4px; }
.pdp-description::-webkit-scrollbar-track { background: transparent; }
.pdp-description::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.pdp-divider { height: 1px; background: var(--border); margin-bottom: 24px; }

/* ── Qty + Cart Row ── */
.pdp-cart-row {
    display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 20px;
}
.pdp-qty-wrap {
    display: flex; align-items: center;
    border: 2px solid var(--border); border-radius: 12px; overflow: hidden;
}
.pdp-qty-btn {
    background: var(--bg-surface); border: none; cursor: pointer;
    padding: 11px 16px; font-size: 0.9rem; color: var(--text-dark);
    transition: background .2s, color .2s;
}
.pdp-qty-btn:hover { background: var(--border); color: var(--accent); }
.pdp-qty-input {
    border: none; outline: none; background: #fff;
    width: 56px; text-align: center; font-size: 1rem; font-weight: 700;
    color: var(--text-dark); padding: 10px 4px;
    -moz-appearance: textfield;
    appearance: textfield;
}
.pdp-qty-input::-webkit-inner-spin-button,
.pdp-qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.pdp-add-btn {
    flex: 1; background: var(--accent); color: #fff; border: none;
    border-radius: 12px; padding: 13px 28px; font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: background .2s, transform .15s;
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 200px;
}
.pdp-add-btn:hover:not(:disabled) { background: var(--accent-hover); transform: translateY(-1px); }
.pdp-add-btn:disabled { background: var(--text-muted); cursor: not-allowed; }

/* Trust Pills */
.pdp-trust-row {
    display: flex; gap: 10px; flex-wrap: wrap;
}
.pdp-trust-pill {
    display: flex; align-items: center; gap: 6px;
    font-size: 0.78rem; color: var(--text-muted);
    background: var(--bg-surface); padding: 6px 14px; border-radius: 20px;
}
.pdp-trust-pill i { color: var(--accent); }

/* ── Section Cards (reviews) ── */
.pdp-section-card {
    background: var(--bg-white); border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,.06); padding: 32px;
}
.pdp-section-title {
    font-size: 1.1rem; font-weight: 700; color: var(--text-dark);
    margin-bottom: 24px; display: flex; align-items: center; gap: 8px;
}
.pdp-section-count { color: var(--text-muted); font-weight: 400; font-size: 0.9rem; }
.text-accent { color: var(--accent); }

/* Reviews */
.pdp-review {
    padding: 20px 0; border-bottom: 1px solid var(--border-sub);
}
.pdp-review:last-of-type { border-bottom: none; }
.pdp-review-header {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px;
}
.pdp-review-title { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }
.pdp-review-stars { color: #f59e0b; font-size: 0.8rem; display: flex; gap: 2px; }
.pdp-review-body { font-size: 0.9rem; color: var(--text-body); margin-bottom: 6px; line-height: 1.6; }
.pdp-review-meta { font-size: 0.75rem; color: var(--text-muted); }
.pdp-review-empty {
    text-align: center; padding: 40px 0; color: var(--text-muted);
}
.pdp-review-empty i { font-size: 2.5rem; margin-bottom: 12px; display: block; }

/* Review Form */
.pdp-review-form { display: flex; flex-direction: column; gap: 0; }
.pdp-form-group { margin-bottom: 16px; }
.pdp-form-label {
    display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: .07em;
    text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px;
}
.pdp-form-input {
    width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
    padding: 10px 14px; font-size: 0.875rem; outline: none;
    transition: border-color .2s; background: var(--bg-surface);
    resize: vertical;
}
.pdp-form-input:focus { border-color: var(--accent); background: #fff; }
.pdp-form-select {
    width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
    padding: 10px 14px; font-size: 0.875rem; outline: none;
    transition: border-color .2s; background: var(--bg-surface); cursor: pointer;
}
.pdp-form-select:focus { border-color: var(--accent); }
.pdp-form-error { font-size: 0.78rem; color: var(--accent); margin-top: 4px; display: block; }
.pdp-submit-btn {
    background: var(--primary); color: #fff; border: none; border-radius: 12px;
    padding: 12px 24px; font-weight: 700; font-size: 0.9rem; cursor: pointer;
    transition: background .2s, transform .15s;
    display: inline-flex; align-items: center; justify-content: center;
}
.pdp-submit-btn:hover { background: var(--accent); transform: translateY(-1px); }

/* ── Related Products ── */
.pdp-related-header {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px;
}
.pdp-related-title {
    font-size: 1.3rem; font-weight: 800; color: var(--text-dark);
}
.pdp-related-link {
    font-size: 0.85rem; color: var(--accent); text-decoration: none; font-weight: 600;
    transition: opacity .2s;
}
.pdp-related-link:hover { opacity: .75; }

/* ── Responsive ── */
@media (max-width: 991px) {
    /* On mobile/tablet, remove sticky and restore normal flow */
    .pdp-image-panel {
        position: static;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .pdp-info-panel { padding: 28px 24px; }
    .pdp-main-image-wrap { height: 300px; min-height: 240px; max-height: 360px; padding: 20px; }
}
@media (max-width: 575px) {
    .pdp-cart-row { flex-direction: column; }
    .pdp-add-btn { min-width: 100%; }
    .pdp-price-main { font-size: 1.5rem; }
}
/* Variant Selection Styles */
.variant-option {
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}
.variant-option.active {
    border-color: #c5a059;
    background: #c5a059;
    color: #fff;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.2);
}
.color-pill {
    width: 45px;
    height: 45px;
    padding: 3px;
    min-width: auto;
}
.color-pill img, .color-pill .color-box {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.color-box {
    border: 1px solid rgba(0,0,0,0.1);
}
.thumb-item.active {
    border-color: #c5a059 !important;
}

/* In-Card Variant Selectors */
.pcard-variants {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pcard-variant-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.pcard-color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    position: relative;
}
.pcard-color-dot.active {
    box-shadow: 0 0 0 2px #fff, 0 0 0 3px #c5a059;
    transform: scale(1.1);
}
.pcard-size-pill {
    font-size: 10px;
    padding: 2px 6px;
    border: 1px solid #eee;
    background: #fdfdfd;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 4px;
    color: #666;
    min-width: 24px;
    text-align: center;
}
.pcard-size-pill.active {
    background: #c5a059;
    color: #fff;
    border-color: #c5a059;
}
.pcard-size-pill:hover:not(.active) {
    background: #f5f5f5;
}
.pcard-variant-label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    min-width: 35px;
}

/* Variant Selection Visual Feedback */
.variant-option.disabled-option {
    opacity: 0.3 !important;
    filter: grayscale(0.8);
    cursor: not-allowed !important;
    pointer-events: none;
}

.size-pill.disabled-option {
    position: relative;
    color: #999;
    border-color: #ddd;
}

.size-pill.disabled-option::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 1px;
    background: #999;
    transform: rotate(-25deg);
}

/* In-Card Variants Disabled States */
.pcard-color-dot.disabled,
.pcard-size-pill.disabled {
    opacity: 0.25 !important;
    cursor: not-allowed !important;
    pointer-events: none;
    position: relative;
}

.pcard-size-pill.disabled::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 1px;
    background: #999;
    transform: rotate(-15deg);
}

/* ================================================================
   RTL SUPPORT (ARABIC)
   ================================================================ */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

[dir="rtl"] .me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

[dir="rtl"] .ms-lg-5 {
    margin-right: 3rem !important;
    margin-left: 0 !important;
}

[dir="rtl"] .me-3 {
    margin-left: 1rem !important;
    margin-right: 0 !important;
}

[dir="rtl"] .fa-chevron-right, 
[dir="rtl"] .fa-arrow-right,
[dir="rtl"] .fa-chevron-down {
    transform: scaleX(-1);
}

[dir="rtl"] .shop-breadcrumb .mx-2 {
    display: inline-block;
    transform: scaleX(-1);
}

[dir="rtl"] .announcement-bar .promo-marquee {
    animation: marquee-rtl 30s linear infinite;
}

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

[dir="rtl"] .dropdown-menu-end {
    right: auto !important;
    left: 0 !important;
}

[dir="rtl"] .offcanvas-end {
    right: auto !important;
    left: 0 !important;
    transform: translateX(-100%);
}

[dir="rtl"] .offcanvas.show {
    transform: translateX(0);
}

/* Fix for PDP Badges */
[dir="rtl"] .pdp-badges {
    right: 0 !important;
    left: auto !important;
}

/* Fix for Cart Count */
[dir="rtl"] #header-cart-count {
    left: 0 !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
}

/* Adjust Cairo Font line-heights */
[dir="rtl"] body {
    line-height: 1.8;
}

[dir="rtl"] .fw-black {
    font-weight: 800 !important;
}

[dir="rtl"] .nav-link {
    letter-spacing: 0 !important;
}

/* ── Mini Cart Component Elevate ── */
.mc-qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-sub);
    background: #f8fafc;
    transition: all 0.2s ease;
}

.mc-qty-selector:hover {
    border-color: var(--border);
    background: #f1f5f9;
}

.qty-btn {
    background: none;
    border: none;
    padding: 6px 10px;
    color: var(--text-dark);
    font-size: 0.75rem;
    cursor: pointer;
    transition: transform 0.1s active;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:active {
    transform: scale(0.9);
}

.qty-btn i {
    font-size: 0.65rem;
}

.qty-input {
    width: 28px;
    border: none;
    background: transparent;
    text-align: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text-dark);
    padding: 0;
    pointer-events: none;
}

.cart-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-shadow-sm:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--border) !important;
    transform: translateY(-2px);
}

.opacity-40 { opacity: 0.4; }
.hover-opacity-100:hover { opacity: 1 !important; }

/* ── Typography & Spacing ── */
.ls-1 { letter-spacing: 1px; }
.fw-black { font-weight: 900; }

/* ── Global Boutique Utilities ── */
.aspect-9-10 { aspect-ratio: 9/10 !important; object-fit: cover; }
.aspect-square { aspect-ratio: 1/1 !important; object-fit: cover; }
