/* ============================================================
   ZAABAR STORE – Main Stylesheet  v1.0.0
   ============================================================
   Table of Contents:
   01. Design Tokens (CSS Custom Properties)
   02. CSS Reset & Base
   03. Typography
   04. Layout Utilities
   05. Page Base
   06. Section Base
   07. Header – Core
   08. Header – Top Row (Logo / Search / Actions)
   09. Header – Bottom Row (Navigation)
   10. Header – Mobile
   11. Custom Scrollbar
   ============================================================ */


/* ─────────────────────────────────────────────────────────────
   01. DESIGN TOKENS
───────────────────────────────────────────────────────────── */
:root {
    /* Brand Palette */
    --zb-primary:        #0049a9;
    --zb-primary-light:  #3370ba;
    --zb-primary-dark:   #001f80;
    --zb-accent:         #e63946;

    /* Neutral Palette */
    --zb-bg:             #ffffff;
    --zb-bg-2:           #f8f9fa;
    --zb-bg-3:           #e9ecef;
    --zb-bg-card:        #ffffff;
    --zb-border:         rgba(0,0,0,0.08);
    --zb-border-strong:  rgba(0,0,0,0.15);

    /* Text */
    --zb-text:           #1a1a2e;
    --zb-text-muted:     #6b7280;
    --zb-text-faint:     #b0b5bf;

    /* Shadows */
    --zb-shadow-sm:      0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
    --zb-shadow-md:      0 4px 16px rgba(0,0,0,0.06), 0 12px 32px rgba(0,0,0,0.06);
    --zb-shadow-lg:      0 12px 40px rgba(0,0,0,0.1), 0 24px 64px rgba(0,0,0,0.06);
    --zb-glow-main:      0 0 40px rgba(0,73,169,0.12);

    /* Radii */
    --zb-r-sm:    6px;
    --zb-r-md:    12px;
    --zb-r-lg:    20px;
    --zb-r-xl:    32px;
    --zb-r-full:  9999px;

    /* Spacing */
    --zb-gap-xs:  0.5rem;
    --zb-gap-sm:  1rem;
    --zb-gap-md:  2rem;
    --zb-gap-lg:  4rem;
    --zb-gap-xl:  6rem;

    /* Container */
    --zb-container-max:  1320px;
    --zb-container-pad:  clamp(1.25rem, 5vw, 3rem);

    /* Transitions */
    --zb-ease:      cubic-bezier(0.4, 0, 0.2, 1);
    --zb-ease-out:  cubic-bezier(0, 0, 0.2, 1);
    --zb-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --zb-t-fast:    0.18s;
    --zb-t-mid:     0.3s;
    --zb-t-slow:    0.5s;

    /* Typography */
    --zb-font-arabic:  'Tajawal', 'Arial', sans-serif;
    --zb-font-latin:   'Inter', 'Arial', sans-serif;
    --zb-font:         var(--zb-font-arabic);

    --zb-fs-xs:   0.75rem;
    --zb-fs-sm:   0.875rem;
    --zb-fs-md:   1rem;
    --zb-fs-lg:   1.125rem;
    --zb-fs-xl:   1.375rem;
    --zb-fs-2xl:  1.75rem;
    --zb-fs-3xl:  2.25rem;
    --zb-fs-4xl:  3rem;
    --zb-fs-5xl:  4rem;

    /* Z-index layers */
    --zb-z-base:    1;
    --zb-z-sticky:  100;
    --zb-z-modal:   1000;
    --zb-z-toast:   2000;

    /* Header height for offset */
    --zb-header-h:  128px;
}


/* ─────────────────────────────────────────────────────────────
   02. CSS RESET & BASE
───────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body,
.zaabar-body {
    font-family:        var(--zb-font);
    background-color:   var(--zb-bg);
    color:              var(--zb-text);
    line-height:        1.6;
    min-height:         100vh;
    direction:          ltr;
    text-align:         left;
    -webkit-font-smoothing:  antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x:         hidden;
    padding-top:        var(--zb-header-h);
}

ul, ol { list-style: none; }

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--zb-t-fast) var(--zb-ease);
}

img, video, svg {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
    line-height: 1;
}

/* Global optical vertical alignment fix for button text vs icons */
button span, .zb-action-btn span, .zb-btn span, a[class*="-btn"] span, button[class*="-btn"] span {
    display: inline-block;
    line-height: 1;
    transform: translateY(1px);
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

::selection {
    background: var(--zb-primary);
    color: #fff;
}


/* ─────────────────────────────────────────────────────────────
   03. TYPOGRAPHY
───────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 { font-size: var(--zb-fs-4xl); }
h2 { font-size: var(--zb-fs-3xl); }
h3 { font-size: var(--zb-fs-2xl); }
h4 { font-size: var(--zb-fs-xl);  }
h5 { font-size: var(--zb-fs-lg);  }
h6 { font-size: var(--zb-fs-md);  }
p  { font-size: var(--zb-fs-md);  }

@media (max-width: 768px) {
    h1 { font-size: var(--zb-fs-3xl); }
    h2 { font-size: var(--zb-fs-2xl); }
    h3 { font-size: var(--zb-fs-xl);  }
}


/* ─────────────────────────────────────────────────────────────
   04. LAYOUT UTILITIES
───────────────────────────────────────────────────────────── */
.zb-container {
    width: 100%;
    max-width: var(--zb-container-max);
    margin-inline: auto;
    padding-inline: var(--zb-container-pad);
}

.zb-flex        { display: flex; }
.zb-flex-center { display: flex; align-items: center; justify-content: center; }
.zb-grid        { display: grid; }

.zb-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}


/* ─────────────────────────────────────────────────────────────
   05. PAGE BASE
───────────────────────────────────────────────────────────── */
#zaabar-app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.zb-page {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.zb-page__title {
    font-size: var(--zb-fs-3xl);
    color: var(--zb-text);
    margin-bottom: var(--zb-gap-md);
}

.zb-page__content {
    color: var(--zb-text-muted);
    font-size: var(--zb-fs-lg);
}

.zb-page--home {
    gap: 0;
}


/* ─────────────────────────────────────────────────────────────
   06. SECTION BASE
───────────────────────────────────────────────────────────── */
.zb-section {
    position: relative;
    width: 100%;
}


/* ─────────────────────────────────────────────────────────────
   07. HEADER – CORE
───────────────────────────────────────────────────────────── */
.zb-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--zb-z-sticky);
    background: var(--zb-bg);
    transition: box-shadow var(--zb-t-mid) var(--zb-ease),
                transform var(--zb-t-mid) var(--zb-ease);
    will-change: box-shadow;
}

/* Subtle shadow when scrolled */
.zb-header.is-scrolled {
    box-shadow: var(--zb-shadow-sm);
}

/* Hairline between top & bottom rows */
.zb-header__divider {
    height: 1px;
    background: var(--zb-border);
    margin: 0;
}


/* ─────────────────────────────────────────────────────────────
   08. HEADER – TOP ROW
───────────────────────────────────────────────────────────── */
.zb-header__top {
    padding: 0;
}

.zb-header__top-inner {
    display: flex;
    align-items: center;
    height: 78px;
    gap: 2.5rem;
}

/* ── Logo ──────────────────────────────────────────────────── */
.zb-header__logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: opacity var(--zb-t-fast) var(--zb-ease);
}
.zb-header__logo:hover {
    opacity: 0.8;
}
.zb-header__logo img {
    height: 110px;
    width: auto;
    object-fit: contain;
    /* Colorize the white-on-transparent PNG logo to brand dark blue (#001f80) */
    filter: brightness(0) saturate(100%) invert(10%) sepia(80%) saturate(4000%) hue-rotate(220deg) brightness(60%);
    transition: filter var(--zb-t-fast) var(--zb-ease);
}
.zb-header__logo:hover img {
    filter: brightness(0) saturate(100%) invert(20%) sepia(90%) saturate(3000%) hue-rotate(210deg) brightness(80%);
}

/* ── Search ────────────────────────────────────────────────── */
.zb-header__search {
    flex: 1;
    max-width: 520px;
}

.zb-search-form {
    display: flex;
    align-items: center;
    height: 42px;
    border: 1.5px solid var(--zb-border-strong);
    border-radius: var(--zb-r-full);
    background: var(--zb-bg);
    transition: border-color var(--zb-t-fast) var(--zb-ease),
                box-shadow var(--zb-t-fast) var(--zb-ease);
    overflow: hidden;
}

.zb-search-form:hover {
    border-color: var(--zb-text-faint);
}

.zb-search-form:focus-within {
    border-color: var(--zb-primary);
    box-shadow: 0 0 0 3px rgba(0, 73, 169, 0.08);
}

.zb-search-form__icon {
    flex-shrink: 0;
    margin-inline-start: 14px;
    color: var(--zb-text-faint);
    transition: color var(--zb-t-fast) var(--zb-ease);
}
.zb-search-form:focus-within .zb-search-form__icon {
    color: var(--zb-primary);
}

.zb-search-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 12px;
    height: 100%;
    background: transparent;
    color: var(--zb-text);
    font-size: var(--zb-fs-sm);
    font-weight: 400;
}
.zb-search-form input::placeholder {
    color: var(--zb-text-faint);
}

.zb-search-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 100%;
    color: var(--zb-text-faint);
    transition: color var(--zb-t-fast) var(--zb-ease),
                background var(--zb-t-fast) var(--zb-ease);
    border-radius: 0;
}
.zb-search-form button:hover {
    color: var(--zb-primary);
    background: rgba(0, 73, 169, 0.04);
}

/* ── Search Dropdown ───────────────────────────────────────── */
.zb-search-results-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
    z-index: 1000;
    overflow: hidden;
    max-height: 450px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.zb-search-results-dropdown.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.zb-search-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 16px;
    text-decoration: none;
    border-bottom: 1px solid var(--zb-border-color);
    transition: background 0.2s;
}
.zb-search-item:last-child {
    border-bottom: none;
}
.zb-search-item:hover {
    background: var(--zb-bg-light);
}
.zb-search-item-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    background: #f8fafc;
    flex-shrink: 0;
}
.zb-search-item-info {
    flex: 1;
    min-width: 0;
}
.zb-search-item-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--zb-text-main);
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.zb-search-item-price {
    font-size: 0.85rem;
    color: var(--zb-primary);
    font-weight: 700;
}
.zb-search-empty {
    padding: 24px 16px;
    text-align: center;
    color: var(--zb-text-muted);
    font-size: 0.95rem;
}

/* ── Actions ───────────────────────────────────────────────── */
.zb-header__actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    margin-inline-start: auto;
}

.zb-action-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--zb-r-md);
    color: var(--zb-text);
    font-weight: 500;
    font-size: var(--zb-fs-sm);
    position: relative;
    transition: background var(--zb-t-fast) var(--zb-ease),
                color var(--zb-t-fast) var(--zb-ease);
    white-space: nowrap;
}
.zb-action-btn:hover {
    background: var(--zb-bg-2);
    color: var(--zb-primary);
}

.zb-action-btn svg {
    flex-shrink: 0;
    transition: color var(--zb-t-fast) var(--zb-ease),
                transform var(--zb-t-fast) var(--zb-ease-spring);
}
.zb-action-btn:hover svg {
    color: var(--zb-primary);
    transform: scale(1.08);
}

.zb-action-btn span {
    letter-spacing: 0.01em;
}

/* Cart Badge */
.zb-cart-badge {
    position: absolute;
    top: 2px;
    inset-inline-start: 2px;
    background: var(--zb-accent);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: var(--zb-r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(230, 57, 70, 0.4);
    animation: zbBadgePop 0.4s var(--zb-ease-spring) both;
}

@keyframes zbBadgePop {
    0%   { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}


/* ─────────────────────────────────────────────────────────────
   09. HEADER – BOTTOM ROW (NAVIGATION)
───────────────────────────────────────────────────────────── */
.zb-header__bottom {
    padding: 0;
}

.zb-header__nav {
    padding: 0.65rem 0;
}

.zb-nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.zb-nav-list li {
    position: relative;
}

.zb-nav-list li > a, .zb-nav-list li > .zb-nav-link-wrap > a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 0.85rem;
    font-size: var(--zb-fs-sm);
    font-weight: 500;
    color: var(--zb-text-muted);
    border-radius: var(--zb-r-sm);
    position: relative;
    transition: color var(--zb-t-fast) var(--zb-ease),
                background var(--zb-t-fast) var(--zb-ease);
}

/* Hover state – subtle bg tint */
.zb-nav-list li > a:hover, .zb-nav-list li > .zb-nav-link-wrap > a:hover {
    color: var(--zb-primary);
    background: rgba(0, 73, 169, 0.04);
}

/* Active state – bold with underline indicator */
.zb-nav-list li > a.active, .zb-nav-list li > .zb-nav-link-wrap > a.active {
    color: var(--zb-primary);
    font-weight: 600;
}
.zb-nav-list li > a.active::after, .zb-nav-list li > .zb-nav-link-wrap > a.active::after {
    content: '';
    position: absolute;
    bottom: -0.65rem;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2.5px;
    border-radius: var(--zb-r-full);
    background: var(--zb-primary);
}

/* Dropdown toggle button */
.zb-nav-link-wrap {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.zb-dropdown-toggle {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    color: inherit;
    display: flex;
    align-items: center;
}
.zb-dropdown-toggle svg {
    transition: transform var(--zb-t-fast) var(--zb-ease);
    opacity: 0.5;
}
.zb-nav-list li.has-dropdown:hover .zb-dropdown-toggle svg {
    transform: translateY(1px);
    opacity: 1;
}

/* ── Boutique Dropdown ── */
.zb-nav-boutique {
    position: relative;
}

.zb-nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 240px;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 14px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid #eee;
}

.zb-nav-boutique:hover .zb-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.zb-dropdown-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.zb-dropdown-menu li {
    margin: 0 !important;
}

.has-sub-dropdown {
    position: relative;
}

.zb-sub-dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 220px;
    max-height: 700px;
    overflow-y: auto;
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 14px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 1px solid #eee;
    list-style: none !important;
    margin: 0 !important;
}

/* Thin custom scrollbar for sub-dropdown */
.zb-sub-dropdown-menu::-webkit-scrollbar {
    width: 5px;
}
.zb-sub-dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}
.zb-sub-dropdown-menu::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}
.zb-sub-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}
.zb-sub-dropdown-menu {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.has-sub-dropdown:hover .zb-sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.zb-sub-dropdown-menu li {
    margin: 0 !important;
}

.zb-sub-dropdown-menu li a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px !important;
    color: #4a4a4a !important;
    text-decoration: none !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.zb-sub-dropdown-menu li a:hover {
    background: #f8fafc;
    color: #1e3a8a !important;
    transform: translateX(4px);
}

.zb-dropdown-menu li a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px !important;
    color: #4a4a4a !important;
    text-decoration: none !important;
    font-size: 0.92rem !important;
    font-weight: 500 !important;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.zb-dropdown-menu li a:hover {
    background: #f9f8f6 !important;
    color: #2d2a26 !important;
    padding-left: 20px !important;
}

.zb-cat-count {
    background: rgb(233 229 223);
    color: #5a5650;
    font-size: 0.72rem;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 700;
    min-width: 32px;
    text-align: center;
}


/* ── Contact Call Button ─────────────────────────────────── */
.zb-nav-contact-call {
    position: relative;
    display: flex;
    align-items: center;
}

.zb-contact-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0 1rem 0 0.8rem;
    height: 40px;
    border: 1.8px solid var(--zb-border-strong, #c8cdd8);
    border-radius: var(--zb-r-full);
    background: transparent;
    color: var(--zb-text, #1a1a2e);
    font-size: var(--zb-fs-sm);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color var(--zb-t-fast) var(--zb-ease),
                color var(--zb-t-fast) var(--zb-ease),
                background var(--zb-t-fast) var(--zb-ease),
                box-shadow var(--zb-t-fast) var(--zb-ease);
    font-family: inherit;
    letter-spacing: 0.01em;
}

.zb-contact-call-btn:hover {
    border-color: var(--zb-primary, #0049a9);
    color: var(--zb-primary, #0049a9);
    background: rgba(0, 73, 169, 0.04);
}

.zb-contact-call-btn.is-open {
    border-color: var(--zb-primary, #0049a9);
    color: var(--zb-primary, #0049a9);
    box-shadow: 0 0 0 3px rgba(0, 73, 169, 0.1);
}

.zb-contact-call-chevron {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.65;
    flex-shrink: 0;
}
.zb-contact-call-btn.is-open .zb-contact-call-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Dropdown panel */
.zb-contact-call-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 280px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.15),
                0 0 0 1px rgba(0, 0, 0, 0.06);
    padding: 14px;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.97);
    transform-origin: top right;
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.zb-contact-call-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Each phone item */
.zb-contact-call-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 10px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.zb-contact-call-item:hover {
    background: #f5f7fb;
}

/* Icon circle */
.zb-contact-call-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.zb-contact-call-item:hover .zb-contact-call-icon {
    transform: scale(1.05);
}

.zb-contact-call-icon--phone {
    background: rgba(0, 73, 169, 0.08);
    color: var(--zb-primary, #0049a9);
}

/* Text */
.zb-contact-call-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.zb-contact-call-label {
    font-size: 0.75rem;
    color: var(--zb-text-muted, #6b7280);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.zb-contact-call-number {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--zb-text, #1a1a2e);
    letter-spacing: 0.03em;
    font-variant-numeric: tabular-nums;
}

/* Separator line */
.zb-contact-call-separator {
    height: 1px;
    background: var(--zb-border, #e8ecf3);
    margin: 4px 10px;
}


/* ─────────────────────────────────────────────────────────────
   10. HEADER – MOBILE
───────────────────────────────────────────────────────────── */


/* Hamburger button */
.zb-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: var(--zb-r-sm);
    cursor: pointer;
    transition: background var(--zb-t-fast) var(--zb-ease);
}
.zb-mobile-toggle:hover {
    background: var(--zb-bg-2);
}
.zb-mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--zb-text);
    border-radius: var(--zb-r-full);
    transition: transform var(--zb-t-mid) var(--zb-ease),
                opacity var(--zb-t-mid) var(--zb-ease),
                width var(--zb-t-mid) var(--zb-ease);
}
.zb-mobile-toggle span:nth-child(1) { width: 22px; }
.zb-mobile-toggle span:nth-child(2) { width: 18px; }
.zb-mobile-toggle span:nth-child(3) { width: 14px; }

/* Active hamburger = X */
.zb-mobile-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 22px;
}
.zb-mobile-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-8px);
}
.zb-mobile-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 22px;
}

/* Mobile overlay */
.zb-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: calc(var(--zb-z-sticky) - 1);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--zb-t-mid) var(--zb-ease);
}
.zb-mobile-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* Hide mobile side panel elements on desktop */
.zb-sidepanel-header, .zb-sidepanel-footer {
    display: none;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 992px) {
    :root {
        --zb-header-h: 110px;
    }

    .zb-header__top-inner {
        height: 110px;
        gap: 1rem;
    }

    .zb-header__logo img {
        height: 95px;
    }

    .zb-header__search {
        max-width: none;
        flex: 1;
    }

    .zb-action-btn span {
        display: none;
    }
    .zb-action-btn {
        padding: 0.5rem;
    }

    .zb-mobile-toggle {
        display: flex;
        z-index: 1002;
        position: relative;
    }

    /* Nav as Side Panel on mobile */
    .zb-mobile-toggle.is-active {
        opacity: 0; /* Hide the main toggle when side panel is open */
        pointer-events: none;
    }

    .zb-header__divider {
        display: none;
    }

    .zb-sidepanel-header, .zb-sidepanel-footer {
        display: flex;
    }

    .zb-header__bottom {
        position: fixed;
        top: 0;
        right: -350px; /* Slide from right */
        width: 350px;
        max-width: 85vw;
        height: 100vh;
        max-height: none;
        background: #f4f6f9; /* Light pastel blue/gray */
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        border-top: none;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1001; /* Above overlay */
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    .zb-header__bottom.is-open {
        right: 0;
    }

    /* Sidepanel Header */
    .zb-sidepanel-header {
        justify-content: space-between;
        align-items: center;
        padding: 2rem 1.5rem 1.5rem;
    }
    .zb-sidepanel-brand {
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        color: #0f172a;
    }
    .zb-sidepanel-close {
        background: transparent;
        border: none;
        color: #1e3a8a;
        cursor: pointer;
        padding: 0;
        display: flex;
    }

    /* Sidepanel Nav Links */
    .zb-nav-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.5rem;
        gap: 0;
    }
    .zb-nav-list li {
        width: 100%;
    }
    .zb-nav-link-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .zb-dropdown-toggle {
        padding: 0.5rem;
        color: #0f172a;
    }
    .zb-dropdown-toggle.is-open svg {
        transform: rotate(180deg);
    }
    .zb-nav-dropdown {
        display: none;
        position: static;
        width: 100%;
        box-shadow: none;
        background: transparent;
        padding: 0 0 0 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
    }
    .zb-nav-dropdown.is-open {
        display: block;
    }
    .zb-dropdown-menu li a {
        font-size: 1.1rem !important;
        padding: 0.5rem 0 !important;
        color: #334155 !important;
    }
    
    .zb-sub-dropdown-menu {
        display: none;
        position: static;
        width: 100%;
        box-shadow: none;
        background: transparent;
        padding: 0 0 0 1.5rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
    }
    
    .has-sub-dropdown:hover .zb-sub-dropdown-menu {
        display: block;
    }
    
    .zb-sub-dropdown-menu li a {
        font-size: 1.05rem !important;
        padding: 0.4rem 0 !important;
        color: #475569 !important;
    }
    
    .zb-nav-list li > a, .zb-nav-list li > .zb-nav-link-wrap > a {
        padding: 0.65rem 0;
        border-radius: 0;
        font-size: 1.35rem;
        color: #0f172a;
        font-weight: 400;
        background: transparent !important;
        position: relative;
    }
    .zb-nav-list li > a.active, .zb-nav-list li > .zb-nav-link-wrap > a.active {
        color: #1e3a8a;
    }
    .zb-nav-list li > a.active::after, .zb-nav-list li > .zb-nav-link-wrap > a.active::after {
        content: '';
        display: block;
        position: absolute;
        bottom: 0.4rem;
        left: 0;
        width: 100%;
        height: 1px;
        background: #1e3a8a;
    }
    
    .zb-nav-contact-call {
        display: none !important; /* Hide original nav contact dropdown */
    }

    /* Sidepanel Footer */
    .zb-sidepanel-footer {
        margin-top: auto;
        padding: 2rem 1.5rem;
        flex-direction: column;
        color: #0f172a;
    }
    .zb-sidepanel-divider {
        height: 1px;
        width: 100%;
        background: rgba(0,0,0,0.06);
        margin-bottom: 1.5rem;
    }
    .zb-sidepanel-block {
        margin-bottom: 1.5rem;
    }
    .zb-sidepanel-block:last-child {
        margin-bottom: 0;
    }
    .zb-sidepanel-block h4 {
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: #0f172a;
    }
    .zb-sidepanel-block p {
        font-size: 0.85rem;
        margin: 0 0 0.3rem 0;
        color: #334155;
    }
    .zb-sidepanel-block a {
        color: inherit;
        text-decoration: none;
    }
}

@media (max-width: 576px) {
    .zb-header__search {
        display: none;
    }

    .zb-header__top-inner {
        gap: 0.5rem;
    }
}

/* ─────────────────────────────────────────────────────────────
   11. FOOTER
───────────────────────────────────────────────────────────── */
.zb-footer {
    position: relative;
    background: linear-gradient(135deg, #0052b4 0%, #003d99 30%, #001f80 70%, #001560 100%);
    color: #fff;
    overflow: hidden;
    margin-top: auto;
}

/* ── Decorative pattern overlay ────────────────────────────── */
/* ── Scattered decorative icons ─────────────────────────────── */
.zb-footer__pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.zb-deco {
    position: absolute;
    color: rgba(255, 255, 255, 0.07);
    opacity: 1;
}

/* ── Main footer area ──────────────────────────────────────── */
.zb-footer__main {
    position: relative;
    z-index: 1;
    padding: 4.5rem 0 3rem;
}

.zb-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
    gap: 3rem;
}

/* ── Brand column ──────────────────────────────────────────── */
.zb-footer__col--brand {
    padding-inline-end: 1.5rem;
}

.zb-footer__logo {
    display: inline-block;
    margin-bottom: 0.25rem; /* Reduced bottom margin */
}
.zb-footer__logo img {
    height: 180px;
    width: auto;
    object-fit: contain;
    filter: none;
    margin-top: -80px;
    margin-bottom: -30px;
}

.zb-footer__tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

/* Social icons */
.zb-footer__social {
    display: flex;
    gap: 0.6rem;
}
.zb-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--zb-r-full);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: background var(--zb-t-fast) var(--zb-ease),
                color var(--zb-t-fast) var(--zb-ease),
                transform var(--zb-t-fast) var(--zb-ease-spring);
}
.zb-social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

/* ── Link columns ──────────────────────────────────────────── */
.zb-footer__heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 0.75rem;
}
.zb-footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2.5px;
    border-radius: var(--zb-r-full);
    background: rgba(255, 255, 255, 0.35);
}

.zb-footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.zb-footer__links li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    transition: color var(--zb-t-fast) var(--zb-ease),
                padding-inline-start var(--zb-t-fast) var(--zb-ease);
}
.zb-footer__links li a:hover {
    color: #fff;
    padding-inline-start: 6px;
}

/* ── Newsletter column ─────────────────────────────────────── */
.zb-footer__newsletter-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.zb-newsletter-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--zb-r-full);
    overflow: hidden;
    transition: border-color var(--zb-t-fast) var(--zb-ease),
                box-shadow var(--zb-t-fast) var(--zb-ease);
}
.zb-newsletter-input-wrap:focus-within {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.zb-newsletter-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
}
.zb-newsletter-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.zb-newsletter-input-wrap button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: var(--zb-r-full);
    margin: 3px;
    flex-shrink: 0;
    transition: background var(--zb-t-fast) var(--zb-ease),
                transform var(--zb-t-fast) var(--zb-ease-spring);
}
.zb-newsletter-input-wrap button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* Contact info */
.zb-footer__contact-info {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.zb-footer__contact-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}
.zb-footer__contact-row svg {
    flex-shrink: 0;
    opacity: 0.6;
}

/* ── Bottom bar ────────────────────────────────────────────── */
.zb-footer__bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
}
.zb-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.zb-footer__copyright {
    color: #ffffff;
    font-size: 0.95rem;
}
.zb-footer__bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.zb-footer__bottom-links a {
    color: #ffffff;
    font-size: 0.95rem;
    transition: color var(--zb-t-fast) var(--zb-ease);
}
.zb-footer__bottom-links a:hover {
    color: var(--zb-primary);
}
.zb-footer__dot {
    color: rgba(255, 255, 255, 0.25);
    font-size: var(--zb-fs-xs);
}

/* ── Footer responsive ─────────────────────────────────────── */
@media (max-width: 992px) {
    .zb-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .zb-footer__col--brand {
        grid-column: 1 / -1;
        padding-inline-end: 0;
    }
    .zb-footer__tagline {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .zb-footer__main {
        padding: 3rem 0 2rem;
    }
    .zb-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .zb-footer__bottom-inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}


/* ─────────────────────────────────────────────────────────────
   12. CUSTOM SCROLLBAR
───────────────────────────────────────────────────────────── */
::-webkit-scrollbar              { width: 6px; height: 6px; }
::-webkit-scrollbar-track        { background: var(--zb-bg-2); }
::-webkit-scrollbar-thumb        { background: var(--zb-border-strong); border-radius: var(--zb-r-full); }
::-webkit-scrollbar-thumb:hover  { background: var(--zb-primary); }


/* ─────────────────────────────────────────────────────────────
   13. HERO SECTION
───────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&display=swap');

.zb-hero {
    position: relative;
    width: 100%;
    /* Fill from bottom of header to bottom of viewport */
    height: calc(100vh - var(--zb-header-h));
    min-height: 500px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Giant background title (like "BAKED TO BLISS") ── */
.zb-hero__bg-title {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 4%;
    pointer-events: none;
    z-index: 1;
    gap: 0;
    line-height: 0.85;
}

.zb-hero__bg-word {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 900;
    font-size: clamp(5rem, 14vw, 14rem);
    color: rgba(255, 255, 255, 0.06);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    white-space: nowrap;
    user-select: none;
}

/* ── Main container ── */
.zb-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 0;
    padding-top: clamp(1.5rem, 3vh, 3rem);
    padding-bottom: 0; /* no bottom padding so image sits flush */
}

/* ── Content row (headline centered) ── */
.zb-hero__content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0 1rem;
    position: relative;
    z-index: 3;
}

/* ── Headline in the center ── */
.zb-hero__main-title-wrap {
    text-align: center;
}

.zb-hero__title {
    /* Screen-reader only - the visual title is the bg-title */
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap;
}

.zb-hero__subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    font-weight: 700;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.zb-hero__description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-top: 1.5rem;
    max-width: 550px;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* ── Side info panels ── */
.zb-hero__side {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.zb-hero__side--right {
    justify-content: flex-end;
}

/* Shared styles for both floating bottom info cards */
.zb-hero__side--bottom-left,
.zb-hero__side--bottom-right {
    position: absolute;
    z-index: 6;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    width: 230px; /* fixed — both cards identical size */
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    padding: 0.85rem 1rem;
    bottom: clamp(110px, 18vh, 180px);
}

/* Individual anchors */
.zb-hero__side--bottom-left  { left:  clamp(1rem, 4vw, 4rem); }
.zb-hero__side--bottom-right { right: clamp(1rem, 4vw, 4rem); }

.zb-hero__side-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
}

.zb-hero__side-text {
    max-width: 200px;
}

.zb-hero__side-text p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin: 0 0 0.5rem;
}

.zb-hero__link {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: opacity 0.2s;
}

.zb-hero__link:hover { opacity: 0.7; }

/* ── Center hero image — pinned to bottom, full-width spread ── */
.zb-hero__image-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1100px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
    /* Extra room at the bottom for the overlaid controls */
    padding-bottom: 110px;
}

.zb-hero__image {
    display: block;
    /* Wide horizontal spread like the reference: ~70% of viewport width */
    width: clamp(520px, 72vw, 1000px);
    height: auto;
    max-height: 78vh;
    object-fit: contain;
    object-position: bottom center;
    /* stronger shadow to ground the products */
    filter:
        drop-shadow(0 40px 60px rgba(0, 10, 60, 0.65))
        drop-shadow(0 0 100px rgba(80, 150, 255, 0.30));
    animation: zb-hero-float 4.5s ease-in-out infinite;
    transform-origin: bottom center;
}

/* Pause float while JS is animating a slide */
.zb-hero--sliding .zb-hero__image {
    animation: none;
}

@keyframes zb-hero-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}

/* Hero dynamic text: default transitions */
#zbHeroSubtitle,
#zbHeroBgWord1,
#zbHeroBgWord2,
#zbHeroTextLeft,
#zbHeroTextRight {
    will-change: opacity, transform;
}


/* ── Bottom row: glass thumbnails + CTA — overlaid on image bottom ── */
.zb-hero__bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    pointer-events: all; /* re-enable clicks */
    z-index: 20;
}

/* Glass pill strip */
.zb-hero__glass-panel {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--zb-r-xl);
    padding: 0.5rem 1rem;
}

.zb-hero__glass-item {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    overflow: hidden;
}

.zb-hero__glass-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.zb-hero__glass-item svg {
    color: rgba(255,255,255,0.7);
    width: 28px;
    height: 28px;
}

.zb-hero__glass-item:hover,
.zb-hero__glass-item.active {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* CTA Button */
.zb-btn--explore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.5rem;
    border-radius: var(--zb-r-full);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255,255,255,0.35);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, transform 0.25s var(--zb-ease-spring);
    cursor: pointer;
}

.zb-btn--explore:hover {
    background: rgba(255,255,255,0.28);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px) scale(1.03);
    color: #ffffff;
    text-decoration: none;
}

/* ── Sale Layout Overrides (Slide 2) ── */
.zb-hero[data-layout="sale"] .zb-hero__container {
    display: block;
}

/* Hide default contents */
.zb-hero[data-layout="sale"] .zb-hero__content,
.zb-hero[data-layout="sale"] .zb-hero__bg-title,
.zb-hero[data-layout="sale"] .zb-hero__bg-word,
.zb-hero[data-layout="sale"] .zb-hero__side,
.zb-hero[data-layout="sale"] .zb-hero__image-wrapper {
    display: none !important;
}

/* Sale Block Container */
.zb-hero__sale-block {
    display: none;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 10;
    pointer-events: none;
}
.zb-hero[data-layout="sale"] .zb-hero__sale-block {
    display: block;
}

/* Yellow Slanted Background with Image */
.zb-hero__sale-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #FFB800;
    background-image: url('../logo/cat2.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

/* Content Area */
.zb-hero__sale-content {
    position: relative;
    z-index: 5;
    padding-top: clamp(60px, 10vh, 120px);
    padding-left: clamp(2rem, 8vw, 8rem);
    pointer-events: all;
    will-change: opacity, transform;
}

/* Header: Clearance Sale */
.zb-hero__sale-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.zb-hero__sale-clearance {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    font-family: 'Inter', sans-serif;
}
.zb-hero__sale-badge {
    background: #F1261B;
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    padding: 0.1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(241, 38, 27, 0.3);
}

/* Main Card: UP TO 70% OFF */
.zb-hero__sale-main-card {
    background: #0D42A4;
    display: inline-flex;
    flex-direction: column;
    padding: 1.5rem 6rem 1.5rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    margin-bottom: 0;
    position: relative;
}
.zb-hero__sale-upto {
    color: #4DE1C1;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: -15px;
    text-transform: uppercase;
}
.zb-hero__sale-percent-wrap {
    display: flex;
    align-items: baseline;
    color: white;
}
.zb-hero__sale-percent {
    font-size: clamp(7rem, 14vw, 12rem);
    font-weight: 900;
    line-height: 0.9;
    position: relative;
    letter-spacing: -0.05em;
    margin-right: 2rem; /* Give some space for the OFF badge */
}
.zb-hero__sale-off {
    position: absolute;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    background: #1B75FF;
    color: white;
    font-size: 2.2rem;
    font-weight: 800;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(27, 117, 255, 0.3);
}

/* CTA Button */
.zb-hero__sale-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFB800;
    color: #000;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    margin-left: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    transition: transform 0.2s;
}
.zb-hero__sale-btn:hover {
    transform: translateY(-3px) scale(1.02);
    color: #000;
}
.zb-hero__sale-btn svg {
    width: 20px; height: 20px;
}

/* List */
.zb-hero__sale-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 2rem;
    margin-top: 1rem;
}
.zb-hero__sale-list li {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .zb-hero__content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: center;
    }
    .zb-hero__side { justify-content: center; }
    .zb-hero__side-text { max-width: 280px; }
    .zb-hero__side-icon { display: none; }
}

@media (max-width: 640px) {
    .zb-hero {
        height: calc(100svh - var(--zb-header-h));
    }
    .zb-hero__bg-word { font-size: clamp(3.5rem, 18vw, 7rem); }
    .zb-hero__image { width: clamp(300px, 90vw, 600px); }
    .zb-hero__image-wrapper { max-width: 100%; padding-bottom: 70px; }
    .zb-hero__glass-item { width: 46px; height: 46px; }
    .zb-hero__content { display: none; }
}



/* ─────────────────────────────────────────────────────────────
   14. CATEGORIES SECTION
───────────────────────────────────────────────────────────── */

.zb-categories {
    background: #f5f6fa;
    padding: clamp(3rem, 7vh, 6rem) 0;
}

/* Override container inside categories to go full-width */
.zb-categories .zb-container {
    max-width: 100%;
    padding-inline: 20px;
}

.zb-categories__header {
    text-align: center;
    margin-bottom: clamp(2rem, 4vh, 3.5rem);
}

.zb-categories__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--zb-primary);
    background: rgba(0,73,169,0.08);
    border-radius: var(--zb-r-full);
    padding: 0.3rem 1rem;
    margin-bottom: 0.75rem;
}

.zb-categories__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--zb-text);
    margin: 0.25rem 0;
}

.zb-categories__desc {
    font-size: 1rem;
    color: var(--zb-text-muted);
    max-width: 520px;
    margin: 0.5rem auto 0;
    line-height: 1.6;
}

.zb-categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.zb-cat-card {
    position: relative;
    display: flex;
    align-items: stretch;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    min-height: 240px;
    transition: transform 0.25s var(--zb-ease-spring), box-shadow 0.25s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.zb-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.zb-cat-card__body {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    z-index: 2;
    max-width: 65%;
}

.zb-cat-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 20px;
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1; /* Helps vertical alignment */
    color: var(--zb-text);
    margin-bottom: 2rem;
    width: fit-content;
}

.zb-cat-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    display: block;
}

.zb-cat-card__title {
    font-family: var(--zb-font-sans);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--zb-text);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.zb-cat-card__desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #4b5563;
    margin: 0 0 2rem;
}

.zb-cat-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--zb-text);
    border-bottom: 1.5px solid var(--zb-text);
    padding-bottom: 0.15rem;
    margin-top: auto;
    width: fit-content;
    transition: opacity 0.2s;
}

.zb-cat-card:hover .zb-cat-card__link {
    opacity: 0.8;
}

.zb-cat-card__link svg {
    transition: transform 0.25s var(--zb-ease-spring);
}

.zb-cat-card:hover .zb-cat-card__link svg {
    transform: translateX(4px);
}

/* ── Geometric Visuals Container ── */
.zb-cat-card__geometric {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

/* ── Category Image Overlay ── */
.zb-cat-img-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    max-height: 90%;
    max-width: 50%;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

/* ── Card 1: Food (Orange/Peach) ── */
.zb-cat-card--food {
    background-color: #FAEDE1;
}

.zb-geo-shape--orange-1,
.zb-geo-shape--orange-2,
.zb-geo-shape--orange-3 {
    position: absolute;
    background: linear-gradient(135deg, #F5B99A 0%, #E9866F 100%);
    border-radius: 20px;
    width: 140px;
    height: 80px;
    transform: rotate(45deg);
}
.zb-geo-shape--orange-1 { top: -20px; right: -50px; opacity: 0.35; }
.zb-geo-shape--orange-2 { top: 60px; right: 10px; opacity: 0.9; }
.zb-geo-shape--orange-3 { top: 140px; right: -50px; opacity: 0.6; }

/* ── Card 2: Non-Food (Purple) ── */
.zb-cat-card--nonfood {
    background-color: #EFEBF5;
}

.zb-geo-shape--purple-circle {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #BEACDB;
    border-radius: 50%;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
}

.zb-geo-shape--purple-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle at 75% 50%, rgba(255,255,255,0) 30%, rgba(181,161,219,0.3) 50%, rgba(255,255,255,0) 70%);
    top: 50%;
    right: -40px;
    transform: translateY(-50%);
}

/* ── Card 3: Appliance (Green) ── */
.zb-cat-card--appliance {
    background-color: #E7F2E6;
}

.zb-geo-shape--green-block-1,
.zb-geo-shape--green-block-2,
.zb-geo-shape--green-block-3 {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 20px;
}
.zb-geo-shape--green-block-1 {
    background: linear-gradient(135deg, #578D6A 0%, #7CB08B 100%);
    top: -20px; right: 20px;
}
.zb-geo-shape--green-block-2 {
    background: linear-gradient(135deg, #81B391 0%, #ABCBAE 100%);
    top: 70px; right: -50px;
}
.zb-geo-shape--green-block-3 {
    background: linear-gradient(135deg, #9FCAAD 0%, #E3EFE5 100%);
    top: 160px; right: 20px;
}

/* ── Card 4: Packaging (Blue/Sky) ── */
.zb-cat-card--packaging {
    background-color: #E1EEF9;
}

.zb-geo-shape--blue-1,
.zb-geo-shape--blue-2,
.zb-geo-shape--blue-3 {
    position: absolute;
    border-radius: 50%;
}
.zb-geo-shape--blue-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #7AB8E0 0%, #5A9FD4 100%);
    top: -30px; right: -20px;
    opacity: 0.4;
}
.zb-geo-shape--blue-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5A9FD4 0%, #3B82C4 100%);
    top: 80px; right: 30px;
    opacity: 0.85;
}
.zb-geo-shape--blue-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #A0CEE8 0%, #7AB8E0 100%);
    top: 150px; right: -40px;
    opacity: 0.5;
}

/* ── Categories bottom banner strip ── */
.zb-cat-card-wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.zb-cat-card-wrap .zb-cat-card {
    border-radius: 16px;
    flex: 1;
    position: relative;
    z-index: 2;
}

.zb-cat-card__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #e2e3e8;
    border-radius: 0 0 16px 16px;
    padding: 0.75rem 1rem;
    padding-top: 1.5rem;
    margin-top: -12px;
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    font-weight: 600;
    color: #5a5d6a;
    letter-spacing: 0.03em;
}

/* Per-card footer colors */
.zb-cat-card--food    ~ .zb-cat-card__footer { background: #F0D6C2; color: #8B5E3C; }
.zb-cat-card--nonfood ~ .zb-cat-card__footer { background: #DED6EE; color: #6B5A8E; }
.zb-cat-card--appliance ~ .zb-cat-card__footer { background: #D2E6D0; color: #4A7350; }
.zb-cat-card--packaging ~ .zb-cat-card__footer { background: #C9DDEF; color: #3E6E9A; }

.zb-cat-card--food    ~ .zb-cat-card__footer svg { color: #8B5E3C; }
.zb-cat-card--nonfood ~ .zb-cat-card__footer svg { color: #6B5A8E; }
.zb-cat-card--appliance ~ .zb-cat-card__footer svg { color: #4A7350; }
.zb-cat-card--packaging ~ .zb-cat-card__footer svg { color: #3E6E9A; }

.zb-cat-card__footer svg {
    flex-shrink: 0;
}

/* ── Marquee logo strip ── */
.zb-cat-card__footer--marquee {
    padding: 0.75rem 0;
    padding-top: 1.75rem;
    overflow: hidden;
}

.zb-marquee {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.zb-marquee__track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: max-content;
    animation: zb-marquee-scroll 40s linear infinite;
}

.zb-marquee__logo {
    height: 50px;
    width: auto;
    min-width: 80px;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 1;
    background: rgba(255, 255, 255, 0.85);
    padding: 8px 18px;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.zb-marquee__logo:hover {
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

@media (max-width: 1200px) {
    .zb-categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .zb-categories__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}


/* ─────────────────────────────────────────────────────────────
   15. FEATURED PRODUCTS SECTION
───────────────────────────────────────────────────────────── */

.zb-featured {
    background: #ffffff;
    padding: clamp(3rem, 7vh, 6rem) 0;
}

/* ── Header row ── */
.zb-featured__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
}

.zb-featured__label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--zb-primary);
    background: rgba(0,73,169,0.08);
    border-radius: var(--zb-r-full);
    padding: 0.3rem 1rem;
    margin-bottom: 0.5rem;
}

.zb-featured__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--zb-text);
    margin: 0;
}

.zb-featured__view-all {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--zb-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.zb-featured__view-all::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2.5px;
    border-radius: var(--zb-r-full);
    background: var(--zb-primary);
}

.zb-featured__view-all:hover {
    color: #003580; /* Slightly darker on hover */
}

.zb-featured__view-all svg {
    transition: transform 0.3s var(--zb-ease-spring);
}

.zb-featured__view-all:hover svg {
    transform: translateX(4px);
}

/* ── Product grid ── */
.zb-featured__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* ══════════════════════════════════════════
   PRODUCT CARD – Reference design
   ══════════════════════════════════════════ */

.zb-product-card {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s var(--zb-ease-spring), box-shadow 0.3s;
}

.zb-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* ── Inner image area (gray box) ── */
.zb-product-card__image-area {
    background: #ffffff;
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 1 / 1; /* Makes the box a perfect square */
    overflow: hidden;
}

/* Badges row at top */
.zb-product-card__badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
}

.zb-product-card__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 99px;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.zb-product-card__badge--dark {
    background: #3d3d3d;
    color: #ffffff;
}

.zb-product-card__badge--light {
    background: #ffffff;
    color: #5a5650;
    border: 1px solid #eee;
}

/* Product image */
.zb-product-card__img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    transition: transform 0.4s var(--zb-ease-spring);
    z-index: 1;
}

.zb-product-card:hover .zb-product-card__img {
    transform: scale(1.08);
}

/* ── Left Actions (Pills inside gray area) ── */
.zb-product-card__actions-left {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: flex;
    gap: 6px;
    z-index: 3;
}

/* ── Right Actions (Cutout at bottom right) ── */
.zb-product-card__actions-right {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #f9f9f9;
    padding: 10px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 2;
}

.zb-product-card__actions-right::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 0 0, transparent 20px, #f9f9f9 20.5px);
}

.zb-product-card__actions-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -20px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 0 0, transparent 20px, #f9f9f9 20.5px);
}

.zb-product-card__actions-right-inner {
    display: flex;
    gap: 6px;
}

/* Pill and Button Styles */
.zb-product-card__status-pill {
    background: rgb(233 229 223);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    border: 1px solid rgba(255,255,255,0.5);
    color: #2d2a26;
    transition: all 0.3s ease;
}

.zb-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.zb-status-dot--instock { 
    background: #10b981; 
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.15), 0 0 8px rgba(16, 185, 129, 0.3); 
}
.zb-status-dot--outofstock { 
    background: #ef4444; 
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15), 0 0 8px rgba(239, 68, 68, 0.3); 
}

.zb-product-card__pill-top {
    font-size: 0.65rem;
    font-weight: 600;
    color: #9a9590;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    display: block;
}

.zb-product-card__pill-top-icon {
    display: block;
}

.zb-product-card__pill-bottom {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2d2a26;
    line-height: 1;
    display: block;
}

.zb-product-card__action-btn {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #e8e5df;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a5650;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    position: relative;
}

.zb-product-card__action-btn:hover {
    background: #dcd7ce;
    color: #1a1a1a;
    transform: scale(1.05);
}

.zb-product-card__action-btn.is-favoris svg path {
    fill: #ef4444;
    stroke: #ef4444;
}

.zb-product-card__action-btn.in-cart {
    background: #d4f2d4;
    color: #198831;
}

.zb-product-card__action-btn.in-cart:hover {
    background: #bfe5bf;
    color: #126322;
}

.zb-product-card__action-btn .cart-qty-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #198831;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    pointer-events: none;
    line-height: 1;
    padding: 0;
    padding-top: 4px;
    margin: 0;
    box-sizing: border-box;
}

/* ── Info area (below gray box) ── */
.zb-product-card__info {
    padding: 0.85rem 0.5rem 0.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.zb-product-card__info-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
}

.zb-product-card__brand {
    font-size: 0.78rem;
    font-weight: 500;
    color: #9a9590;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.zb-product-card__old-price {
    font-size: 0.8rem;
    color: #9a9590;
    text-decoration: line-through;
}

.zb-product-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2d2a26;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    padding-right: 6px;
}

.zb-product-card__price {
    font-size: 1.15rem;
    font-weight: 800;
    color: #2d2a26;
    white-space: nowrap;
}

/* ── Featured responsive ── */
@media (max-width: 1200px) {
    .zb-featured__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .zb-featured__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .zb-featured__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
        margin: 0 auto;
        justify-content: center;
        align-items: stretch;
    }
    .zb-featured__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .zb-product-card {
        padding: 4px;
        border-radius: 12px;
    }
    .zb-product-card__image-area {
        padding: 6px;
        border-radius: 8px;
    }
    /* Scale down the cutouts and buttons to prevent overlap */
    .zb-product-card__actions-right {
        padding: 4px;
        border-top-left-radius: 10px;
        border-bottom-right-radius: 8px;
    }
    .zb-product-card__price {
        font-size: 0.95rem;
    }
    .zb-product-card__name {
        font-size: 0.9rem;
    }
    .zb-product-card__brand {
        font-size: 0.7rem;
    }
    .zb-product-card__old-price {
        font-size: 0.75rem;
    }
    .zb-product-card__actions-left {
        padding: 4px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 8px;
    }
    /* Hide the status text "En stock" to save space, keep only the dot */
    .zb-status-text {
        display: none;
    }
    .zb-product-card__status-pill {
        padding: 4px;
        border-radius: 50%; /* Make it just a circle pill for the dot */
    }
    .zb-product-card__action-btn {
        width: 28px;
        height: 28px;
        min-width: 28px;
        padding: 0;
    }
    .zb-product-card__action-btn svg {
        width: 14px;
        height: 14px;
    }
    .zb-product-card__action-pill {
        padding: 0.3rem;
        font-size: 0.75rem;
    }
    .zb-product-card__info {
        padding: 0.5rem 0.25rem 0.25rem;
    }
    .zb-product-card__name {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }
    .zb-product-card__price {
        font-size: 0.85rem;
    }
    .zb-product-card__badge {
        font-size: 0.55rem;
        padding: 2px 4px;
    }
    .zb-product-card__brand {
        font-size: 0.6rem;
    }
    .zb-product-card__old-price {
        font-size: 0.65rem;
    }
}

/* ══════════════════════════════════════════
   SECTION 05 – NEWSLETTER
   ══════════════════════════════════════════ */

.zb-section--newsletter {
    padding: 3rem 0 5rem;
}

.zb-newsletter-card {
    background: #f4f5f8;
    border-radius: 24px;
    padding: 3.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.zb-newsletter__content {
    flex: 1;
    max-width: 500px;
}

.zb-newsletter__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--zb-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.zb-newsletter__title {
    font-family: var(--zb-font-body);
    font-size: 2rem;
    font-weight: 700;
    color: #2d2a26;
    line-height: 1.25;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.zb-newsletter__desc {
    font-size: 0.95rem;
    color: #7a7570;
    line-height: 1.6;
    margin: 0;
}

.zb-newsletter__form-area {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
}

.zb-newsletter__form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--zb-primary);
    margin-bottom: 0.75rem;
}

.zb-newsletter__form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.zb-newsletter__input {
    width: 100%;
    padding: 0.9rem 1.4rem;
    font-size: 0.95rem;
    color: #2d2a26;
    background: transparent;
    border: 1.5px solid #dcdbe2;
    border-radius: 99px;
    outline: none;
    transition: border-color 0.3s;
}

.zb-newsletter__input::placeholder {
    color: #a09b95;
}

.zb-newsletter__input:focus {
    border-color: var(--zb-primary);
}

.zb-newsletter__submit {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: var(--zb-primary);
    border: none;
    border-radius: 99px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.zb-newsletter__submit:hover {
    background: #003580;
    transform: translateY(-2px);
}

/* Responsive Newsletter */
@media (max-width: 992px) {
    .zb-newsletter-card {
        flex-direction: column;
        align-items: stretch;
        padding: 3rem 2.5rem;
        gap: 3rem;
    }

    .zb-newsletter__content {
        max-width: 100%;
    }
    
    .zb-newsletter__form-area {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .zb-newsletter-card {
        padding: 2.5rem 1.5rem;
    }

    .zb-newsletter__title {
        font-size: 1.6rem;
    }
}

/* ══════════════════════════════════════════
   SECTION 06 – POPULAR CATEGORIES
   ══════════════════════════════════════════ */

.zb-section--popular {
    padding: 3rem 0;
}

.zb-popular__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2.5rem;
    gap: 1.5rem;
}

.zb-popular__tabs {
    display: inline-flex;
    justify-content: center;
    gap: 0.5rem;
    background: #f4f5f8;
    padding: 0.4rem;
    border-radius: 99px;
}

.zb-popular__tab {
    background: transparent;
    border: none;
    padding: 0.6rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #7a7570;
    border-radius: 99px;
    cursor: pointer;
    transition: all 0.3s var(--zb-ease-spring);
}

.zb-popular__tab:hover {
    color: #2d2a26;
}

.zb-popular__tab.active {
    background: #ffffff;
    color: #2d2a26;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.zb-popular__content {
    animation: zbFadeIn 0.4s ease-out forwards;
}

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

@media (max-width: 768px) {
    .zb-popular__tabs {
        max-width: 100%;
        overflow-x: auto;
        padding-bottom: 4px; /* for scrollbar */
        justify-content: flex-start; /* in case of scrolling, starts from left, but centered if small enough via auto margins or flex */
    }
    .zb-popular__tab {
        white-space: nowrap;
    }
}

/* ─────────────────────────────────────────────────────────────
   TOAST NOTIFICATIONS (PREMIUM)
   ───────────────────────────────────────────────────────────── */
.zb-toast-container {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.zb-toast {
    pointer-events: auto;
    min-width: 320px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(120%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.4s ease;
    opacity: 0;
}

.zb-toast.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.zb-toast__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.zb-toast--success .zb-toast__icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.zb-toast--favoris .zb-toast__icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.zb-toast__content {
    flex: 1;
}

.zb-toast__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.2rem;
}

.zb-toast__desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

.zb-toast__close {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.zb-toast__close:hover {
    color: #4b5563;
}

@media (max-width: 576px) {
    .zb-toast-container {
        top: 1rem;
        right: 1rem;
        left: 1rem;
    }
    .zb-toast {
        min-width: 0;
        width: 100%;
    }
}

/* ══════════════════════════════════════════
   SECTION 07 – WHY CHOOSE US (BENTO GRID)
   ══════════════════════════════════════════ */

.zb-section--why-choose {
    padding: 4rem 0;
}

.zb-bento-wrapper {
    width: 100%;
    padding: 0 100px;
}

.zb-bento-container {
    background: #ffffff;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.zb-bento__cell {
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s var(--zb-ease-spring), box-shadow 0.3s;
}

.zb-bento__cell:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

/* Intro Text (Top Left) */
.zb-bento__cell--intro {
    padding-left: 0;
    padding-top: 1rem;
    justify-content: flex-start;
}

.zb-bento__cell--intro:hover {
    transform: none;
    box-shadow: none;
}

.zb-bento__title {
    font-family: var(--zb-font-body);
    font-size: 2.5rem;
    font-weight: 800; /* Extra Bold */
    color: #1a2b2b; /* Dark teal/slate color from design */
    line-height: 1.1;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.zb-bento__desc {
    font-size: 1.05rem;
    font-weight: 500; /* Medium/Semi-bold */
    color: #6b6560;
    line-height: 1.6;
    margin: 0;
    max-width: 100%; /* Full width */
}

/* Backgrounds for top cards */
.zb-bento__cell--bg-beige {
    background: #faf7f2;
}

.zb-bento__cell--bg-gray {
    background: #f4f5f5;
}

.zb-bento__cell--bg-footer {
    background: linear-gradient(135deg, #0052b4 0%, #003d99 30%, #001f80 70%, #001560 100%);
}

.zb-bento__pattern .zb-deco {
    color: rgba(255, 255, 255, 0.25); /* More visible than footer */
}

.zb-bento__cell--bg-footer .zb-bento__card-title,
.zb-bento__cell--bg-footer .zb-bento__card-desc {
    color: #ffffff;
}

.zb-bento__content-bottom {
    margin-top: auto;
}

.zb-bento__content-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 1.5rem;
}

/* Text inside cards */
.zb-bento__card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2d2a26;
    margin: 0 0 2rem;
}

.zb-bento__card-desc {
    font-size: 0.95rem;
    color: #5a5650;
    line-height: 1.5;
    margin: 0;
}

/* Image Cards (Bottom) */
.zb-bento__cell--img {
    padding: 0;
    min-height: 280px;
}

.zb-bento__cell--span-2 {
    grid-column: span 2;
}

.zb-bento__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s var(--zb-ease-spring);
}

.zb-bento__cell:hover .zb-bento__img {
    transform: scale(1.05);
}

.zb-bento__img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    z-index: 2;
}

.zb-bento__img-content {
    position: relative;
    z-index: 3;
    padding: 2.5rem;
    margin-top: auto;
}

.zb-bento__cell--img .zb-bento__card-title,
.zb-bento__cell--img .zb-bento__card-desc {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* ══════════════════════════════════════════
   SECTION 08 – OUR TRUSTED PARTNERS
   ══════════════════════════════════════════ */

.zb-section--partners {
    padding: 5rem 0;
    overflow: hidden;
    background: transparent;
}

.zb-partners__marquee-container {
    position: relative;
    width: 100%;
    margin-top: 1rem;
}

.zb-partners__mask {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    /* Mask to fade out edges smoothly */
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 2rem 0;
}

.zb-partners__track {
    display: flex;
    width: 100%;
    overflow: hidden;
    gap: 2rem;
}

/* Pause animations on hover */
.zb-partners__track:hover .zb-partners__track-inner {
    animation-play-state: paused;
}

.zb-partners__track-inner {
    display: flex;
    gap: 2rem;
    flex-shrink: 0;
    min-width: 100%;
}

.zb-marquee--left {
    animation: marquee-left var(--marquee-speed, 40s) linear infinite;
}

.zb-marquee--right {
    animation: marquee-right var(--marquee-speed, 50s) linear infinite;
}

.zb-partner-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 2px 10px rgba(0, 0, 0, 0.02);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    margin: 1rem 0; /* Add top/bottom spacing to prevent clipping and give breathing room */
    flex-shrink: 0;
    transition: transform 0.3s var(--zb-ease-spring), box-shadow 0.3s ease;
}

.zb-partner-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
}

.zb-partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.zb-partner-card:hover img {
    transform: scale(1.1);
}

@keyframes marquee-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 2rem));
    }
}

@keyframes marquee-right {
    from {
        transform: translateX(calc(-100% - 2rem));
    }
    to {
        transform: translateX(0);
    }
}

/* ══════════════════════════════════════════
   SECTION 09 – CONTACT PAGE
   ══════════════════════════════════════════ */

/* 1. Hero Map */
.zb-contact-hero {
    position: relative;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f5f5;
    overflow: hidden;
}

.zb-contact-hero__map-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.zb-contact-hero__map-bg iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 150%; /* Extends to the right so its center is at 75% of screen width */
    height: 100%;
    filter: grayscale(100%) contrast(1.1) brightness(1.1) opacity(0.8);
    pointer-events: none;
}

.zb-contact-hero__overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    pointer-events: none;
    z-index: 2;
}

.zb-contact-hero__container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: flex-start; /* Move card to the left */
    width: 100%;
    pointer-events: none; /* Let clicks pass through to map where there's no card */
}

.zb-contact-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    pointer-events: auto; /* Re-enable clicks for the card */
    text-align: center;
}

.zb-contact-card__header {
    margin-bottom: 2rem;
}

.zb-contact-card__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2b2b;
    margin: 1rem 0 0.5rem;
}

.zb-contact-card__address {
    font-size: 0.95rem;
    color: #6b6560;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    line-height: 1.5;
}

.zb-contact-card__address svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--zb-primary);
}

.zb-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.zb-contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: #2d2a26;
    font-size: 0.95rem;
}

.zb-contact-list li:last-child {
    border-bottom: none;
}

.zb-contact-list svg {
    color: var(--zb-primary);
    background: rgba(0, 82, 180, 0.1);
    padding: 8px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    box-sizing: border-box;
}

.zb-contact-card__btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.zb-contact-card__btn svg {
    transition: transform 0.3s ease;
}

.zb-contact-card__btn:hover svg {
    transform: translateX(4px);
}

/* 2. Stats Section */
.zb-contact-stats {
    padding: 4rem 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.zb-stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.zb-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.zb-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a2b2b;
    letter-spacing: -1px;
}

.zb-stat-label {
    font-size: 0.8rem;
    color: #8c8884;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 1.4;
}

/* 3. Contact Bento Section */
.zb-section--contact-bento {
    padding: 6rem 0;
    background: #ffffff;
}

.zb-contact-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.zb-bento-tag {
    display: inline-block;
    color: #e53e3e;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.zb-bento-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
}

.zb-bento-heading {
    font-size: 3rem;
    font-weight: 700;
    color: #1a2b2b;
    line-height: 1.1;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.zb-bento-desc {
    font-size: 1.05rem;
    color: #6b6560;
    line-height: 1.6;
    margin: 0 0 2.5rem;
    max-width: 90%;
}

.zb-contact-bento__right {
    display: block;
    width: 100%;
}

.zb-contact-bento-card {
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.zb-contact-bento-card--light {
    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.03);
}

.zb-contact-bento-card--dark {
    background: #1a1a1a;
    color: #ffffff;
}

.zb-contact-bento-card--dark .zb-contact-bento-card__title {
    color: #ffffff;
}

.zb-contact-bento-card--wide {
    grid-column: span 2;
    background: #faf7f2;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    min-height: 200px;
}

.zb-contact-bento-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.zb-contact-bento-card--light .zb-contact-bento-card__icon {
    background: #ffffff;
    color: #1a2b2b;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.zb-contact-bento-card--dark .zb-contact-bento-card__icon {
    background: #333333;
    color: #ffffff;
}

.zb-contact-bento-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #1a2b2b;
}

.zb-contact-bento-card__desc {
    font-size: 0.9rem;
    color: inherit;
    opacity: 0.7;
    margin: 0;
    line-height: 1.5;
}

.zb-contact-bento-card__content {
    padding: 2.5rem;
    flex: 1;
}

.zb-contact-bento-card__image-wrap {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.zb-contact-bento-card__image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}
/* Left Content Professional Styling */
.zb-contact-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.zb-contact-perks li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #2d2a26;
    font-weight: 500;
}

.zb-contact-perks svg {
    color: var(--zb-primary);
    flex-shrink: 0;
}

.zb-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.zb-contact-actions .zb-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.zb-btn--outline {
    background: transparent;
    color: #1a2b2b;
    border: 1.5px solid #e0e0e0;
}

.zb-btn--outline:hover {
    border-color: #1a2b2b;
    background: rgba(26, 43, 43, 0.03);
    transform: translateY(-2px);
}

/* Contact Form Styling */
.zb-contact-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.zb-form-row {
    display: flex;
    gap: 1.5rem;
}

.zb-form-row .zb-form-group {
    flex: 1;
}

.zb-form-group {
    margin-bottom: 1.5rem;
}

.zb-form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a2b2b;
    margin-bottom: 0.5rem;
}

.zb-form-group input,
.zb-form-group select,
.zb-form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: #2d2a26;
    background: #fafafa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.zb-form-group input:focus,
.zb-form-group select:focus,
.zb-form-group textarea:focus {
    outline: none;
    border-color: var(--zb-primary);
    box-shadow: 0 0 0 4px rgba(0, 82, 180, 0.1);
    background: #ffffff;
}

.zb-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.zb-select-wrapper {
    position: relative;
}

.zb-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 2.5rem;
    cursor: pointer;
}

.zb-select-icon {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #8c8884;
}

.zb-contact-form__submit {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 12px;
}

.zb-contact-form__submit svg {
    transition: transform 0.3s var(--zb-ease-spring, ease);
}

.zb-contact-form__submit:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .zb-bento-wrapper {
        padding: 0 40px;
    }

    .zb-bento-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
    }
    
    .zb-bento__cell--span-2 {
        grid-column: span 1;
    }
    
    .zb-bento__title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .zb-bento-wrapper {
        padding: 0 1.5rem;
    }

    .zb-bento-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .zb-bento__cell--intro {
        padding: 1rem 0;
        min-height: auto;
    }
    
    .zb-bento__title br {
        display: none;
    }
    
    .zb-bento__title {
        font-size: 2rem;
    }
}    
@media (max-width: 1024px) {
    .zb-contact-bento-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .zb-stats-grid {
        justify-content: center;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .zb-contact-hero {
        height: auto;
        padding: 6rem 1.5rem;
    }

    .zb-contact-hero__map-bg iframe {
        width: 100%;
        left: 0;
        transform: translateX(0);
    }

    .zb-contact-hero__container {
        justify-content: center;
    }
    
    .zb-contact-card {
        padding: 2rem;
    }
    
    .zb-bento-heading {
        font-size: 2.2rem;
    }
    
    .zb-contact-bento-card--wide {
        grid-column: span 1;
        flex-direction: column;
    }
    
    .zb-contact-bento-card__image-wrap {
        width: 100%;
        min-height: 150px;
    }

    .zb-form-row {
        flex-direction: column;
        gap: 0;
    }

    .zb-contact-form {
        padding: 2rem 1.5rem;
    }
}

/* ══════════════════════════════════════════
   SECTION 11 – MINICART DROPDOWN
   ══════════════════════════════════════════ */
.zb-minicart-dropdown {
    position: absolute;
    top: 130%;
    right: 0;
    width: 400px;
    background: #f3f4f6; /* Gray background from design */
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 1.5rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.zb-minicart-dropdown.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.js-minicart-items {
    display: flex;
    flex-direction: column;
}

.zb-minicart-items-scroll {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-height: 55vh;
    overflow-y: auto;
    padding-bottom: 0.5rem;
    padding-right: 0.5rem;
}

/* Custom Scrollbar for minicart */
.zb-minicart-items-scroll::-webkit-scrollbar {
    width: 6px;
}
.zb-minicart-items-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.zb-minicart-items-scroll::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

/* Individual Cart Item Card */
.zb-cart-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.zb-cart-item__top {
    display: flex;
    gap: 1.2rem;
}

.zb-cart-item__img-wrapper {
    width: 90px;
    height: 90px;
    background: #f8f9fa;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.zb-cart-item__img-wrapper img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.zb-cart-item__details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.zb-cart-item__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.4rem 0;
}
.zb-cart-item__size {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}
.zb-cart-item__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.zb-cart-item__price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
}
.zb-cart-item__qty {
    font-size: 0.9rem;
    color: #9ca3af;
    font-weight: 500;
}

.zb-cart-item__divider {
    height: 1px;
    background: #f3f4f6;
    width: 100%;
}

.zb-cart-item__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.zb-cart-item__total-wrap {
    display: flex;
    flex-direction: column;
}
.zb-cart-item__total-label {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 0.4rem;
}
.zb-cart-item__total-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #111827;
}
.zb-cart-item__actions {
    display: flex;
    gap: 0.6rem;
}
.zb-cart-btn-order {
    background: var(--zb-primary);
    color: #ffffff;
    border: none;
    border-radius: 99px;
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.zb-cart-btn-order:hover {
    background: var(--zb-primary-dark);
}
.zb-cart-btn-icon {
    background: var(--zb-primary);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.zb-cart-btn-icon:hover {
    background: var(--zb-primary-dark);
}
.zb-cart-btn-icon--remove {
    background: var(--zb-accent);
}
.zb-cart-btn-icon--remove:hover {
    background: #c81e1e;
}
.zb-cart-btn-icon--view {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #4b5563;
}
.zb-cart-btn-icon--view:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
    color: #111827;
}
.zb-cart-btn-icon svg {
    width: 18px;
    height: 18px;
}

.zb-minicart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Footer Section */
.zb-minicart-footer {
    border-top: 1px solid #d1d5db;
    padding-top: 1.5rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.zb-minicart-footer__total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.zb-minicart-footer__label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4b5563;
}
.zb-minicart-footer__value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
}
.zb-minicart-footer__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    color: #111827;
    border: 1.5px solid #d1d5db;
    text-decoration: none;
    padding: 1.2rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s;
}
.zb-minicart-footer__btn:hover {
    background: #ffffff;
    border-color: #111827;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .zb-minicart-dropdown {
        position: fixed;
        top: 80px;
        left: 1rem;
        right: 1rem;
        width: auto;
    }
}

/* ==========================================================================
   CART & CHECKOUT PAGE
   ========================================================================== */
.zb-cart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.zb-cart-left {
    position: sticky;
    top: 120px;
}
@media (max-width: 991px) {
    .zb-cart-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .zb-cart-left {
        position: relative;
        top: 0;
    }
}

.zb-cart-products-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-height: 580px;
    overflow-y: auto;
}

.zb-cart-products-card::-webkit-scrollbar {
    width: 6px;
}
.zb-cart-products-card::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 8px;
}
.zb-cart-products-card::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 8px;
}
.zb-cart-products-card::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.zb-cart-page-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}
.zb-cart-page-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.zb-cart-page-item__img {
    width: 80px;
    height: 80px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}
.zb-cart-page-item__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.zb-cart-page-item__info {
    flex-grow: 1;
}
.zb-cart-page-item__title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}
.zb-cart-page-item__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
}
.zb-cart-page-item__price span {
    font-size: 0.85rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 0.5rem;
    font-weight: 500;
}
.zb-cart-page-item__meta {
    text-align: right;
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

.zb-shipping-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 1rem;
}
.zb-shipping-option:last-child {
    margin-bottom: 0;
}
.zb-shipping-option.active {
    border-color: #111827;
    background: #f9fafb;
}
.zb-shipping-option__left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.zb-shipping-option__info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.2rem;
}
.zb-shipping-option__info p {
    font-size: 0.9rem;
    color: #6b7280;
}
.zb-shipping-option__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.zb-shipping-option__right .price {
    font-weight: 700;
    color: #111827;
}
.zb-shipping-option__right input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #111827;
}

/* Right Column Forms */
.zb-checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.zb-form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}
.zb-input-wrapper {
    position: relative;
}
.zb-input-wrapper.with-icon input {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.zb-input-wrapper .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 1.1rem;
}
.zb-input-wrapper .input-status {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}
.zb-checkout-form input[type="text"],
.zb-checkout-form input[type="email"] {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    color: #111827;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.zb-checkout-form input:focus {
    outline: none;
    border-color: #111827;
}

.zb-card-input-group {
    display: flex;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
}
.zb-card-input-group > div.card-num,
.zb-card-input-group > input {
    border: none;
    border-radius: 0;
}
.zb-card-input-group .card-num {
    flex-grow: 1;
    position: relative;
    border-right: 1px solid #d1d5db;
}
.zb-card-input-group .card-num input {
    padding-left: 2.5rem;
}
.zb-card-input-group .card-num .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}
.zb-card-input-group .card-exp {
    width: 90px;
    border-right: 1px solid #d1d5db;
    text-align: center;
}
.zb-card-input-group .card-cvc {
    width: 70px;
    text-align: center;
}

.zb-address-input-group {
    display: flex;
    flex-direction: column;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
}
.zb-address-input-group .address-main {
    position: relative;
    border-bottom: 1px solid #d1d5db;
}
.zb-address-input-group .address-main input {
    border: none;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.zb-address-input-group .address-main .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}
.zb-address-input-group .address-main .input-status {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}
.zb-address-input-group .address-split {
    display: flex;
}
.zb-address-input-group .address-split input {
    border: none;
    flex: 1;
}
.zb-address-input-group .address-split input:first-child {
    border-right: 1px solid #d1d5db;
}

.zb-cart-totals {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.zb-cart-totals__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    color: #4b5563;
    font-weight: 600;
}
.zb-cart-totals__row .value {
    color: #111827;
}
.zb-cart-totals__row--grand {
    margin-top: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
}

.zb-btn-pay {
    width: 100%;
    background: #111827;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}
.zb-btn-pay:hover {
    background: #1f2937;
}

.zb-checkout-form input.invalid,
.zb-checkout-form select.invalid,
.zb-custom-select-wrapper.invalid .zb-custom-select-trigger {
    border-color: #e63946 !important;
    background-color: #fff5f5;
}

/* ── Compact Rows ── */
.zb-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .zb-form-row {
        grid-template-columns: 1fr 1fr;
    }
}
.zb-form-row .zb-form-group {
    margin-bottom: 0;
}

/* ── Right Aligned Icons ── */
.zb-input-wrapper.icon-right .input-icon {
    left: auto;
    right: 1.2rem;
    color: #9ca3af;
}
.zb-input-wrapper.icon-right input,
.zb-input-wrapper.icon-right select {
    padding-left: 1.2rem;
    padding-right: 3rem;
}

/* ── Custom Dropdown ── */
.zb-custom-select-wrapper {
    position: relative;
    user-select: none;
}
.zb-custom-select-trigger {
    cursor: pointer;
    background-color: #fff;
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    min-height: 52px;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.zb-custom-select-trigger:focus {
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
    outline: none;
}
.zb-custom-select-display {
    padding-left: 1.2rem;
    padding-right: 3.5rem;
    font-size: 1rem;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}
.dropdown-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6b7280;
    transition: transform 0.2s;
}
.zb-custom-select-wrapper.open .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.zb-custom-select-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    margin-top: 0.25rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
}
.zb-custom-select-wrapper.open .zb-custom-select-menu {
    display: block;
}

.zb-custom-select-search {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.zb-custom-select-search input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    background: transparent;
    padding: 0;
}

.zb-custom-select-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 250px;
    overflow-y: auto;
}
.zb-custom-select-list li {
    padding: 0.75rem 1.2rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #374151;
    transition: background 0.15s;
}
.zb-custom-select-list li:hover {
    background: #f3f4f6;
}
.zb-custom-select-list li.no-results {
    color: #9ca3af;
    cursor: default;
}
.zb-custom-select-list li.no-results:hover {
    background: transparent;
}

.zb-custom-select-wrapper.disabled {
    opacity: 0.6;
    pointer-events: none;
}

/* ==========================================================================
   ORDER SUCCESS MODAL
   ========================================================================== */
.zb-success-modal {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.zb-success-modal-content {
    background: #ffffff;
    border-radius: 24px;
    width: 95%;
    max-width: 950px;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s ease-out forwards;
}

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

.zb-success-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #9ca3af;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}
.zb-success-close:hover {
    color: #111827;
}

.zb-success-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}
@media (max-width: 991px) {
    .zb-success-layout {
        grid-template-columns: 1fr;
    }
}

/* Left Side */
.zb-success-left {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.zb-success-icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #d1fae5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}
.zb-success-icon-wrap::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: rgba(209, 250, 229, 0.4);
    border-radius: 50%;
    z-index: 0;
}
.zb-success-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
}

.zb-success-left h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}
.zb-success-left p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 300px;
}

.zb-success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
}
.zb-btn-success-primary {
    background: #047857;
    color: #fff;
    text-decoration: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.2s;
    text-align: center;
}
.zb-btn-success-primary:hover {
    background: #065f46;
}
.zb-btn-success-secondary {
    background: #f9fafb;
    color: #374151;
    border: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
}
.zb-btn-success-secondary:hover {
    background: #f3f4f6;
}

/* Right Side Summary */
.zb-success-right {
    background: #fafafa;
    padding: 3rem;
    border-left: 1px solid #f3f4f6;
}
@media (max-width: 991px) {
    .zb-success-right {
        padding: 2rem;
        border-left: none;
        border-top: 1px solid #f3f4f6;
    }
}

.zb-success-summary-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}
.zb-success-summary-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.zb-summary-group {
    margin-bottom: 1.25rem;
}
.zb-summary-group .label {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}
.zb-summary-group .value {
    display: block;
    font-size: 0.95rem;
    color: #111827;
    font-weight: 500;
}

.zb-summary-items {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}
.zb-summary-item-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #374151;
}
.zb-summary-item-row span:first-child {
    flex: 1;
    padding-right: 1rem;
    line-height: 1.4;
}
.zb-summary-item-row span:last-child {
    font-weight: 600;
    color: #111827;
}

.zb-summary-totals {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}
.zb-summary-totals .row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #6b7280;
}
.zb-summary-totals .row span:last-child {
    color: #111827;
    font-weight: 500;
}
.zb-summary-totals .row.grand-total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #d1d5db;
    align-items: flex-end;
}
.zb-summary-totals .row.grand-total span:first-child {
    color: #10b981;
    font-size: 1rem;
    font-weight: 600;
}
.zb-summary-totals .row.grand-total span:last-child {
    font-size: 1.75rem;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
}

/* ==========================================================================
   [10] DASHBOARD
   ========================================================================== */
.zb-dashboard-body {
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.zb-dashboard-wrapper {
    display: flex;
    min-height: 100vh;
}

/* SIDEBAR */
.zb-dash-sidebar {
    width: 260px;
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    flex-shrink: 0;
}
.zb-dash-sidebar::-webkit-scrollbar { width: 4px; }
.zb-dash-sidebar::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 4px; }

.zb-dash-sidebar__logo {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px dashed #e5e7eb;
}
.zb-dash-sidebar__logo-icon {
    width: 32px;
    height: 32px;
    background: #111827;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}
.zb-dash-sidebar__logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    flex: 1;
}
.zb-dash-sidebar__collapse-btn {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
}

.zb-dash-sidebar__nav-section {
    padding: 1.5rem;
}
.zb-dash-sidebar__nav-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 1rem 0;
}
.zb-dash-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.zb-dash-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #4b5563;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}
.zb-dash-nav-item:hover {
    background: #f3f4f6;
    color: #111827;
}
.zb-dash-nav-item.active {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    color: #111827;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.zb-dash-nav-icon {
    color: #6b7280;
}
.zb-dash-nav-item.active .zb-dash-nav-icon {
    color: #111827;
}

.zb-dash-nav-group {
    display: flex;
    flex-direction: column;
}
.zb-dash-nav-item--has-sub {
    justify-content: space-between;
}
.zb-dash-subnav {
    display: none;
    flex-direction: column;
    padding-left: 2.75rem;
    margin-top: 0.25rem;
    border-left: 1px solid #e5e7eb;
    margin-left: 1.5rem;
}
.zb-dash-nav-group.expanded .zb-dash-subnav {
    display: flex;
}
.zb-dash-nav-group.expanded .zb-dash-nav-chevron {
    transform: rotate(180deg);
}
.zb-dash-subnav-item {
    padding: 0.5rem 0;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
}
.zb-dash-subnav-item:hover {
    color: #111827;
}
.zb-dash-subnav-item::before {
    content: '';
    position: absolute;
    left: -17px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #d1d5db;
    border-radius: 50%;
}

.zb-dash-sidebar__footer {
    margin-top: auto;
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
}
.zb-dash-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 0.5rem;
    border-radius: 12px;
}
.zb-dash-user__avatar {
    width: 40px;
    height: 40px;
    background: #111827;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}
.zb-dash-user__info {
    flex: 1;
    min-width: 0;
}
.zb-dash-user__name {
    font-weight: 600;
    color: #111827;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.zb-dash-user__email {
    font-size: 0.75rem;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.zb-dash-user__logout {
    background: transparent;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
}
.zb-dash-user__logout:hover {
    color: #ef4444;
}

/* MAIN CONTENT */
.zb-dash-main {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* TOPBAR */
.zb-dash-header {
    height: 70px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: sticky;
    top: 0;
    z-index: 10;
}
.zb-dash-breadcrumbs {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}
.zb-dash-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    width: 250px;
}
.zb-dash-search input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.9rem;
    width: 100%;
}
.zb-dash-search input::placeholder {
    color: #9ca3af;
}

/* DASH CONTENT */
.zb-dash-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.zb-dash-welcome {
    margin-bottom: 2rem;
}
.zb-dash-welcome h1 {
    font-size: 1.75rem;
    color: #111827;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.zb-dash-welcome p {
    color: #6b7280;
    margin: 0;
    font-size: 1rem;
}

/* STATS CARDS */
.zb-dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.zb-dash-stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.zb-dash-stat-card__header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.zb-dash-stat-card__body {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.zb-dash-stat-card__value {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.zb-dash-stat-card__trend {
    font-size: 0.85rem;
    color: #9ca3af;
}
.zb-dash-stat-card__trend.positive strong {
    color: #10b981;
}
.zb-dash-stat-card__trend.negative strong {
    color: #ef4444;
}

/* MAIN GRID */
.zb-dash-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}
.zb-dash-main-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* BOX COMPONENT */
.zb-dash-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.zb-dash-box__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.zb-dash-box__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}
.zb-dash-dropdown-btn,
.zb-dash-filter-btn {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #4b5563;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

/* OVERVIEW CHART MOCKUP */
.zb-dash-overview-summary {
    margin-bottom: 2rem;
}
.zb-dash-overview-label {
    display: block;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.zb-dash-overview-value-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.zb-dash-overview-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}
.zb-dash-badge {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.zb-dash-badge--green {
    background: #ecfdf5;
    color: #10b981;
}

.zb-dash-bar-chart {
    height: 180px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    padding-bottom: 25px;
    border-bottom: 1px dashed #e5e7eb;
}
.zb-dash-bar-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    position: relative;
}
.zb-dash-bar {
    width: 32px;
    background: #f3f4f6;
    border-radius: 6px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}
.zb-dash-bar-fill {
    width: 100%;
    background: #e5e7eb;
    border-radius: 6px;
    transition: background 0.3s;
}
.zb-dash-bar-container.active .zb-dash-bar-fill {
    background: #4b5563;
}
.zb-dash-bar-label {
    position: absolute;
    bottom: -25px;
    font-size: 0.8rem;
    color: #6b7280;
}
.zb-dash-bar-tooltip {
    position: absolute;
    top: -45px;
    background: #111827;
    color: #fff;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    text-align: center;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}
.zb-dash-bar-tooltip::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px 4px 0;
    border-style: solid;
    border-color: #111827 transparent transparent transparent;
}
.zb-dash-bar-container.active .zb-dash-bar-tooltip {
    opacity: 1;
}

/* TABLE */
.zb-dash-table-wrapper {
    overflow-x: auto;
}
.zb-dash-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}
.zb-dash-table th {
    text-align: left;
    padding: 1rem 0.5rem;
    color: #6b7280;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px dashed #e5e7eb;
}
.zb-dash-table td {
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
    color: #6b7280;
    border-bottom: 1px dashed #e5e7eb;
}
.zb-dash-table tr:last-child td {
    border-bottom: none;
}

/* Professional UI for Dash Table Containers */
.zb-dash-table-container {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #f1f5f9;
    overflow-x: auto;
}

.zb-dash-table-container .zb-dash-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.zb-dash-table-container .zb-dash-table th {
    background-color: #f8fafc;
    color: #475569;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 16px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.zb-dash-table-container .zb-dash-table td {
    padding: 16px 24px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

.zb-dash-table-container .zb-dash-table tbody tr:hover td {
    background-color: #f8fafc;
}

.zb-dash-table-container .zb-dash-table tr:last-child td {
    border-bottom: none;
}
.zb-text-dark {
    color: #111827 !important;
    font-weight: 600;
}

.zb-dash-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    font-weight: 600;
}
.zb-dash-status-pill--green { color: #10b981; }
.zb-dash-status-pill--blue { color: #3b82f6; }

/* HISTORY LIST */
.zb-dash-history-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.zb-dash-history-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.zb-dash-history-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.zb-dash-history-item__info {
    flex: 1;
}
.zb-dash-history-item__info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}
.zb-dash-history-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}
.zb-dash-history-meta strong {
    color: #111827;
    font-weight: 500;
}
.text-green { color: #10b981 !important; }
.text-blue { color: #3b82f6 !important; }

/* RESPONSIVE DASHBOARD */
@media (max-width: 1024px) {
    .zb-dash-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .zb-dash-sidebar {
        display: none; /* In a real app, this would be a togglable drawer */
    }
    .zb-dash-stats-grid {
        grid-template-columns: 1fr;
    }
    .zb-dash-header {
        padding: 0 1rem;
    }
    .zb-dash-content {
        padding: 1rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   [23] ABOUT PAGE (À PROPOS)
   ═══════════════════════════════════════════════════════════ */
.zb-page--about {
    padding: 0;
    background-color: var(--zb-bg);
}

/* ── Hero Section ── */
.zb-about-hero {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #0052b4 0%, #003d99 30%, #001f80 70%, #001560 100%);
    color: var(--zb-white);
    text-align: center;
    overflow: hidden;
}

.zb-about-hero__pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.zb-about-hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.zb-about-hero__badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.zb-about-hero__title {
    font-family: var(--zb-font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.zb-about-hero__title span {
    font-style: italic;
    color: #ffffff;
}

.zb-about-hero__desc {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Bento Grid Section ── */
.zb-about-mission {
    padding: 100px 0;
    background-color: var(--zb-bg);
}

.zb-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 24px;
}

.zb-bento-item {
    background: var(--zb-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s var(--zb-ease-spring);
}

.zb-bento-item:hover {
    transform: translateY(-5px);
}

/* Specific Bento Placements */
.zb-bento-item--text-large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zb-bento-item--stats {
    grid-column: span 1;
    grid-row: span 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.zb-bento-item--image {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F4F1ED;
}

.zb-bento-item--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zb-bento-item:hover .zb-bento-img {
    transform: scale(1.05);
}

.zb-bento-item--text {
    grid-column: span 2;
    grid-row: span 1;
}

/* Bento Typography */
.zb-bento-title {
    font-family: var(--zb-font-heading);
    font-size: 2.5rem;
    color: var(--zb-primary-dark);
    margin-bottom: 1rem;
}

.zb-bento-subtitle {
    font-family: var(--zb-font-heading);
    font-size: 1.5rem;
    color: var(--zb-primary-dark);
    margin-bottom: 0.5rem;
}

.zb-bento-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--zb-text-light);
}

.zb-bento-desc-small {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--zb-text-light);
}

.zb-stat-block {
    display: flex;
    flex-direction: column;
}

.zb-stat-number {
    font-family: var(--zb-font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--zb-primary-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.zb-stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--zb-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Values Section ── */
.zb-about-values {
    padding: 80px 0 100px;
    background-color: #F9F8F6;
}

.zb-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.zb-value-card {
    background: var(--zb-white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.zb-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.zb-value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: var(--zb-primary-dark);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zb-value-card h3 {
    font-family: var(--zb-font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--zb-primary-dark);
}

.zb-value-card p {
    color: var(--zb-text-light);
    line-height: 1.6;
}

/* ── CTA Section ── */
.zb-about-cta {
    padding: 100px 0;
}

.zb-cta-box {
    background: var(--zb-primary-dark);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    color: var(--zb-white);
    position: relative;
    overflow: hidden;
}

.zb-cta-box h2 {
    font-family: var(--zb-font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.zb-cta-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.zb-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Custom buttons for About CTA */
.zb-cta-actions .zb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px; /* Pill shape for premium feel */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s var(--zb-ease-spring);
    font-size: 1.1rem;
    min-width: 220px;
    text-align: center;
}

.zb-btn--primary {
    background: #ffffff;
    color: var(--zb-primary-dark);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.zb-btn--primary:hover {
    background: var(--zb-accent);
    color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.zb-btn--outline-white {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    backdrop-filter: blur(5px);
}

.zb-btn--outline-white:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--zb-primary-dark);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ── Testimonials Section ── */
.zb-about-testimonials {
    padding: 100px 0;
    background-color: var(--zb-white);
}

.zb-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.zb-testimonial-card {
    background: #F9FBFD;
    padding: 40px;
    border-radius: 24px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.zb-testimonial-card:hover {
    transform: translateY(-5px);
    background: var(--zb-white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--zb-primary-light);
}

.zb-testimonial-stars {
    display: flex;
    gap: 4px;
    color: #FFC107;
    margin-bottom: 20px;
}

.zb-testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--zb-text);
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.zb-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.zb-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.zb-author-info strong {
    display: block;
    color: var(--zb-primary-dark);
    font-size: 1rem;
}

.zb-author-info span {
    font-size: 0.85rem;
    color: var(--zb-text-light);
}

.zb-testimonial-quote-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: var(--zb-primary);
}

/* ── Responsive About ── */
@media (max-width: 1024px) {
    .zb-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .zb-bento-item--text-large {
        grid-row: span 1;
    }
    .zb-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .zb-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .zb-bento-grid {
        grid-template-columns: 1fr;
    }
    .zb-bento-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    .zb-values-grid {
        grid-template-columns: 1fr;
    }
    .zb-testimonials-grid {
        grid-template-columns: 1fr;
    }
    .zb-cta-actions {
        flex-direction: column;
    }
}

/* Global Price Hiding for Catalog-only Mode */
.js-favoris-dropdown .zb-cart-item__price,
.js-minicart-dropdown .zb-cart-item__price,
.js-minicart-dropdown .zb-cart-item__total-wrap,
.js-minicart-dropdown .zb-minicart-footer__total-row,
.zb-search-results-dropdown .zb-search-item-price {
    display: none !important;
}

/* Additional price hiding for Cart Page and Success Modal */
.zb-cart-page-item__price,
.zb-cart-totals,
.zb-shipping-option .price,
.zb-summary-totals,
.zb-summary-items span:last-child {
    display: none !important;
}

/* Hide Shipping Method section on Cart Page */
.zb-cart-shipping-section {
    display: none !important;
}
