/* ═══════════════════════════════════════════════════════════
   Webstore — Modern UI Foundation
   ═══════════════════════════════════════════════════════════ */

   @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

   :root {
       --ws-brand: #2859a6;
       --ws-brand-hover: #0a8ad4;
       --ws-brand-deep: #064e7c;
       --ws-accent: #38bdf8;
       --ws-success: #059669;
       --ws-warn: #d97706;
       --ws-danger: #dc2626;
       --ws-bg: #eef2f7;
       --ws-surface: #ffffff;
       --ws-text: #0f172a;
       --ws-muted: #64748b;
       --ws-line: #e2e8f0;
       --ws-radius: 18px;
       --ws-radius-sm: 12px;
       --ws-radius-pill: 999px;
       --ws-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 12px 32px -12px rgba(17, 41, 96, 0.226);
       --ws-shadow-lg: 0 32px 75px -24px rgba(17, 41, 96, 0.226);
       --ws-font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
       --ws-header-h: 64px;
       --ws-max: 1120px;
       --ws-nav-w: 260px;
   }
   
   *, *::before, *::after { box-sizing: border-box; }
   
   html {
       -webkit-text-size-adjust: 100%;
       scroll-behavior: smooth;
   }
   
   body.store {
       margin: 0;
       font-family: var(--ws-font);
       font-size: 15px;
       line-height: 1.5;
       color: var(--ws-text);
       background: var(--ws-bg);
       max-width: 100% !important;
       -webkit-font-smoothing: antialiased;
   }
   
   img { max-width: 100%; height: auto; display: block; }
   
   a { color: var(--ws-brand); }
   
   .hidden { display: none !important; }
   
   /* ── App shell ── */
   .ws-app {
       display: flex;
       min-height: 100vh;
   }
   
   .ws-rail {
       display: none !important;
   }
   
   .ws-rail__brand {
       padding: 1.75rem 1.25rem 1.25rem;
       text-align: center;
       border-bottom: 1px solid var(--ws-line);
   }
   
   .ws-rail__brand img { max-width: 100px; margin: 0 auto; }
   
   .ws-rail__title {
       margin: 0.6rem 0 0;
       font-size: 0.65rem;
       font-weight: 800;
       letter-spacing: 0.14em;
       text-transform: uppercase;
       color: var(--ws-muted);
   }
   
   .ws-rail__nav { padding: 0.75rem 0; flex: 1; }
   
   .ws-rail__nav a {
       display: flex;
       align-items: center;
       gap: 0.65rem;
       padding: 0.85rem 1.35rem;
       font-size: 0.9rem;
       font-weight: 600;
       color: #475569;
       text-decoration: none;
       border-left: 3px solid transparent;
       transition: background 0.15s, color 0.15s;
   }
   
   .ws-rail__nav a i { width: 1.1rem; text-align: center; color: #94a3b8; }
   
   .ws-rail__nav a:hover {
       background: #f8fafc;
       color: var(--ws-brand);
   }
   
   .ws-rail__nav a:hover i { color: var(--ws-brand); }
   
   .ws-rail__nav a.is-active {
       background: linear-gradient(90deg, #eff6ff 0%, transparent 100%);
       color: var(--ws-brand-deep);
       border-left-color: var(--ws-brand);
   }
   
   .ws-rail__nav a.is-active i { color: var(--ws-brand); }
   
   .ws-body {
       flex: 1;
       min-width: 0;
       display: flex;
       flex-direction: column;
   }
   
   /* ── Header ── */
   .ws-header {
       position: sticky;
       top: 0;
       z-index: 40;
       background: var(--ws-brand);
       color: #fff;
       box-shadow: none;
   }

   body.store:not(.cart-store) .ws-header {
       /* removes the thin light line that sat between brand header and hero */
       border-bottom: none;
       box-shadow: none;
   }
   
   .ws-header__inner {
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: 1rem;
       padding: 0.75rem 1.25rem;
       max-width: var(--ws-max);
       margin: 0 auto;
       width: 100%;
       min-height: var(--ws-header-h);
   }
   
   .ws-header__logo img {
       max-height: 44px;
       width: auto;
       filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
   }
   
   .ws-header__actions { display: flex; align-items: center; gap: 0.5rem; }
   
   .ws-cart-btn {
       display: inline-flex;
       align-items: center;
       gap: 0.5rem;
       padding: 0.55rem 1rem;
       background: rgba(255,255,255,0.15);
       backdrop-filter: blur(8px);
       border: 1px solid rgba(255,255,255,0.25);
       border-radius: var(--ws-radius-pill);
       color: #fff !important;
       text-decoration: none !important;
       font-size: 0.88rem;
       font-weight: 700;
       transition: background 0.15s, transform 0.15s;
   }
   
   .ws-cart-btn:hover {
       background: rgba(255,255,255,0.28);
       transform: translateY(-1px);
   }
   
   .ws-cart-btn i { font-size: 1.05rem; }
   
   /* Hidden logo for legacy height JS */
   .ws-logo-probe {
       position: absolute;
       width: 0;
       height: 0;
       overflow: hidden;
       pointer-events: none;
   }
   
   /* ── Main content ── */
   .ws-main {
       flex: 1;
       width: 100%;
       max-width: var(--ws-max);
       margin: 0 auto;
       padding: 1.5rem 1.25rem 4rem;
   }
   
   /* Kill legacy absolute positioning */
   .ws-app .hello,
   .ws-app .items,
   .store-app .hello,
   .store-app .items {
       position: static !important;
       top: auto !important;
       left: auto !important;
       right: auto !important;
       width: 100% !important;
   }
   
   /* ── Hero bar (shop landing) — full width of content column ── */
   body.store:not(.cart-store) .ws-hero {
       position: relative;
       display: flex;
       align-items: center;
       justify-content: center;
       width: 100%;
       max-width: none;
       margin: 0 0 1.35rem;
       padding: clamp(2.75rem, 7vw, 4.5rem) 1.25rem;
       border-radius: 0;
       border: none;
       box-shadow: none;
       text-align: center;
       overflow: hidden;
       background-color: #0b2747;
       background-image:
           linear-gradient(180deg, rgba(8, 28, 54, 0.42) 0%, rgba(8, 28, 54, 0.32) 45%, rgba(8, 28, 54, 0.48) 100%),
           url("../hero/hero-bar.jpg");
       background-position: center;
       background-size: cover;
       background-repeat: no-repeat;
       min-height: clamp(140px, 22vw, 220px);
   }

   body.store:not(.cart-store) .ws-hero__content {
       position: relative;
       z-index: 1;
       max-width: 40rem;
       margin: 0 auto;
   }

   body.store:not(.cart-store) .ws-hero__eyebrow {
       display: none;
   }

   body.store:not(.cart-store) .ws-hero__title {
       margin: 0 0 0.45rem;
       font-size: clamp(1.85rem, 4.5vw, 2.75rem);
       font-weight: 800;
       letter-spacing: -0.02em;
       line-height: 1.15;
       color: #fff;
       text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
   }

   body.store:not(.cart-store) .ws-hero__sub {
       margin: 0;
       font-size: clamp(0.95rem, 2vw, 1.15rem);
       font-weight: 500;
       line-height: 1.45;
       color: rgba(255, 255, 255, 0.95);
       text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
   }

   /* Cart keeps a simple text hero */
   body.cart-store .ws-hero {
       background: var(--ws-surface);
       border-radius: var(--ws-radius);
       padding: 1.75rem 1.5rem;
       margin-bottom: 1.25rem;
       box-shadow: var(--ws-shadow);
       border: 1px solid var(--ws-line);
       text-align: center;
   }

   body.cart-store .ws-hero__eyebrow {
       display: inline-block;
       font-size: 0.72rem;
       font-weight: 700;
       letter-spacing: 0.1em;
       text-transform: uppercase;
       color: var(--ws-brand);
       background: #eff6ff;
       padding: 0.35rem 0.75rem;
       border-radius: var(--ws-radius-pill);
       margin-bottom: 0.75rem;
   }

   body.cart-store .ws-hero__title {
       margin: 0 0 0.35rem;
       font-size: clamp(1.5rem, 4vw, 2rem);
       font-weight: 800;
       letter-spacing: -0.02em;
       color: var(--ws-text);
   }

   body.cart-store .ws-hero__sub {
       margin: 0;
       font-size: 0.95rem;
       color: var(--ws-muted);
       max-width: 36ch;
       margin-inline: auto;
   }
   
   /* ── Shop controls (date + categories) ── */
   .hello {
       background: transparent !important;
       text-align: inherit;
       padding: 0 !important;
   }
   
   .hello-controls {
       display: flex;
       flex-direction: column;
       gap: 1.25rem;
       max-width: 100%;
       margin: 0;
       padding: 1.25rem;
       /* background: var(--ws-surface);
       border-radius: var(--ws-radius);
       box-shadow: var(--ws-shadow);
       border: 1px solid var(--ws-line); */
   }

   .ws-items-toolbar {
       display: none;
       width: 100%;
       margin: 0 0 0.85rem;
       padding: 0;
   }

   .items.is-active .ws-items-toolbar[style*="block"],
   .ws-items-toolbar[style*="display: block"],
   .ws-items-toolbar[style*="display:block"] {
       display: flex !important;
       flex-direction: column;
       gap: 0.85rem;
   }
   
   .ws-date-block {
       background: var(--ws-surface);
       border: 1px solid var(--ws-line);
       border-radius: 20px;
       padding: 1.35rem 1.4rem;
       margin: 0;
       box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
   }

   .ws-date-block__main {
       display: grid;
       grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.9fr);
       gap: 1.25rem 1.5rem;
       align-items: stretch;
   }

   .ws-date-block__intro {
       display: flex;
       flex-direction: column;
       gap: 1.1rem;
       min-width: 0;
   }

   .ws-date-block__brand {
       display: flex;
       align-items: flex-start;
       gap: 0.85rem;
   }

   .ws-date-block__icon {
       flex: 0 0 auto;
       width: 2.65rem;
       height: 2.65rem;
       display: flex;
       align-items: center;
       justify-content: center;
       border-radius: 999px;
       background: #e0f2fe;
       color: #0976BC;
       font-size: 1.05rem;
   }

   .ws-date-block__title {
       margin: 0;
       font-size: 1.35rem;
       font-weight: 800;
       letter-spacing: -0.03em;
       line-height: 1.15;
       color: #011c47;
   }

   .ws-date-block__subtitle {
       margin: 0.3rem 0 0;
       font-size: 0.92rem;
       line-height: 1.4;
       color: #64748b;
       font-weight: 500;
   }

   .ws-date-field {
       position: relative;
       display: flex;
       align-items: center;
       width: 100%;
       min-height: 3.25rem;
       padding: 0 0.95rem;
       border: 2px solid #0976BC;
       border-radius: 14px;
       background: #fff;
       cursor: pointer;
       box-sizing: border-box;
       transition: box-shadow 0.15s, border-color 0.15s;
   }

   .ws-date-field:hover,
   .ws-date-field:focus-within {
       box-shadow: 0 0 0 4px rgba(9, 118, 188, 0.12);
   }

   .ws-date-field__icon,
   .ws-date-field__chevron {
       flex: 0 0 auto;
       color: #0976BC;
       font-size: 1rem;
       pointer-events: none;
   }

   .ws-date-field__chevron {
       font-size: 0.85rem;
       opacity: 0.9;
   }
   
   .ws-date-block__label {
       display: none;
   }
   
   #wday {
       margin-top: 0;
       font-size: 0.9rem;
       font-weight: 600;
       color: var(--ws-brand-deep);
       width: 100%;    
   }
   
   #wday:empty { display: none; margin: 0; padding: 0; }
   
   .ws-date-block #datepicker,
   .ws-date-field #datepicker {
       display: block !important;
       width: 100% !important;
       max-width: none !important;
       margin: 0 !important;
       box-sizing: border-box !important;
   }
   
   #datepicker {
       display: block !important;
       flex: 1 1 auto !important;
       width: 100% !important;
       max-width: none !important;
       min-width: 0 !important;
       margin: 0 !important;
       padding: 0.85rem 0.7rem !important;
       font-family: var(--ws-font) !important;
       font-size: 1rem !important;
       font-weight: 600 !important;
       text-transform: none !important;
       letter-spacing: 0 !important;
       text-align: left !important;
       color: var(--ws-text) !important;
       -webkit-text-fill-color: var(--ws-text) !important;
       background: transparent !important;
       border: none !important;
       border-radius: 0 !important;
       box-shadow: none !important;
       cursor: pointer;
       outline: none !important;
       text-shadow: none !important;
       transform: none !important;
       top: auto !important;
   }
   
   #datepicker::placeholder {
       color: #64748b !important;
       -webkit-text-fill-color: #64748b !important;
       opacity: 1 !important;
       font-weight: 500 !important;
       text-shadow: none !important;
   }
   
   #datepicker:hover:not(.is-selected),
   #datepicker:hover,
   #datepicker.is-selected,
   #datepicker:focus {
       background: transparent !important;
       border: none !important;
       color: #011c47 !important;
       -webkit-text-fill-color: #011c47 !important;
       box-shadow: none !important;
       width: 100% !important;
       max-width: none !important;
       margin: 0 !important;
       transform: none !important;
   }

   .ws-date-block__aside {
       display: flex;
       /* align-items: flex-start; */
        align-items: center;
        justify-content: center;
       gap: 0.75rem;
       padding: 1.05rem 1.1rem;
       border-radius: 14px;
       background: #eaf6ff;
       color: #075985;
       min-width: 0;
   }

   .ws-date-block__aside-icon {
       flex: 0 0 auto;
       width: 1.55rem;
       height: 1.55rem;
       display: flex;
       align-items: center;
       justify-content: center;
       border-radius: 999px;
       background: rgba(9, 118, 188, 0.12);
       color: #0976BC;
       font-size: 0.9rem;
       margin-top: 0.1rem;
   }

   .ws-date-block__aside-title {
       margin: 0;
       font-size: 0.98rem;
       font-weight: 800;
       letter-spacing: -0.02em;
       color: #075985;
       line-height: 1.25;
   }

   .ws-date-block__aside-text {
       margin: 0.35rem 0 0;
       font-size: 0.86rem;
       line-height: 1.45;
       font-weight: 500;
       color: #0c4a6e;
   }

   .ws-date-empty {
       display: flex;
       align-items: flex-start;
       gap: 0.85rem;
       padding: 1rem 1.15rem;
       border-radius: 16px;
       border: 1px solid #f1d4a5;
       background: #fff8ee;
       color: #9a3412;
   }

   .ws-date-empty[hidden] {
       display: none !important;
   }

   .ws-date-empty__icon {
       flex: 0 0 auto;
       width: 1.7rem;
       height: 1.7rem;
       display: flex;
       align-items: center;
       justify-content: center;
       border-radius: 999px;
       background: #fed7aa;
       color: #c2410c;
       font-size: 0.9rem;
       margin-top: 0.05rem;
   }

   .ws-date-empty__title {
       display: block;
       font-size: 0.98rem;
       font-weight: 800;
       color: #9a3412;
       line-height: 1.25;
   }

   .ws-date-empty__text {
       margin: 0.25rem 0 0;
       font-size: 0.88rem;
       line-height: 1.45;
       font-weight: 500;
       color: #b45309;
   }

   @media (max-width: 820px) {
       .ws-date-block__main {
           grid-template-columns: 1fr;
       }
   }
   
   /* Category list — card rows in a responsive grid */
   .ws-categories {
       display: grid;
       grid-template-columns: 1fr;
       gap: 0.65rem;
       padding: 0;
       width: 100%;
   }

   @media (min-width: 640px) {
       .ws-categories {
           grid-template-columns: repeat(2, minmax(0, 1fr));
       }
   }

   @media (min-width: 1100px) {
       .ws-categories {
           grid-template-columns: repeat(2, minmax(0, 1fr));
       }
   }
   
   .hello-controls .buton44.ws-cat-card,
   .hello-controls .ws-cat-card {
       display: flex !important;
       flex-direction: row !important;
       align-items: center !important;
       justify-content: flex-start !important;
       gap: 0.9rem !important;
       width: 100% !important;
       max-width: 100% !important;
       margin: 0 !important;
       padding: 0.95rem 1.05rem !important;
       min-height: 0 !important;
       font-size: inherit !important;
       font-weight: 400 !important;
       line-height: 1.25 !important;
       text-transform: none !important;
       letter-spacing: 0 !important;
       text-align: left !important;
       color: #0f2744 !important;
       background: #fff !important;
       border: 1px solid #e2e8f0 !important;
       border-radius: 14px !important;
       box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04) !important;
       cursor: pointer;
       transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
       position: relative !important;
       top: auto !important;
   }
   
   .hello-controls .ws-cat-card__icon {
       flex: 0 0 2.35rem;
       width: 2.35rem;
       height: 2.35rem;
       object-fit: contain;
       display: block;
   }
   
   .hello-controls .ws-cat-card__text {
       flex: 1 1 auto;
       min-width: 0;
       display: flex;
       flex-direction: column;
       gap: 0.15rem;
   }
   
   .hello-controls .ws-cat-card__title {
       display: block;
       font-size: 1.02rem !important;
       font-weight: 700 !important;
       line-height: 1.2 !important;
       color: #0f2744 !important;
   }
   
   .hello-controls .ws-cat-card__desc {
       display: block;
       font-size: 0.84rem !important;
       font-weight: 500 !important;
       line-height: 1.3 !important;
       color: #64748b !important;
   }
   
   .hello-controls .ws-cat-card__chevron {
       flex: 0 0 auto;
       margin-left: auto;
       font-size: 0.95rem !important;
       color: #0976BC !important;
   }
   
   .hello-controls .ws-cat-card:hover {
       transform: translateY(-1px) !important;
       border-color: #cbd5e1 !important;
       box-shadow: 0 8px 20px -8px rgba(15, 23, 42, 0.18) !important;
       background: #fff !important;
       color: #0f2744 !important;
   }
   
   .hello-controls .ws-cat-card:hover .ws-cat-card__chevron {
       color: #0868a8 !important;
   }
   
   .hello-controls .ws-cat-card:active {
       transform: translateY(0) !important;
   }

   /* Selected category — soft brand accent (safe with white icon backgrounds) */
   .hello-controls .ws-cat-card.is-active {
       background: #f0f9ff !important;
       border-color: #0976BC !important;
       box-shadow:
           0 0 0 1px rgba(9, 118, 188, 0.2),
           0 10px 22px -12px rgba(9, 118, 188, 0.45) !important;
   }

   .hello-controls .ws-cat-card.is-active::before {
       content: "";
       position: absolute;
       left: 0;
       top: 10px;
       bottom: 10px;
       width: 3px;
       border-radius: 0 3px 3px 0;
       background: #0976BC;
   }

   .hello-controls .ws-cat-card.is-active .ws-cat-card__title {
       color: #0868a8 !important;
   }

   .hello-controls .ws-cat-card.is-active .ws-cat-card__desc {
       color: #475569 !important;
   }

   .hello-controls .ws-cat-card.is-active .ws-cat-card__chevron {
       color: #0976BC !important;
   }

   .hello-controls .ws-cat-card.is-active:hover {
       background: #e8f4fc !important;
       border-color: #0976BC !important;
       color: #0f2744 !important;
   }

   /* Category grid skeleton while icons load */
   .hello-controls .ws-categories.is-loading .ws-cat-card {
       pointer-events: none !important;
       cursor: default !important;
       background:
           linear-gradient(#e2e8f0, #e2e8f0) 1.05rem 50% / 2.35rem 2.35rem no-repeat,
           linear-gradient(#e2e8f0, #e2e8f0) calc(1.05rem + 2.35rem + 0.9rem) calc(50% - 0.55rem) / 42% 0.75rem no-repeat,
           linear-gradient(#e2e8f0, #e2e8f0) calc(1.05rem + 2.35rem + 0.9rem) calc(50% + 0.45rem) / 58% 0.65rem no-repeat,
           #fff !important;
       box-shadow: none !important;
   }

   .hello-controls .ws-categories.is-loading .ws-cat-card > * {
       opacity: 0 !important;
   }

   .hello-controls .ws-categories.is-loading .ws-cat-card.is-active::before {
       display: none !important;
   }

   .hello-controls .ws-categories.is-loading .ws-cat-card::after {
       content: "";
       position: absolute;
       inset: 0;
       border-radius: inherit;
       pointer-events: none;
       background: linear-gradient(
           110deg,
           transparent 25%,
           rgba(255, 255, 255, 0.55) 45%,
           transparent 65%
       );
       background-size: 200% 100%;
       animation: wsCatShimmer 1.2s ease-in-out infinite;
   }

   @keyframes wsCatShimmer {
       0% { background-position: 120% 0; }
       100% { background-position: -80% 0; }
   }
   
   /* ── Catalog panel ── */
   .items {
       width: 100%;
       font-size: 1rem;
       padding: 0;
       margin-top: 1.5rem;
   }
   
.items .container {
    width: 100% !important;
    max-width: none !important;
    margin: 0;
    padding: 0;
}

.items-panel {
    background: transparent !important;
    border-radius: 0;
    border: none;
    overflow: visible;
    box-shadow: none;
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.itemTabs {
    width: 100% !important;
    max-width: none !important;
}
   
   .itemTabs {
       display: none;
       background: #f8fafc;
       border-bottom: 1px solid var(--ws-line);
       padding: 0.35rem;
       gap: 0.35rem;
   }
   
   .items.is-active .itemTabs[style*="flex"],
   .itemTabs[style*="display: flex"],
   .itemTabs[style*="display:flex"] {
       display: flex !important;
   }
   
/* Cart badges */
.ite, .ite2, .ite3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.35rem;
    font-size: 0.68rem;
    font-weight: 800;
    color: #fff;
    background: var(--ws-danger);
    border-radius: var(--ws-radius-pill);
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
    line-height: 1;
}
   
   .ite:empty, .ite2:empty, .ite3:empty { display: none; }
   
   /* ── Cart page ── */
   body.cart-store .ws-main { max-width: 720px; }
   
   body.cart-store .ws-hero { margin-bottom: 1rem; }
   
   body.cart-store .content2 {
       top: auto !important;
       position: static !important;
       text-align: center;
       padding: 2rem 1rem;
   }
   
   body.cart-store .cart-complete-title {
       font-size: clamp(1.75rem, 5vw, 2.5rem) !important;
       font-weight: 800 !important;
       font-family: var(--ws-font) !important;
       color: var(--ws-success) !important;
   }

   body.cart-store.cart-order-complete #butt,
   body.cart-store.cart-order-complete .ws-hero,
   body.cart-store.cart-order-complete .content1 {
       display: none !important;
   }

   body.cart-store.cart-order-complete .content2:not(.hidden) {
       display: block !important;
   }
   
   body.cart-store #butt {
       text-align: center;
       margin: 1rem 0;
   }
   
   body.cart-store #butt a {
       display: inline-flex !important;
       align-items: center;
       justify-content: center;
       gap: 0.5rem;
       padding: 1rem 2.5rem !important;
       font-family: var(--ws-font) !important;
       font-size: 1rem !important;
       font-weight: 700 !important;
       background: linear-gradient(135deg, var(--ws-brand) 0%, #0ea5e9 100%) !important;
       color: #fff !important;
       border: none !important;
       border-radius: var(--ws-radius-pill) !important;
       box-shadow: 0 8px 24px -4px rgba(9, 118, 188, 0.45) !important;
       text-decoration: none !important;
       position: static !important;
       top: auto !important;
       transition: transform 0.15s, box-shadow 0.15s;
   }
   
   body.cart-store #butt a:hover {
       transform: translateY(-2px);
       box-shadow: 0 12px 32px -4px rgba(9, 118, 188, 0.5) !important;
   }
   
.confirmDialog { display: none; }

/* ── Modern scrollbars ── */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(9, 118, 188, 0.45) transparent;
}

*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

*::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(10, 138, 212, 0.55), rgba(9, 118, 188, 0.7));
    border-radius: 999px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--ws-brand-hover), var(--ws-brand));
    border: 2px solid transparent;
    background-clip: padding-box;
}

*::-webkit-scrollbar-corner {
    background: transparent;
}

.hover_bkgr_fricc2 > div,
.hover_bkgr_fricc3 > div,
.modal-content,
.modalTimeslotContainer,
.item-detail-modal__panel,
.lockerWaiverModal-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(9, 118, 188, 0.5) #f1f5f9;
}

.hover_bkgr_fricc2 > div::-webkit-scrollbar,
.hover_bkgr_fricc3 > div::-webkit-scrollbar,
.modalTimeslotContainer::-webkit-scrollbar,
.item-detail-modal__panel::-webkit-scrollbar,
.lockerWaiverModal-content::-webkit-scrollbar {
    width: 8px;
}

.hover_bkgr_fricc2 > div::-webkit-scrollbar-thumb,
.hover_bkgr_fricc3 > div::-webkit-scrollbar-thumb,
.modalTimeslotContainer::-webkit-scrollbar-thumb,
.item-detail-modal__panel::-webkit-scrollbar-thumb,
.lockerWaiverModal-content::-webkit-scrollbar-thumb {
    background: rgba(9, 118, 188, 0.55);
    border-radius: 999px;
}

/* Overlays live at end of body — never in document flow */
   body > .hover_bkgr_fricc,
   body > .hover_bkgr_fricc2,
   body > .hover_bkgr_fricc3,
   body > .hover_bkgr_fricc5,
   body > .modal,
   body > .lockerWaiverModal,
   body > .givex-background,
   body > .imagePopupLimitedTime {
       /* display:none + position:fixed set in components.css / cart.css */
   }
   
   /* ── Mobile bottom nav ── */
.ws-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 45;
    background: var(--ws-brand);
    border-top: none;
    padding: 0.45rem 0.75rem calc(0.45rem + env(safe-area-inset-bottom));
    box-shadow: 0 -2px 16px rgba(6, 78, 124, 0.35);
    align-items: stretch;
}

.ws-mobile-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-height: 3.25rem;
    padding: 0.45rem 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    border-radius: var(--ws-radius-sm);
    transition: color 0.15s, background 0.15s;
}

.ws-mobile-nav a i { font-size: 1.2rem; color: inherit; line-height: 1; }

.ws-mobile-nav a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.ws-mobile-nav a:hover {
    color: #fff;
}

.ws-mobile-nav__icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

.ws-mobile-nav__icon-wrap .ite {
    position: absolute !important;
    top: -7px;
    right: -9px;
    left: auto !important;
    width: auto !important;
    min-width: 1.05rem;
    height: 1.05rem;
    padding: 0 0.25rem;
    font-size: 0.58rem;
    font-weight: 800;
    line-height: 1;
    color: #fff !important;
    background: var(--ws-danger) !important;
    border: 2px solid var(--ws-brand);
    border-radius: var(--ws-radius-pill);
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ws-cart-btn .ite {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: auto !important;
}

/* ── Powered by Botrow ── */
.ws-powered {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    padding: 0.4rem 0.85rem;
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: var(--ws-muted);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--ws-line);
    border-radius: var(--ws-radius-pill);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 20px -12px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: color 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.ws-powered strong {
    font-weight: 700;
    color: var(--ws-brand);
}

.ws-powered:hover {
    color: var(--ws-text);
    border-color: #cbd5e1;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08), 0 10px 24px -12px rgba(15, 23, 42, 0.22);
}

.ws-powered:hover strong {
    color: var(--ws-brand-hover);
}
   
   /* ── Responsive ── */
   @media (max-width: 992px) {
       .ws-rail { display: none; }
       .ws-header--desktop { display: none; }
       .ws-header--mobile { display: block; }
       .ws-mobile-nav { display: flex; }
       .ws-main { padding: 1rem 1rem 5.5rem; }

       .ws-powered {
           position: static;
           display: flex;
           width: fit-content;
           margin: 0.35rem auto 0.75rem;
           font-size: 0.68rem;
           padding: 0.35rem 0.75rem;
           background: #fff;
           border: 1px solid var(--ws-line);
           box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
           backdrop-filter: none;
           -webkit-backdrop-filter: none;
       }

       body.store:not(.cart-store) .ws-hero {
           width: 100%;
           margin: 0 0 1.15rem;
           padding: clamp(2.4rem, 12vw, 3.5rem) 1rem;
           min-height: 132px;
       }
   
       .hello-controls {
           padding: 1.35rem 1.25rem;
       }
   
       .ws-items-toolbar .ws-date-block { 
           padding: 1.15rem 1.05rem;
       } 

       .ws-date-block__title {
           font-size: 1.2rem;
       }

       .ws-date-block__subtitle,
       .ws-date-empty__text {
           font-size: 0.85rem;
       }
   }
   
   @media (min-width: 993px) {
       .ws-header--mobile { display: none; }
       .ws-header--desktop { display: block; }
   }
   
   /* jQuery UI datepicker — keep on screen (mobile) */
   @media (max-width: 767px) {
       #ui-datepicker-div {
           max-width: calc(100vw - 1.5rem) !important;
           box-sizing: border-box !important;
       }
   }
   