/* ═══════════════════════════════════════════════════════════════
   MARKZAD — EDITS.CSS  v3
   1.  Disable old collapse / hamburger
   2.  Single-row navbar: Logo + inline nav links + cart + login
   3.  Topbar: always fixed, social / phone / vision / lang only
   4.  Mega menu drops from the single navbar row
   5.  Hero slide 1: full image banner
   6.  Hero dots: animated timing pill indicators (above booking overlap)
   7.  Booking section: booking card z-index fix so dots show
   8.  Safari date input placeholder fix
   9.  Footer: pattern background
   10. Service cards: white pattern background
   11. Mobile bottom nav (≤767px only) with slide-up sheets
   12. Cart + login: restored in navbar, hidden on mobile (use bottom nav)
═══════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────
   1. KILL OLD ELEMENTS
─────────────────────────────────────────────── */
.navbar-toggler,
.navbar-collapse,
.collapse.navbar-collapse,
.nav-cta,
.header-subnav {
    display: none !important;
}

/* ───────────────────────────────────────────────
   2. SINGLE-ROW NAVBAR
─────────────────────────────────────────────── */
.site-navbar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 0 !important;
    min-height: 68px;
    flex-wrap: nowrap;
    width: 100%;
}

/* Logo */
.site-navbar .navbar-brand { flex-shrink: 0; margin: 0; padding: 0; }
.nav-logo { height: 46px; width: auto; }

/* ── Nav links wrap ── */
.nav-links-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 16px;
}

.nav-links-list {
    display: flex;
    align-items: stretch;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-links-list > li { position: relative; flex-shrink: 0; }

.nav-links-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 13px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font);
    white-space: nowrap;
    border-bottom: 2.5px solid transparent;
    transition: color 0.22s, border-color 0.22s, background 0.22s;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}
.nav-links-list > li > a:hover,
.nav-links-list > li > a.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: rgba(201,168,76,0.06);
}

/* Caret */
.nav-link-caret { font-size: 10px; opacity: 0.6; transition: transform 0.22s; }
.nav-link-item[aria-expanded="true"] .nav-link-caret { transform: rotate(180deg); }
.nav-links-list .dropdown-toggle::after { display: none !important; }

/* ── Nav actions: Cart + Login ── */
.nav-actions-group {
    display: flex !important;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.nav-cart-btn {
    position: relative;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--accent-pale);
    border: 1.5px solid rgba(201,168,76,0.35);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 19px;
    transition: all 0.25s;
    flex-shrink: 0;
    text-decoration: none;
}
.nav-cart-btn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--accent-glow);
}
.cart-dot {
    position: absolute;
    top: 6px; left: 7px;
    width: 10px; height: 10px;
    background: #e02020;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: cart-dot-pulse 2.2s ease infinite;
}
@keyframes cart-dot-pulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(224,32,32,.55); }
    50%      { box-shadow: 0 0 0 5px rgba(224,32,32,0); }
}
.pulse-btn{
    -webkit-animation: pulser 2.1s infinite;
}
.pulse-btn{
    background: var(--accent) !important;
    color: var(--primary) !important;
}

@-webkit-keyframes pulser {
  0% {
    transform: scale(0.8);
  }
  70% {
    transform: scale(1.2);
    box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }
  100% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}

.btn-prim {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 99px;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    font-family: var(--font);
    transition: all 0.25s;
    white-space: nowrap;
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    flex-shrink: 0;
}
.btn-prim i { font-size: 15px; }
.btn-prim:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

/* ── Mega menu from single navbar ── */
.nav-mega-menu {
    position: fixed !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 112px; /* updated dynamically by JS */
    width: 90vw !important;
    max-width: 920px !important;
    border-radius: var(--radius-lg) !important;
    border: 1px solid var(--border-light) !important;
    box-shadow: var(--shadow-lg) !important;
    padding: 24px !important;
    z-index: 500 !important;
    animation: mega-in 0.22s ease !important;
}
/* Hover trigger for services dropdown — desktop only */
@media (min-width: 992px) {
    .nav-links-list .dropdown:hover > .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
    }
}

/* ───────────────────────────────────────────────
   3. TOPBAR — always fixed, lang switch added
─────────────────────────────────────────────── */
.topbar-wrap {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 1100 !important;
}

.topbar-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    font-weight: 700;
    transition: color 0.2s;
    text-decoration: none;
}
.topbar-lang-btn i { font-size: 13px; }
.topbar-lang-btn:hover { color: var(--accent); }

/* topbar stays visible on mobile too */
@media (max-width: 767px) {
    .topbar-wrap { display: flex !important; padding: 5px 0; }
    .topbar-phone { display: none !important; }
    .lang-label { display: none; }
}

/* ───────────────────────────────────────────────
   4. HEADER POSITIONING — below fixed topbar
─────────────────────────────────────────────── */
.site-header {
    top: 40px !important;   /* topbar height */
}
.site-header.scrolled { top: 40px !important; }

/* Slide content padding to clear topbar+header */
@media (min-width: 992px) {
    .slide-content { padding-top: 160px; }
}
@media (max-width: 991px) {
    .slide-content { padding-top: 120px; }
}
@media (max-width: 720ox) {
    .nav-logo{height: 38px !important;}
}

/* Scroll anchor offset */
:root { --header-total-h: 120px; }
[id] { scroll-margin-top: var(--header-total-h); }
@media (max-width: 767px) { :root { --header-total-h: 100px; } }

/* ───────────────────────────────────────────────
   5. HERO SLIDE 1 — full image banner
─────────────────────────────────────────────── */
.slide--image-only { position: relative; }
.slide--image-only .slide-bg { background-size: cover; background-position: center; }
.slide-overlay--light {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.22) 0%,
        rgba(0,0,0,0.08) 50%,
        rgba(0,0,0,0.30) 100%
    ) !important;
}

/* ───────────────────────────────────────────────
   6. HERO DOTS — animated timing pills
      Raised high above the booking card overlap
─────────────────────────────────────────────── */
.hero-dots-wrap {
    position: absolute;
    /* Push well above the -40px booking card overlap */
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 30;          /* above slide overlay */
    pointer-events: auto;
}

.hero-dot {
    position: relative;
    width: 32px;
    height: 6px;
    border-radius: 99px;
    background: rgba(255,255,255,0.28);
    border: none;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: width 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
}
.hero-dot.is-active { width: 54px; background: rgba(255,255,255,0.22); }
.hero-dot.is-done   { background: rgba(255,255,255,0.65); }

.hero-dot-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 0%;
    background: #ffffff;
    border-radius: 99px;
    pointer-events: none;
}
.hero-dot.is-done .hero-dot-fill { transition: none !important; width: 100% !important; }

/* ───────────────────────────────────────────────
   7. BOOKING CARD — lower z-index so dots show
─────────────────────────────────────────────── */
.booking-card { z-index: 4 !important; }

/* ───────────────────────────────────────────────
   8. SAFARI DATE PLACEHOLDER
─────────────────────────────────────────────── */
.date-input-wrap { position: relative; display: block; }

.date-placeholder-safari {
    position: absolute;
    top: 50%; right: 14px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #aaa;
    font-size: 13.5px;
    font-family: var(--font);
    z-index: 2;
    transition: opacity 0.15s;
}
.safari-date-fix:not(:placeholder-shown) + .date-placeholder-safari { display: none; }

/* ───────────────────────────────────────────────
   9. FOOTER — blue pattern
─────────────────────────────────────────────── */
.site-footer {
    background-color: var(--primary);
    background-image: url('layout/imgs/pattern-color.png');
    background-attachment: fixed;
    background-size: contain;
    background-blend-mode: soft-light;
}

@media (max-width: 991px) {
    .footer-top .row > [class*="col-lg-3"] { flex: 0 0 50%; max-width: 50%; }
}
@media (max-width: 575px) {
    .footer-top .row > [class*="col-lg-3"] { flex: 0 0 100%; max-width: 100%; }
}

/* ───────────────────────────────────────────────
   10. SERVICE CARDS — white pattern background
─────────────────────────────────────────────── */
.srv-card-body {
    background: url('layout/imgs/pattern-white.jpg') center / 180px, #fff;
}

/* ═══════════════════════════════════════════════
   11. MOBILE BOTTOM NAV  (≤767px only)
═══════════════════════════════════════════════ */

/* Desktop: hide the bar and sheets entirely */
.mobile-bottom-nav,
.mbn-sheet { display: none; }

@media (max-width: 767px) {

    /* Hide desktop nav links & cart/login from navbar on mobile */
    .nav-links-wrap { display: none !important; }

    /* Body padding for bar */
    body { padding-bottom: calc(66px + env(safe-area-inset-bottom, 0px)) !important; }

    /* ── Bottom bar ── */
    .mobile-bottom-nav {
        display: flex !important;
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 1080;
        background: rgba(6,18,44,0.97);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-top: 1px solid rgba(201,168,76,0.20);
        padding-bottom: env(safe-area-inset-bottom, 0px);
        box-shadow: 0 -4px 28px rgba(0,0,0,0.30);
    }

    .mbn-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        padding: 8px 2px 6px;
        background: none;
        border: none;
        color: rgba(255,255,255,0.48);
        font-family: var(--font);
        font-size: 10px;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: color 0.18s;
        -webkit-tap-highlight-color: transparent;
        position: relative;
    }
    .mbn-item--active,
    .mbn-item:active { color: var(--accent, #c9a84c); }
    .mbn-item--active .mbn-icon { transform: translateY(-2px); color: var(--accent, #c9a84c); }

    .mbn-item--active::before {
        content: '';
        position: absolute;
        top: 0; left: 50%;
        transform: translateX(-50%);
        width: 28px; height: 3px;
        background: var(--accent, #c9a84c);
        border-radius: 0 0 3px 3px;
    }

    .mbn-icon { font-size: 21px; line-height: 1; transition: transform 0.18s, color 0.18s; }
    .mbn-label { font-size: 10px; white-space: nowrap; }

    /* ── Sheets ── */
    .mbn-sheet {
        display: block !important;
        position: fixed;
        inset: 0;
        z-index: 1079;
        pointer-events: none;
    }
    .mbn-sheet.is-open { pointer-events: all; }

    .mbn-sheet-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(5,15,35,0.60);
        opacity: 0;
        transition: opacity 0.28s ease;
    }
    .mbn-sheet.is-open .mbn-sheet-backdrop { opacity: 1; }

    .mbn-sheet-panel {
        position: absolute;
        bottom: calc(55px + env(safe-area-inset-bottom, 0px));
        left: 0; right: 0;
        background: #fff;
        border-radius: 22px 22px 0 0;
        box-shadow: 0 -8px 48px rgba(0,0,0,0.22);
        max-height: 82vh;
        display: flex;
        flex-direction: column;
        transform: translateY(100%);
        transition: transform 0.32s cubic-bezier(0.25,0,0,1);
        overflow: hidden;
    }
    .mbn-sheet.is-open .mbn-sheet-panel { transform: translateY(0); }

    .mbn-sheet-handle {
        width: 40px; height: 4px;
        background: rgba(0,0,0,0.12);
        border-radius: 2px;
        margin: 10px auto 4px;
        flex-shrink: 0;
    }

    .mbn-sheet-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 18px 10px;
        border-bottom: 1px solid rgba(0,0,0,0.07);
        flex-shrink: 0;
    }
    .mbn-sheet-title {
        font-size: 15px; font-weight: 800;
        font-family: var(--font);
        color: var(--primary, #0a2240);
        margin: 0;
        display: flex; align-items: center; gap: 8px;
    }
    .mbn-sheet-title i { color: var(--accent, #c9a84c); }
    .mbn-sheet-close {
        width: 34px; height: 34px;
        border-radius: 50%;
        background: rgba(201,168,76,0.10);
        border: none;
        color: var(--primary, #0a2240);
        font-size: 15px;
        display: flex; align-items: center; justify-content: center;
        cursor: pointer;
        transition: background 0.18s;
    }
    .mbn-sheet-close:hover { background: var(--accent, #c9a84c); color: #fff; }

    .mbn-sheet-body {
        padding: 14px 14px 20px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        flex: 1;
    }

    /* ── Mega-style sections inside services sheet ── */
    .mbn-mega-section { margin-bottom: 18px; }
    .mbn-mega-section:last-of-type { margin-bottom: 12px; }

    .mbn-mega-section-header {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px;
        background: var(--accent-pale, rgba(201,168,76,0.08));
        border-radius: 10px;
        margin-bottom: 6px;
        font-size: 12px;
        font-weight: 800;
        font-family: var(--font);
        color: var(--primary, #0a2240);
    }
    .mbn-mega-section-header i {
        font-size: 16px;
        color: var(--accent, #c9a84c);
        width: 20px; text-align: center;
    }

    .mbn-mega-links {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    .mbn-mega-link {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 9px 12px;
        border-radius: 8px;
        font-size: 13px;
        font-weight: 600;
        font-family: var(--font);
        color: var(--text-main, #1a2a4a);
        text-decoration: none;
        transition: background 0.15s, color 0.15s;
        -webkit-tap-highlight-color: transparent;
    }
    .mbn-mega-link:active,
    .mbn-mega-link:hover { background: rgba(201,168,76,0.10); color: var(--primary); }
    .mbn-mega-link i { font-size: 11px; color: var(--accent, #c9a84c); }

    .mbn-sheet-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 14px;
        padding: 13px;
        border-radius: 12px;
        background: var(--primary, #0a2240);
        color: var(--accent, #c9a84c);
        font-size: 14px;
        font-weight: 800;
        font-family: var(--font);
        text-decoration: none;
        transition: background 0.2s;
    }
    .mbn-sheet-cta:active { background: var(--accent, #c9a84c); color: var(--primary, #0a2240); }

    /* ── More links list ── */
    .mbn-more-list {
        list-style: none; margin: 0; padding: 0;
        display: flex; flex-direction: column; gap: 4px;
    }
    .mbn-more-list li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 13px 14px;
        border-radius: 12px;
        font-size: 14px; font-weight: 700;
        font-family: var(--font);
        color: var(--text-main, #1a2a4a);
        text-decoration: none;
        background: rgba(0,0,0,0.02);
        border: 1px solid transparent;
        transition: all 0.15s;
        -webkit-tap-highlight-color: transparent;
    }
    .mbn-more-list li a i:first-child {
        font-size: 18px;
        color: var(--accent, #c9a84c);
        width: 24px; text-align: center;
        flex-shrink: 0;
    }
    .mbn-more-list li a span { flex: 1; }
    .mbn-more-arrow { font-size: 11px; color: #bbb; margin-right: auto; }
    .mbn-more-list li a:active { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.25); }

    /* Dots: on mobile bump bottom up further since no booking overlap there */
    .hero-dots-wrap { bottom: 90px; }

} /* end @media max-width 767px */

/* ═══════════════════════════════════════════════════════════════
   WISHLIST — buttons, page, toast, nav badge
═══════════════════════════════════════════════════════════════ */

/* ── Nav wishlist button ── */
.nav-wishlist-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-pale, rgba(201,168,76,0.08));
    border: 1.5px solid rgba(201,168,76,0.22);
    color: var(--primary);
    font-size: 17px;
    text-decoration: none;
    transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.18s;
}
.nav-wishlist-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: scale(1.08); }
.wishlist-count-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 99px;
    background: #e53935;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 17px;
    text-align: center;
    display: none;
    pointer-events: none;
}

/* ── Wishlist heart button (product card / product page) ── */
.btn-wishlist {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 20px;
    border-radius: 99px;
    border: 1.5px solid rgba(201,168,76,0.35);
    background: transparent;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.22s;
    white-space: nowrap;
}
.btn-wishlist i { font-size: 16px; transition: color 0.2s, transform 0.2s; }
.btn-wishlist:hover { border-color: #e53935; color: #e53935; background: rgba(229,57,53,0.06); }
.btn-wishlist:hover i { transform: scale(1.18); }
.btn-wishlist.wl-active { border-color: #e53935; color: #e53935; background: rgba(229,57,53,0.07); }
.btn-wishlist.wl-active i { color: #e53935; }

/* Compact wishlist icon on product card corner */
.product-card-wl {
    position: absolute;
    top: 10px;
    right: 10px; /* RTL: this is left side visually */
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(201,168,76,0.2);
    color: #888;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.product-card-wl:hover, .product-card-wl.wl-active { color: #e53935; background: #fff; border-color: #e53935; }
.product-card-wl.wl-active i { color: #e53935; }

/* Cart row "save for later" wishlist button */
.btn-cart-wl {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 99px;
    border: 1px solid rgba(229,57,53,0.3);
    background: transparent;
    color: #e53935;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    margin-top: 5px;
}
.btn-cart-wl:hover { background: #e53935; color: #fff; }
.btn-cart-wl.wl-active { background: rgba(229,57,53,0.07); }

/* ── Wishlist toast ── */
.wl-toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(30px);
    background: var(--primary, #1a1a2e);
    color: #fff;
    padding: 11px 22px;
    border-radius: 99px;
    font-size: 13.5px;
    font-weight: 700;
    font-family: var(--font);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 99999;
    box-shadow: 0 8px 28px rgba(0,0,0,0.22);
    display: flex;
    align-items: center;
    gap: 8px;
    direction: rtl;
}
.wl-toast i { color: #e53935; font-size: 15px; }
.wl-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
@media (max-width: 767px) { .wl-toast { bottom: 78px; font-size: 12.5px; padding: 9px 18px; } }

/* ── Wishlist PAGE ── */
.wishlist-page { padding: 60px 0; }

.wishlist-empty {
    text-align: center;
    padding: 80px 20px;
}
.wishlist-empty i {
    font-size: 64px;
    color: var(--accent);
    opacity: 0.5;
    display: block;
    margin-bottom: 20px;
}
.wishlist-empty h3 { font-size: 22px; color: var(--primary); margin-bottom: 10px; }
.wishlist-empty p { color: var(--text-muted); font-size: 15px; }

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.wl-card {
    background: #fff;
    border-radius: var(--radius, 12px);
    border: 1px solid var(--border-light, rgba(0,0,0,0.08));
    overflow: hidden;
    transition: box-shadow 0.22s, transform 0.22s;
    position: relative;
}
.wl-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.10); transform: translateY(-3px); }

.wl-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    background: #f5f5f5;
}

.wl-card-body {
    padding: 16px;
}
.wl-card-name {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1.4;
    font-family: var(--font);
}
.wl-card-price {
    font-size: 18px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 14px;
    font-family: var(--font);
}
.wl-card-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.wl-card-actions .btn-add-cart {
    flex: 1;
    font-size: 13px;
    padding: 10px 14px;
    min-width: 0;
}
.wl-card-remove {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(229,57,53,0.3);
    background: transparent;
    color: #e53935;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}
.wl-card-remove:hover { background: #e53935; color: #fff; border-color: #e53935; }

/* Wishlist page header count */
.wishlist-count-info {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-family: var(--font);
}
.wishlist-count-info strong { color: var(--accent); }

/* Clear wishlist button */
.btn-clear-wl {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 99px;
    border: 1.5px solid rgba(229,57,53,0.3);
    background: transparent;
    color: #e53935;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    transition: all 0.2s;
}
.btn-clear-wl:hover { background: #e53935; color: #fff; }

/* ── Lazy load placeholder ── */
img[data-src] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: lazyShimmer 1.4s infinite;
}
@keyframes lazyShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Cart product cell info wrapper */
.cart-prod-info { display: flex; flex-direction: column; align-items: flex-start; }
