/* =====================================================================
   SHOP STYLESHEET ENTRY POINT
   phase2-shop.css is imported first to preserve the existing CMS/shop
   cascade. Rules in this file provide the current shop experience.
   ===================================================================== */
@import url("phase2-shop.css");

body:not(.shop-page) main#main {
   padding-top: 0 !important;
}

body:not(.shop-page) .section:first-of-type {
   padding-top: clamp(40px, 6vw, 64px);
}

body.shop-page .product-card-media {
   display: block;
   position: relative;
   overflow: hidden;
   border-radius: 16px 16px 0 0;
   background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

body.shop-page .product-thumb {
   position: relative;
   width: 100%;
   aspect-ratio: 4 / 3;
   overflow: hidden;
   background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

body.shop-page .product-thumb img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
   transition: transform 0.2s ease;
}

body.shop-page .product-card:hover .product-thumb img {
   transform: scale(1.03);
}

body.shop-page .product-thumb-fallback {
   position: absolute;
   inset: 0;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--brand-blue);
   background: linear-gradient(180deg, rgba(243,247,255,0.9), rgba(226,234,245,0.9));
   font-size: clamp(2rem, 3vw, 3rem);
   opacity: 0;
   pointer-events: none;
}

body.shop-page .product-gallery-main {
   position: relative;
   overflow: hidden;
   border-radius: 24px;
   background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
   border: 1px solid rgba(15, 27, 61, 0.08);
   box-shadow: 0 18px 45px -28px rgba(15, 27, 61, 0.28);
}

body.shop-page .product-gallery-stage {
   position: relative;
   width: 100%;
   aspect-ratio: 1 / 1;
   overflow: hidden;
   background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
   cursor: zoom-in;
}

body.shop-page .product-gallery-main.zoomed .product-gallery-stage {
   cursor: zoom-out;
}

body.shop-page .product-gallery-image {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: contain;
   transition: transform 0.28s ease, filter 0.28s ease;
   transform-origin: center center;
}

body.shop-page .product-gallery-main.hover-zoom .product-gallery-image,
body.shop-page .product-gallery-main:hover .product-gallery-image,
body.shop-page .product-gallery-main:focus-within .product-gallery-image {
   transform: scale(1.7);
}

body.shop-page .product-gallery-main.zoomed .product-gallery-image {
   transform: scale(1.8);
   cursor: zoom-out;
}

body.shop-page .product-gallery-main.zoomed:hover .product-gallery-image,
body.shop-page .product-gallery-main.zoomed:focus-within .product-gallery-image {
   transform: scale(1.8);
}

body.shop-page .product-gallery-zoom-btn {
   position: absolute;
   right: 16px;
   bottom: 16px;
   width: 42px;
   height: 42px;
   border: 0;
   border-radius: 50%;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   background: rgba(255, 255, 255, 0.92);
   color: var(--brand-blue);
   box-shadow: 0 12px 24px -16px rgba(15, 27, 61, 0.35);
   cursor: pointer;
   transition: transform 0.2s ease, background 0.2s ease;
   z-index: 2;
}

body.shop-page .product-gallery-zoom-btn:hover {
   transform: translateY(-1px);
   background: #fff;
}

body.shop-page .product-gallery-thumbs {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
   gap: 12px;
   margin-top: 14px;
}

body.shop-page .gallery-thumb-btn {
   width: 100%;
   aspect-ratio: 1 / 1;
   border: 1px solid rgba(15, 27, 61, 0.1);
   background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
   border-radius: 12px;
   overflow: hidden;
   padding: 0;
   cursor: pointer;
   transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.shop-page .gallery-thumb-btn img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
}

body.shop-page .gallery-thumb-btn.active {
   border-color: var(--brand-blue);
   box-shadow: 0 12px 24px -18px rgba(15, 27, 61, 0.4);
}

body.shop-page .gallery-thumb-btn:hover {
   transform: translateY(-1px);
}

body.shop-page .product-thumb.img-fallback img {
   display: none;
}

body.shop-page .product-thumb.img-fallback .product-thumb-fallback {
   opacity: 1;
}

body.shop-page .product-actions {
   display: grid;
   gap: 12px;
   margin-top: 18px;
}

body.shop-page .product-actions .btn,
body.shop-page .product-actions .btn-outline,
body.shop-page .btn-wishlist,
body.shop-page #add-to-cart-btn,
body.shop-page #contact-price-btn,
body.shop-page #product-wishlist-btn {
   display: flex !important;
   width: 100%;
   max-width: 100%;
   min-height: 56px;
   justify-content: center;
   border-radius: 14px;
   font-size: 1.05rem;
   font-weight: 700;
   line-height: 1.2;
   transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

body.shop-page #add-to-cart-btn {
   background: linear-gradient(120deg, var(--brand-blue-2), var(--brand-blue));
   color: #fff;
   border: none;
   box-shadow: 0 14px 28px -20px rgba(29, 78, 216, 0.75);
}

body.shop-page #add-to-cart-btn:hover {
   transform: translateY(-1px);
   box-shadow: 0 18px 32px -22px rgba(29, 78, 216, 0.82);
}

body.shop-page #contact-price-btn {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   background: rgba(15, 27, 61, 0.03);
   color: var(--text-dark);
   border: 1px solid var(--line-light);
   box-shadow: none;
}

body.shop-page #contact-price-btn:hover {
   border-color: var(--brand-blue);
   background: rgba(29, 78, 216, 0.04);
}

body.shop-page #product-wishlist-btn,
body.shop-page .btn-wishlist {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   background: rgba(255, 255, 255, 0.9);
   color: var(--text-dark);
   border: 1px solid var(--line-light);
   box-shadow: none;
}

body.shop-page #product-wishlist-btn:hover,
body.shop-page .btn-wishlist:hover {
   border-color: var(--brand-blue);
   background: rgba(29, 78, 216, 0.02);
}

body.shop-page .product-actions i,
body.shop-page .btn-wishlist i,
body.shop-page #contact-price-btn i,
body.shop-page #add-to-cart-btn i {
   font-size: 1.1rem;
}

@media (max-width: 680px) {
   body.shop-page .newsletter-inner {
      align-items: stretch;
      gap: 16px;
   }
   body.shop-page .newsletter-copy {
      align-items: flex-start;
   }
   body.shop-page .newsletter-form {
      width: 100%;
      max-width: none;
      flex: 1 1 100%;
      flex-wrap: wrap;
      gap: 10px;
   }
   body.shop-page .newsletter-form input,
   body.shop-page .newsletter-form button {
      width: 100%;
      min-height: 44px;
   }
   body.shop-page .newsletter-form button {
      justify-content: center;
   }
   body.shop-page .shop-newsletter-consent {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      flex: 0 0 100%;
      width: 100%;
      max-width: 100%;
      min-width: 0;
   }
   body.shop-page .shop-newsletter-consent input[type="checkbox"] {
      flex: 0 0 16px;
      width: 16px;
      height: 16px;
      min-width: 16px;
      margin: 2px 0 0;
   }
   body.shop-page .shop-newsletter-consent span {
      display: block;
      flex: 1 1 auto;
      min-width: 0;
      line-height: 1.5;
   }
}

@media (max-width:768px){.mobile-shop-bar{position:static!important;inset:auto!important;top:auto!important;right:auto!important;bottom:auto!important;left:auto!important;z-index:auto!important;transform:none!important}}
@media (max-width:900px){
   body.shop-page .shop-layout{grid-template-columns:1fr!important}
   body.shop-page .product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
   body.shop-page .filter-sidebar{position:fixed;top:0;left:calc(-1 * min(85vw,320px));bottom:0;width:min(85vw,320px);z-index:999;transition:left 0.3s ease}
   body.shop-page .filter-sidebar.open{left:0}
   body.shop-page .mobile-shop-bar{display:block;position:static!important;inset:auto!important;z-index:auto!important}
   body.shop-page .shop-toolbar{display:none}
}
@media (min-width:901px){body.shop-page .filter-sidebar{position:static!important;top:auto!important}}
@media (min-width:901px){
   body.shop-page .shop-layout{grid-template-columns:260px minmax(0,1fr);gap:24px}
   body.shop-page .filter-sidebar{padding:22px 20px 6px}
   body.shop-page .filter-checkbox{gap:10px;padding:8px 0;font-size:.9rem}
   body.shop-page .filter-checkbox input{width:16px;height:16px}
   body.shop-page .filter-count{font-size:.82rem;white-space:nowrap}
   body.shop-page .clear-filters-btn{padding:12px 16px;font-size:.85rem}
}
@media (max-width:980px){
   body.shop-page {
      --topbar-height: 0px;
   }
   body.shop-page .shop-topbar-v2 {
      display:none;
   }
   body.shop-page .announce-bar {
      margin-top: 0;
   }
}

@media (max-width:600px){
   body.shop-page .site-header{height:auto;min-height:112px;flex-wrap:wrap;align-content:center;gap:8px;padding:8px 16px}
   body.shop-page .site-header .logo-mark{width:65px!important;height:42px!important}
   body.shop-page .shop-header-actions{margin-left:auto;gap:6px;flex-wrap:nowrap}
   body.shop-page .shop-cart-btn{width:36px;height:36px}
   body.shop-page .shop-offers-btn{padding:9px 11px;font-size:12px}
   body.shop-page .shop-header-search{order:3;flex:0 0 100%;width:100%;max-width:none;margin:4px 0 0}
   body.shop-page .shop-header-search input{min-width:0;font-size:14px}
   body.shop-page .shop-header-search button{width:44px;flex:0 0 44px}
   body.shop-page .mega-nav-bar{overflow:hidden}
   body.shop-page .mega-nav-inner{overflow-x:auto;justify-content:flex-start;gap:10px;padding:10px 16px;white-space:nowrap}
   body.shop-page .mega-nav-links{display:flex;overflow:visible;gap:18px}
   body.shop-page .mega-nav-all{padding:9px 12px;font-size:12px}
   body.shop-page main#main{padding-top:160px!important}
   body.shop-page .vat-banner{position:fixed!important;top:138px!important;left:0;right:0;z-index:900}
   body.shop-page .mega-nav-bar{margin-top:20px}
}

/* Keep the phone header in two predictable rows. The category dropdown is a
   sibling of the scrolling nav row, so the bar must allow it to escape. */
@media (max-width: 600px) {
   body.shop-page .shop-topbar-v2 {
      display: none;
   }
   body.shop-page .shop-header-v2 {
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      gap: 8px 10px;
      min-height: 106px;
      padding: 10px 16px;
   }
   body.shop-page .shop-header-v2 .logo-mark {
      width: 58px !important;
      height: 38px !important;
   }
   body.shop-page .shop-header-actions {
      justify-content: flex-end;
      min-width: 0;
      gap: 6px;
   }
   body.shop-page .shop-offers-btn {
      padding: 9px 10px;
      white-space: nowrap;
   }
   body.shop-page .shop-header-search {
      grid-row: 2;
      grid-column: 1 / -1;
      width: 100%;
      margin: 0;
   }
   body.shop-page .mega-nav-bar {
      overflow: visible;
      z-index: 950;
   }
   body.shop-page .mega-nav-inner {
      position: relative;
      z-index: 1;
   }
   body.shop-page .mega-nav-dropdown {
      z-index: 951;
      top: calc(100% - 1px);
   }
}

/* The legacy shop layer hides the shared announcement bar. Keep it visible
   and in normal flow so it cannot overlap the mobile shop header. */
body.shop-page .announce-bar {
   display: block;
   position: static;
   margin-top: var(--topbar-height, 38px);
   background: linear-gradient(120deg, #ff872b, var(--nav-accent));
}

body.shop-page .announce-bar .container {
   min-height: 40px;
}

body.shop-page .site-header.shop-header-v2 {
   position: static !important;
   top: auto !important;
   left: auto !important;
   right: auto !important;
}

body.shop-page {
   padding-top: 0 !important;
}

/* The announcement and VAT notice now participate in normal flow. Remove
   the old fixed-banner compensation that created the blank mobile gap. */
body.shop-page .vat-banner {
   position: static !important;
   top: auto !important;
   left: auto !important;
   right: auto !important;
   z-index: auto;
   height: 30px !important;
   min-height: 30px !important;
   padding: 0 16px !important;
   line-height: 1.2;
   justify-content: center;
   box-sizing: border-box;
}

body.shop-page main#main {
   padding-top: 0 !important;
}

@media (max-width: 600px) {
   body.shop-page .shop-topbar-v2 {
      min-height: 38px;
   }
   body.shop-page .announce-bar {
      margin-top: 0;
   }
   body.shop-page .shop-topbar-v2 .container {
      height: 38px;
      min-height: 38px;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: center;
      padding: 0 12px;
      gap: 10px;
   }
   body.shop-page .shop-topbar-v2 .topbar-links {
      flex: 1;
      min-width: 0;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: space-between;
      gap: 8px;
      margin: 0;
      overflow: hidden;
   }
   body.shop-page .shop-topbar-v2 .topbar-links span {
      white-space: nowrap;
      font-size: 10px;
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
   }
   body.shop-page .shop-topbar-v2 .topbar-links span:nth-child(2) {
      display: none;
   }
   body.shop-page .shop-topbar-v2 .currency-switcher-wrap {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      max-width: 82px;
      min-width: 82px;
      overflow: hidden;
   }
   body.shop-page .shop-topbar-v2 #currency-switcher {
      max-width: 54px;
      width: 100%;
      min-width: 0;
      padding: 2px 4px;
   }
   body.shop-page .shop-topbar-v2 .topbar-page-links {
      display: none;
   }

   body.shop-page .shop-header-search {
      grid-column: 1 / -1;
      justify-self: stretch;
      width: 100% !important;
      min-width: 0;
      max-width: none;
      flex: none;
   }
   body.shop-page .shop-header-v2 .logo {
      grid-column: 1;
      grid-row: 1;
   }
   body.shop-page .shop-header-actions {
      grid-column: 2;
      grid-row: 1;
   }
   body.shop-page .shop-header-search input {
      min-width: 0;
      width: 100%;
   }
   body.shop-page .shop-header-search button {
      flex: 0 0 44px;
      width: 44px;
   }

   body.shop-page .mega-nav-inner {
      scrollbar-width: none;
   }
   body.shop-page .mega-nav-inner::-webkit-scrollbar {
      display: none;
   }
}

/* =====================================================================
    VAT NOTICE POSITIONING
    The notice is fixed below the shop header; the spacer is unnecessary
    because the notice does not participate in normal document flow.
    ===================================================================== */
.vat-banner {
   position:static !important;
   top:calc(var(--topbar-height) + var(--header-height) + var(--announce-height,0px)) !important;
   font-size:12px;
}
.vat-banner-spacer {
   display:none;
}

.shop-topbar-v2 .topbar-page-links a,
.shop-topbar-v2 .topbar-links span {
   font-size:12px;
}

.shop-topbar-v2 .topbar-page-links {
   display:flex;
   align-items:center;
   justify-content:flex-end;
   gap:18px;
   flex-wrap:nowrap;
   white-space:nowrap;
   min-width:0;
   margin-left:auto;
}

.shop-topbar-v2 .topbar-page-links a {
   display:inline-flex;
   align-items:center;
   justify-content:center;
   flex:0 0 auto;
   white-space:nowrap;
   line-height:1.2;
}

.shop-topbar-v2 .topbar-page-links a[href="/services"],
.shop-topbar-v2 .topbar-page-links a[href="/work"] {
   min-width:max-content;
}

body.shop-page .shop-topbar-v2 .topbar-links {
   display: flex;
   align-items: center;
   justify-content: flex-start;
   gap: 12px;
   flex-wrap: nowrap;
   min-width: 0;
   width: auto;
   margin-left: 0;
   margin-right: auto;
}

body.shop-page .shop-topbar-v2 .topbar-links span {
   display: inline-flex;
   align-items: center;
   flex-shrink: 0;
   white-space: nowrap;
   min-width: 0;
}

body.shop-page .shop-topbar-v2 .topbar-links span:nth-child(2) {
   max-width: min(34vw, 360px);
   overflow: hidden;
   text-overflow: ellipsis;
}

body.shop-page .shop-topbar-v2 .currency-switcher-wrap {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   padding: 2px 8px 2px 6px;
   border-radius: 999px;
   border: 1px solid rgba(255,255,255,0.28);
   background: rgba(255,255,255,0.08);
   min-width: 92px;
   max-width: 92px;
   margin-left: 2px;
}

body.shop-page .shop-topbar-v2 #currency-switcher {
   background: transparent;
   border: 0;
   color: #fff;
   padding: 2px 0;
   min-width: 58px;
   max-width: 58px;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 0.02em;
   cursor: pointer;
   appearance: none;
   -webkit-appearance: none;
   -moz-appearance: none;
}

body.shop-page .shop-topbar-v2 #currency-switcher option {
   color: var(--text-dark);
}

.product-card-desc,
.product-card-body h3 {
   line-clamp:2;
}

.shop-backend-strip{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:20px 0 16px}.shop-backend-strip>div{border:1px solid rgba(15,27,61,0.1);background:rgba(255,255,255,0.7);border-radius:16px;padding:12px 14px;display:flex;flex-direction:column;gap:3px}.shop-backend-strip strong{font-size:18px;color:var(--brand-blue)}.shop-backend-strip span{color:var(--label-gray);font-size:13px}.shop-hero{background:linear-gradient(120deg,var(--text-dark) 0%,var(--brand-blue-2) 55%,var(--brand-blue) 100%);border-radius:32px;padding:46px clamp(24px,4vw,56px);display:grid;grid-template-columns:1.1fr 0.9fr;gap:40px;align-items:center;color:#fff;overflow:hidden;position:relative}.shop-hero-copy h1{font-family:var(--font-display);font-size:clamp(28px,3.5vw,40px);line-height:1.1;margin:0 0 16px;color:#fff}.shop-hero-copy p{color:rgba(255,255,255,0.82);font-size:1rem;max-width:46ch;margin:0 0 28px}.shop-search{display:flex;background:#fff;border-radius:999px;padding:6px;gap:6px;max-width:520px;box-shadow:0 20px 45px -25px rgba(0,0,0,0.45)}.shop-search input{flex:1;border:0;outline:0;background:transparent;padding:12px 18px;font-family:var(--font-body);font-size:0.95rem;color:var(--text-dark)}.shop-search button{display:inline-flex;align-items:center;gap:8px;border:0;border-radius:999px;padding:12px 22px;background:var(--brand-blue);color:#fff;font-weight:700;font-size:0.95rem;cursor:pointer;transition:background 0.2s ease,transform 0.15s ease}.shop-search button:hover{background:var(--text-dark)}.shop-search button:active{transform:scale(0.97)}.distributor-panel{background:#fff;border-radius:24px;padding:28px;color:var(--text-dark)}.distributor-panel-head{text-align:center;font-family:var(--font-display);font-weight:800;font-size:1.4rem;color:var(--text-dark);margin-bottom:18px}.distributor-carousel{display:flex;align-items:center;gap:16px}.distributor-nav-btn{flex:0 0 auto;width:38px;height:38px;border-radius:50%;border:1px solid var(--line-light);background:#fff;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;color:var(--text-dark);transition:background 0.2s ease,color 0.2s ease}.distributor-nav-btn:hover{background:var(--brand-blue);color:#fff}#distributor-track{flex:1;text-align:center;min-height:96px;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px}.distributor-logo{font-family:var(--font-display);font-weight:800;font-size:1.6rem;color:var(--brand-blue)}#distributor-track p{margin:0;font-size:0.85rem;color:var(--label-gray)}#distributor-label{display:block;text-align:center;margin-top:10px;font-size:0.78rem;color:var(--label-gray);font-family:var(--font-mono)}.section:has(#popular-categories){padding-bottom:32px}.section:has(#product-grid){padding-top:0;padding-bottom:40px}.section:has(#product-grid) + .section{padding-top:40px}.section:has(.shop-hero){padding-top:40px}.section:has(.hero-spotlight){padding-top:32px;padding-bottom:32px}.section:has(.hero-spotlight) + .section{padding-top:32px}.section:has(#product-grid) .section-head{text-align:center!important;margin:0 auto!important}.cta-inner:has(>.cta-copy:only-child){grid-template-columns:1fr;justify-items:center}.cta-inner:has(>.cta-copy:only-child) .cta-copy{max-width:640px;text-align:center}.cta-inner:has(>.cta-copy:only-child) .cta-btn{width:auto;justify-self:center;padding-left:44px;padding-right:44px}a #shop-cta-btn{background:var(--brand-blue);color:#fff;border:0;border-radius:12px;padding:14px 24px;font-weight:700;cursor:pointer;transition:background 0.2s ease}.popular-categories-wrap{margin-top:36px}.popular-categories-wrap h3{font-family:var(--font-display);font-size:1.05rem;margin:0 0 14px}.popular-categories{display:flex;flex-wrap:wrap;gap:10px}.category-pill{border:1px solid var(--line-light);background:#fff;border-radius:999px;padding:10px 18px;font-size:0.88rem;font-weight:600;color:var(--text-dark);cursor:pointer;transition:background 0.2s ease,color 0.2s ease,border-color 0.2s ease}.category-pill span{color:var(--label-gray);font-weight:500}.category-pill:hover{border-color:var(--brand-blue)}.category-pill.active{background:var(--brand-blue);border-color:var(--brand-blue);color:#fff}.category-pill.active span{color:rgba(255,255,255,0.75)}.section:has(.shop-hero),.section:has(.hero-spotlight),.section:has(#product-grid),.section:has(.shop-layout),.section:has(.product-detail-grid),.section:has(.cart-layout),.section:has(.catalog-card-grid){padding-top:32px;padding-bottom:32px}.section:has(.shop-hero){padding-top:28px}.shop-hero,.hero-spotlight{padding-top:32px;padding-bottom:32px}.section:has(#product-grid) + .section,.section:has(.shop-layout) + .section{padding-top:32px}@media (max-width:767px){.section:has(.shop-hero),.section:has(.hero-spotlight),.section:has(#product-grid),.section:has(.shop-layout),.section:has(.product-detail-grid),.section:has(.cart-layout),.section:has(.catalog-card-grid){padding-top:24px;padding-bottom:24px}.shop-hero,.hero-spotlight{padding-top:24px;padding-bottom:24px}}.hw-categories-grid,.hw-benefits-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px;margin-top:12px}.hw-benefits-grid{grid-template-columns:repeat(3,minmax(0,1fr))}.shop-browse-head{margin:0 0 24px}.shop-browse-head h2{margin:0;padding-bottom:14px;border-bottom:1px solid var(--line-light);font-family:var(--font-display);font-size:1.5rem;color:var(--text-dark)}.shop-layout{display:grid;grid-template-columns:280px 1fr;gap:32px;align-items:start;margin-top:24px}.filter-sidebar{display:block;background:#fff;border-radius:20px;padding:22px 22px 6px;box-shadow:0 20px 50px -32px rgba(15,27,61,0.3);align-content:start;position:sticky;top:calc(var(--topbar-height) + var(--header-height) + var(--announce-height,0px) + 20px)}.filter-card{background:#fff;border-radius:20px;padding:22px;box-shadow:0 20px 50px -32px rgba(15,27,61,0.3)}.filter-section{padding:18px 0;border-bottom:1px solid var(--line-light)}.filter-section:last-child{border-bottom:0}.filter-section-head{display:flex;align-items:center;justify-content:space-between;width:100%;background:none;border:0;padding:0;cursor:pointer;color:var(--text-dark)}.filter-section-head h4{margin:0;font-family:var(--font-display);font-size:1rem}.filter-section-head i{color:var(--label-gray);font-size:0.8rem;transition:transform 0.2s ease}.filter-section-body{margin-top:14px;display:grid;gap:2px}.filter-section.collapsed .filter-section-body{display:none}.filter-section.collapsed .filter-section-head i{transform:rotate(180deg)}.filter-show-more-btn{display:none;background:none;border:0;padding:8px 0 0;color:var(--brand-blue);font-size:0.85rem;font-weight:600;cursor:pointer;text-align:left}.filter-show-more-btn:hover{text-decoration:underline}.mobile-filter-toggle{display:none;align-items:center;justify-content:center;gap:8px;width:100%;padding:14px;margin:20px 0 0;border:1px solid var(--line-light);border-radius:14px;background:#fff;color:var(--text-dark);font-family:var(--font-display);font-weight:700;font-size:0.95rem;cursor:pointer;transition:border-color 0.2s ease,color 0.2s ease}.mobile-filter-toggle:hover{border-color:var(--brand-blue);color:var(--brand-blue)}.filter-backdrop{display:none}.filter-sidebar-head{display:none}.filter-close-btn{width:36px;height:36px;border-radius:50%;border:1px solid var(--line-light);background:#fff;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;color:var(--text-dark);flex:0 0 auto}.filter-close-btn:hover{border-color:var(--brand-blue);color:var(--brand-blue)}.filter-card h4{margin:0 0 16px;font-family:var(--font-display);font-size:1rem}.price-range-values{display:flex;justify-content:space-between;font-size:0.82rem;color:var(--label-gray);margin-top:10px;font-family:var(--font-mono)}.price-range-sliders{position:relative;height:20px;display:flex;align-items:center}.price-range-sliders input[type="range"]{width:100%;margin:0;appearance:none;background:transparent}.price-range-sliders input[type="range"]::-webkit-slider-thumb{appearance:none;width:18px;height:18px;border-radius:50%;background:var(--brand-blue);border:3px solid #fff;box-shadow:0 2px 8px rgba(15,27,61,0.35);cursor:pointer;margin-top:-7px}.price-range-sliders input[type="range"]::-moz-range-thumb{width:18px;height:18px;border-radius:50%;background:var(--brand-blue);border:3px solid #fff;cursor:pointer}.price-range-sliders input[type="range"]::-webkit-slider-runnable-track{height:4px;background:var(--line-light);border-radius:2px}.price-range-sliders input[type="range"]::-moz-range-track{height:4px;background:var(--line-light);border-radius:2px}.price-filter-submit{width:100%;margin-top:14px;background:#fff;color:var(--brand-blue);border:1.5px solid var(--brand-blue);border-radius:10px;padding:11px;font-weight:700;cursor:pointer;transition:background 0.2s ease,color 0.2s ease}.price-filter-submit:hover{background:var(--brand-blue);color:#fff}.filter-checkbox{display:flex;align-items:center;gap:10px;padding:8px 0;font-size:0.9rem;cursor:pointer}.filter-checkbox input{accent-color:var(--brand-blue);width:16px;height:16px}.filter-checkbox span:first-of-type{flex:1}.filter-count{color:var(--label-gray);font-size:0.82rem}.clear-filters-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;width:100%;margin-bottom:18px;background:#fff;border:1px solid var(--line-light);border-radius:12px;padding:12px 16px;font-size:0.85rem;font-weight:600;cursor:pointer;color:var(--text-dark)}.clear-filters-btn:hover{border-color:var(--brand-blue);color:var(--brand-blue)}.shop-toolbar{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:14px;margin-bottom:22px}#results-count{color:var(--label-gray);font-size:0.9rem}.shop-toolbar-right{display:flex;align-items:center;gap:12px;flex-wrap:wrap}.shop-select-group{display:flex;align-items:center;gap:8px;font-size:0.85rem;color:var(--label-gray)}.shop-select-group select{border:1px solid var(--line-light);border-radius:10px;padding:8px 12px;font-family:var(--font-body);font-size:0.88rem;color:var(--text-dark);background:#fff}.shop-view-toggle{display:flex;align-items:center;gap:6px}.shop-view-btn{width:36px;height:36px;display:inline-flex;align-items:center;justify-content:center;border:1px solid var(--line-light);border-radius:8px;background:#fff;color:var(--label-gray);cursor:pointer;transition:background 0.2s ease,color 0.2s ease,border-color 0.2s ease}.shop-view-btn:hover{border-color:var(--brand-blue);color:var(--brand-blue)}.shop-view-btn.active{background:var(--brand-blue);border-color:var(--brand-blue);color:#fff}.product-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:22px}.product-grid.list-view{grid-template-columns:1fr}.product-grid.list-view .product-card{flex-direction:row;align-items:stretch}.product-grid.list-view .product-card-media{flex:0 0 180px;width:180px}.product-grid.list-view .product-thumb{aspect-ratio:auto;height:100%}.product-grid.list-view .product-card-body{flex-direction:row;align-items:center;flex-wrap:wrap;gap:16px}.product-grid.list-view .product-card-body h3,.product-grid.list-view .product-card-desc,.product-grid.list-view .product-card-sku{flex:1 1 240px}.product-grid.list-view .product-card-price,.product-grid.list-view .vat-note{margin:0;flex:0 0 auto}.product-grid.list-view .product-card-cta{margin-top:0;width:auto;flex:0 0 auto;padding-left:22px;padding-right:22px}.product-card{background:#fff;border-radius:20px;overflow:hidden;box-shadow:0 20px 50px -34px rgba(15,27,61,0.3);display:flex;flex-direction:column;position:relative;transition:transform 0.25s ease,box-shadow 0.25s ease}.product-card:hover{transform:translateY(-4px);box-shadow:0 26px 55px -30px rgba(15,27,61,0.4)}.product-card-media{display:block;position:relative}.product-badge{position:absolute;top:12px;left:12px;z-index:2;background:#F5B300;color:#3A2900;font-size:0.72rem;font-weight:800;padding:5px 10px;border-radius:999px;display:inline-flex;align-items:center;gap:5px}.product-thumb{aspect-ratio:1/1;background:var(--bg-sage);display:flex;align-items:center;justify-content:center;overflow:hidden;position:relative}.product-thumb img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;display:block}.product-thumb-fallback{display:none;flex-direction:column;align-items:center;justify-content:center;color:var(--brand-blue);font-size:2rem;opacity:0.55}.product-thumb.img-fallback .product-thumb-fallback{display:flex}.product-card-actions{position:absolute;top:12px;right:12px;display:flex;flex-direction:column;gap:8px;z-index:2}.product-icon-btn{width:34px;height:34px;border-radius:50%;background:#fff;border:0;display:inline-flex;align-items:center;justify-content:center;color:var(--text-dark);cursor:pointer;box-shadow:0 6px 16px -6px rgba(15,27,61,0.35);transition:background 0.2s ease,color 0.2s ease}.product-icon-btn:hover{background:var(--brand-blue);color:#fff}.product-icon-btn.wishlist-toggle.active{color:#E23}.product-icon-btn.wishlist-toggle.active:hover{color:#fff}.product-card-body{padding:18px;display:flex;flex-direction:column;gap:6px;flex:1}.product-card-category{font-size:0.72rem;text-transform:uppercase;letter-spacing:0.06em;color:var(--label-gray);font-weight:700}.product-card-body h3{font-size:0.98rem;line-height:1.35;margin:0 0 4px;font-family:var(--font-display)}.product-card-body h3 a{color:var(--text-dark);text-decoration:none}.product-card-body h3 a:hover{color:var(--brand-blue)}.product-card-desc{margin:0 0 2px;font-size:0.82rem;line-height:1.45;color:var(--label-gray);display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.product-card-sku{margin:0 0 4px;font-size:0.78rem;color:var(--label-gray)}.product-card-price{display:flex;align-items:baseline;gap:8px;margin-bottom:10px}.price-current{color:var(--brand-blue);font-weight:800;font-size:1.05rem}.price-old{color:var(--label-gray);text-decoration:line-through;font-size:0.85rem}.product-card-cta{margin-top:auto;text-align:center;width:100%;justify-content:center}.no-results{grid-column:1/-1;text-align:center;padding:64px 24px;color:var(--label-gray)}.no-results i{font-size:2rem;margin-bottom:12px;display:block}#shop-pagination{display:flex;justify-content:center;gap:8px;margin-top:36px}.page-btn{width:38px;height:38px;border-radius:10px;border:1px solid var(--line-light);background:#fff;color:var(--text-dark);cursor:pointer;font-weight:600}.page-btn.active{background:var(--brand-blue);border-color:var(--brand-blue);color:#fff}.page-ellipsis{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;color:var(--label-gray)}.page-btn.page-next{color:var(--brand-blue)}.page-btn.page-next:disabled{color:var(--label-gray);cursor:not-allowed;opacity:0.5}.mobile-shop-bar{display:none}.mobile-pagination{display:none;align-items:center;justify-content:space-between;gap:8px}.mobile-page-nav{display:inline-flex;align-items:center;gap:6px;border:0;background:none;padding:6px 2px;font-family:var(--font-display);font-weight:700;font-size:0.85rem;color:var(--label-gray);cursor:pointer;white-space:nowrap}.mobile-page-nav.mobile-page-next{color:var(--brand-blue)}.mobile-page-nav:disabled{opacity:0.4;cursor:not-allowed}.mobile-page-count{font-family:var(--font-display);font-weight:700;font-size:0.95rem;color:var(--text-dark)}.mobile-sort-filter-wrap{position:relative;margin-top:14px;display:flex;justify-content:center}.mobile-sf-pill{display:inline-flex;align-items:center;background:var(--bg-dark,#0B1233);border-radius:999px;padding:6px;gap:4px}.mobile-sf-btn{display:inline-flex;align-items:center;gap:8px;border:0;background:none;color:var(--text-light,#fff);font-family:var(--font-display);font-weight:600;font-size:0.9rem;padding:10px 18px;border-radius:999px;cursor:pointer;transition:background 0.2s ease}.mobile-sf-btn:hover,.mobile-sf-btn:active{background:rgba(245,247,254,0.12)}.mobile-sf-divider{width:1px;height:20px;background:var(--line-dark,rgba(245,247,254,0.14))}.mobile-sort-menu{display:none;position:absolute;top:calc(100% + 8px);left:50%;transform:translateX(-50%);min-width:220px;background:#fff;border-radius:16px;box-shadow:0 24px 60px -20px rgba(15,27,61,0.4);padding:8px;z-index:20}.mobile-sort-menu.open{display:grid;gap:2px}.mobile-sort-menu button{text-align:left;border:0;background:none;padding:10px 12px;border-radius:10px;font-family:var(--font-body);font-size:0.88rem;color:var(--text-dark);cursor:pointer}.mobile-sort-menu button:hover{background:var(--bg-sage,#EEF2FD)}.mobile-sort-menu button.active{background:var(--brand-blue);color:#fff}.breadcrumb{font-size:0.85rem;color:var(--label-gray);margin-bottom:24px}.breadcrumb a{color:var(--label-gray);text-decoration:none}.breadcrumb a:hover{color:var(--brand-blue)}.breadcrumb .current{color:var(--text-dark);font-weight:600}.breadcrumb span{margin:0 6px}.product-detail-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}.product-gallery-main{aspect-ratio:1/1;background:var(--bg-sage);border-radius:24px;display:flex;align-items:center;justify-content:center;overflow:hidden;position:relative;border:1px solid var(--line-light)}.product-gallery-main img{width:100%;height:100%;object-fit:contain;padding:24px}.product-gallery-main .product-thumb-fallback{display:none;flex-direction:column;color:var(--brand-blue);font-size:2.8rem;opacity:0.5}.product-gallery-main.img-fallback .product-thumb-fallback{display:flex}#gallery-thumbs{display:flex;gap:10px;margin-top:14px}.gallery-thumb-btn{width:64px;height:64px;border-radius:12px;border:2px solid transparent;background:var(--bg-sage);overflow:hidden;cursor:pointer;padding:0}.gallery-thumb-btn img{width:100%;height:100%;object-fit:cover}.gallery-thumb-btn.active{border-color:var(--brand-blue)}.product-info h1{font-family:var(--font-display);font-size:clamp(21px,2.2vw,28px);line-height:1.25;margin:0 0 12px}.product-meta{font-size:0.9rem;color:var(--label-gray);margin-bottom:20px}.product-meta a{color:var(--brand-blue);text-decoration:none;font-weight:600}.product-meta strong{color:var(--text-dark)}.product-price-box{background:var(--bg-sage);border-radius:16px;padding:20px 22px;margin-bottom:22px}#product-price{display:flex;align-items:baseline;gap:10px}#product-price .price-current{font-size:1.6rem}#product-stock{margin-top:8px;font-size:0.9rem;color:#1a8f4c;display:flex;align-items:center;gap:6px}#product-stock span{color:var(--label-gray)}#product-stock.out-of-stock{color:#C0362C}.qty-and-actions{display:flex;align-items:center;gap:14px;margin-bottom:16px;flex-wrap:wrap}.qty-stepper{display:flex;align-items:center;border:1px solid var(--line-light);border-radius:12px;overflow:hidden}.qty-stepper button{width:40px;height:44px;border:0;background:#fff;font-size:1.1rem;cursor:pointer;color:var(--text-dark)}.qty-stepper button:hover{background:var(--bg-sage)}.qty-stepper input{width:52px;height:44px;text-align:center;border:0;border-left:1px solid var(--line-light);border-right:1px solid var(--line-light);font-family:var(--font-body);font-size:1rem}.product-actions{display:grid;gap:12px}#contact-price-btn{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;padding:15px;border-radius:14px}.btn-wishlist{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;padding:14px;border-radius:14px;border:1px solid var(--line-light);background:#fff;color:var(--text-dark);cursor:pointer;font-weight:700;font-size:0.95rem}.btn-wishlist:hover{border-color:var(--brand-blue)}.btn-wishlist.active{color:#E23;border-color:#E23}.btn-wishlist.active i{color:#E23}.product-tabs{margin-top:56px}.product-tabs-nav{display:flex;gap:28px;border-bottom:1px solid var(--line-light);margin-bottom:26px}.product-tab-btn{background:none;border:0;padding:14px 2px;font-family:var(--font-display);font-weight:700;font-size:0.95rem;color:var(--label-gray);cursor:pointer;border-bottom:2px solid transparent;margin-bottom:-1px}.product-tab-btn.active{color:var(--brand-blue);border-bottom-color:var(--brand-blue)}.product-tab-panel{display:none}.product-tab-panel.active{display:block}.product-tab-panel p{line-height:1.8;color:var(--text-dark);opacity:0.85;max-width:70ch}.specs-table{width:100%;border-collapse:collapse;margin-bottom:26px}.specs-table tr:nth-child(odd){background:var(--bg-sage)}.specs-table th,.specs-table td{text-align:left;padding:10px 14px;font-size:0.9rem}.specs-table th{width:220px;color:var(--text-dark);font-weight:700}.specs-table td{color:var(--text-dark);opacity:0.85}.product-not-found{text-align:center;padding:80px 24px}.product-not-found .btn{margin-top:16px;display:inline-flex}.related-section{margin-top:64px}.related-section.hidden{display:none}.related-section h2{font-family:var(--font-display);font-size:1.4rem;margin-bottom:20px}@media (max-width:1200px){.shop-layout{grid-template-columns:240px 1fr;gap:24px}}@media (max-width:1100px){.hw-categories-grid,.hw-benefits-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.product-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (max-width:992px){.shop-hero{grid-template-columns:1fr;padding:40px 28px;text-align:center;gap:28px}.shop-search{margin:0 auto}.distributor-panel{max-width:480px;margin:0 auto}.shop-layout{grid-template-columns:1fr;margin-top:8px}.mobile-filter-toggle{display:flex}.filter-backdrop{display:block;position:fixed;inset:0;background:rgba(15,27,61,0.5);z-index:998;opacity:0;visibility:hidden;transition:opacity 0.25s ease,visibility 0.25s ease}.filter-backdrop.open{opacity:1;visibility:visible}.filter-sidebar{position:fixed;top:0;left:calc(-1 * min(85vw,320px));bottom:0;width:min(85vw,320px);grid-template-columns:1fr;gap:16px;align-content:start;background:var(--bg-sage,#f4f6fb);z-index:999;padding:20px;padding-bottom:40px;overflow-y:auto;-webkit-overflow-scrolling:touch;overscroll-behavior:contain;transition:left 0.3s ease;box-shadow:20px 0 50px -20px rgba(15,27,61,0.35)}.filter-sidebar.open{left:0}.filter-sidebar-head{display:flex;align-items:center;justify-content:space-between;margin:-20px -20px 14px;padding:16px 20px;position:sticky;top:0;z-index:2;background:var(--bg-sage,#f4f6fb);border-bottom:1px solid rgba(15,27,61,0.08)}.filter-sidebar-head h3{margin:0;font-family:var(--font-display);font-size:1.1rem}.clear-filters-btn{grid-column:auto}.price-filter-submit{padding:14px;font-size:0.98rem;min-height:48px;border-radius:12px}.product-detail-grid{grid-template-columns:1fr;gap:32px}}@media (max-width:768px){.product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.hw-categories-grid,.hw-benefits-grid{grid-template-columns:1fr}.filter-sidebar{grid-template-columns:1fr}.clear-filters-btn{grid-column:auto}.shop-toolbar{flex-direction:column;align-items:flex-start}.shop-toolbar-right{width:100%;justify-content:space-between}.shop-select-group{flex:1}.shop-select-group select{width:100%}.popular-categories-wrap h3{font-size:1rem}.distributor-carousel{gap:10px}.mobile-shop-bar{display:block;position:sticky;top:calc(var(--topbar-height) + var(--header-height) + var(--announce-height,0px) + var(--vat-banner-height,0px) + 12px);z-index:30;margin:0 0 18px}.mobile-sort-filter-wrap{margin-top:0}.shop-toolbar{display:none}.mobile-filter-toggle{display:none}#shop-pagination{display:none}.mobile-pagination{display:flex;margin-top:28px}}@media (max-width:640px){.shop-hero{padding:32px 20px;border-radius:24px}.shop-hero-copy h1{font-size:clamp(26px,7vw,34px)}.shop-hero-copy p{margin-left:auto;margin-right:auto}.shop-search{flex-direction:column;border-radius:20px;padding:10px;gap:10px}.shop-search input{text-align:center;padding:10px}.shop-search button{justify-content:center}.distributor-panel{padding:20px}.product-card-body h3{font-size:0.9rem}.qty-and-actions{flex-direction:column;align-items:stretch}.qty-stepper{justify-content:center}.product-actions{gap:10px}.breadcrumb{font-size:0.78rem;margin-bottom:16px}.product-tabs{margin-top:36px}.product-tabs-nav{gap:18px;overflow-x:auto;-webkit-overflow-scrolling:touch;padding-bottom:2px}.product-tab-btn{white-space:nowrap}.specs-table th{width:140px}}@media (max-width:480px){.section-inner{padding-left:4px;padding-right:4px}.product-grid{grid-template-columns:1fr 1fr;gap:12px}.product-card-body{padding:12px}.price-current{font-size:0.95rem}.price-old{font-size:0.75rem}.product-badge{font-size:0.64rem;padding:4px 8px}.product-icon-btn{width:28px;height:28px}.filter-sidebar{grid-template-columns:1fr}.filter-card{padding:16px}.popular-categories{gap:8px}.category-pill{padding:8px 14px;font-size:0.82rem}.shop-toolbar-right{flex-direction:column;align-items:stretch;gap:10px}.shop-select-group{justify-content:space-between}.qty-stepper button{width:34px}.gallery-thumb-btn{width:52px;height:52px}}@media (max-width:380px){.distributor-nav-btn{width:32px;height:32px}.product-tabs-nav{gap:14px}}.filter-currency-select-wrap{display:flex;align-items:center;gap:10px;border:1px solid var(--line-light);border-radius:12px;padding:10px 14px;background:#fff}.filter-currency-select-wrap i{color:var(--brand-blue);width:16px;text-align:center}.filter-currency-select-wrap select#currency-switcher{flex:1;border:0;outline:0;background:transparent;font-family:var(--font-body);font-size:0.92rem;color:var(--text-dark);cursor:pointer;padding:2px 0}.filter-currency-select-wrap select#currency-switcher option{color:#0F1B3D}.mega-nav-bar{position:relative;background:#fff;border-bottom:1px solid rgba(15,27,61,0.08)}.mega-nav-inner{display:flex;align-items:center;gap:14px;padding-top:14px;padding-bottom:14px}.mega-nav-all{flex:none;display:inline-flex;align-items:center;gap:8px;background:var(--brand-blue);color:#fff;border:none;border-radius:10px;padding:10px 16px;font-weight:700;font-size:0.9rem;cursor:pointer;white-space:nowrap}.mega-nav-links{display:flex;align-items:center;gap:28px;flex-wrap:nowrap;flex:1 1 auto}.mega-nav-links a{color:#253157;font-weight:600;font-size:0.92rem;white-space:nowrap}.mega-nav-links a:hover,.mega-nav-links a.active{color:var(--brand-blue)}.mega-nav-item{position:relative}.mega-nav-item.active>.mega-nav-item-trigger{color:var(--brand-blue)}.mega-nav-item-trigger{display:inline-flex;align-items:center;gap:5px}.mega-nav-flyout{display:none;position:absolute;top:100%;left:-14px;z-index:30;background:#fff;box-shadow:0 24px 55px -25px rgba(15,27,61,0.35);border-top:2px solid var(--brand-blue);border-radius:0 0 14px 14px;padding:10px;min-width:220px;flex-direction:column;gap:2px}.mega-nav-item:hover .mega-nav-flyout,.mega-nav-item:focus-within .mega-nav-flyout{display:flex}.mega-nav-flyout a{display:flex;align-items:center;gap:8px;padding:8px 10px;border-radius:8px;font-size:0.86rem;font-weight:500;white-space:nowrap}.mega-nav-flyout a:hover{background:rgba(29,78,216,0.08);color:var(--brand-blue)}.mega-nav-dropdown{display:none;position:absolute;top:100%;left:0;z-index:30;background:#fff;box-shadow:0 24px 55px -25px rgba(15,27,61,0.35);border-radius:0 0 14px 14px;padding:16px;max-width:720px;grid-template-columns:1fr 1fr 1fr;gap:6px 18px}.mega-nav-dropdown.open{display:grid}.mega-nav-dropdown-group{min-width:0}.mega-nav-dropdown-parent{display:flex;align-items:center;gap:8px;padding:9px 10px;border-radius:8px;color:#253157;font-size:0.88rem;font-weight:700}.mega-nav-dropdown-parent:hover{background:rgba(29,78,216,0.08);color:var(--brand-blue)}.mega-nav-dropdown-parent span{margin-left:auto;color:var(--label-gray);font-weight:500;font-size:0.78rem}.mega-nav-dropdown-subs{display:flex;flex-direction:column;padding-left:14px}.mega-nav-dropdown-subs a{padding:5px 10px;border-radius:6px;color:var(--label-gray);font-size:0.82rem;font-weight:500}.mega-nav-dropdown-subs a:hover{background:rgba(29,78,216,0.08);color:var(--brand-blue)}
@media (max-width:860px){
  /* The dropdown was keeping its desktop 3-column, 720px-wide grid on
     phones — with position:absolute;left:0 and no right-edge constraint it
     ran off the right side of the screen instead of wrapping/scrolling
     vertically. Switch it to a single column that fills the viewport
     width and scrolls down instead. */
  .mega-nav-dropdown{left:12px;right:12px;width:auto;max-width:none;grid-template-columns:1fr;gap:4px;padding:14px;max-height:min(70vh,520px);overflow-y:auto}
  .mega-nav-dropdown-group{padding-bottom:6px;border-bottom:1px solid rgba(15,27,61,0.06)}
  .mega-nav-dropdown-group:last-child{border-bottom:none}
  .mega-nav-dropdown-parent{gap:10px}
  .mega-nav-dropdown-parent i{width:18px;text-align:center;flex:none}
  .mega-nav-all{padding:10px 14px}
}.hero-spotlight{display:grid;grid-template-columns:1.15fr 0.75fr 1.1fr;gap:22px;background:linear-gradient(135deg,#F4F7FF 0%,#FDFDFF 100%);border:1px solid rgba(15,27,61,0.06);border-radius:20px;padding:32px;margin-bottom:28px;align-items:center}.hero-spotlight-copy h1{font-size:1.85rem;line-height:1.2;margin:10px 0 12px}.hero-spotlight-copy p{color:var(--label-gray);font-size:0.95rem;line-height:1.6;margin-bottom:14px}.spotlight-sku{display:block;font-family:var(--font-mono);font-size:0.82rem;color:var(--label-gray);margin-bottom:18px}.spotlight-view-btn{display:inline-flex;align-items:center;gap:8px}.hero-spotlight-links{display:grid;gap:10px;align-self:center}.spotlight-link-card{display:flex;align-items:center;justify-content:space-between;gap:10px;background:#fff;border:1px solid rgba(15,27,61,0.08);border-radius:12px;padding:12px 16px;font-weight:700;font-size:0.88rem;color:var(--brand-blue);box-shadow:0 10px 24px -18px rgba(15,27,61,0.3)}.spotlight-link-card i:first-child{margin-right:4px}.spotlight-link-card:hover{transform:translateX(2px)}.hero-spotlight-media{position:relative;background:#fff;border-radius:16px;min-height:260px;display:flex;align-items:center;justify-content:center;overflow:hidden}.spotlight-image-wrap{width:100%;height:260px;display:flex;align-items:center;justify-content:center;padding:16px}.spotlight-image-wrap img{max-width:100%;max-height:100%;object-fit:contain}.spotlight-nav-btn{position:absolute;top:50%;transform:translateY(-50%);z-index:3;width:34px;height:34px;border-radius:50%;border:1px solid rgba(15,27,61,0.1);background:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center}.spotlight-prev{left:10px}.spotlight-next{right:10px}.spotlight-dots{position:absolute;bottom:12px;left:50%;transform:translateX(-50%);display:flex;gap:6px}.spotlight-dots span{width:7px;height:7px;border-radius:50%;background:rgba(15,27,61,0.18)}.spotlight-dots span.active{background:var(--brand-blue);width:18px;border-radius:4px}.shop-search-standalone{margin-bottom:28px}.filter-brand-search-wrap{margin-bottom:10px}.filter-brand-search-wrap input{width:100%;padding:9px 12px;border-radius:8px;border:1px solid rgba(15,27,61,0.14);font-size:0.85rem}.filter-empty{font-size:0.82rem;color:var(--label-gray)}.product-badge-offer{background:#DC2626;color:#fff}.product-badge-promo{background:#1D4ED8;color:#fff}.brand-strip-section{padding-top:32px;padding-bottom:32px}.brand-strip-section.is-empty{display:none}.brand-strip-heading{font-size:1.1rem;margin-bottom:16px}.brand-strip-row{display:flex;align-items:center;gap:20px}.brand-strip-viewport{flex:1 1 auto;min-width:0;overflow:hidden;-webkit-mask-image:linear-gradient(90deg,transparent 0,#000 24px,#000 calc(100% - 24px),transparent 100%);mask-image:linear-gradient(90deg,transparent 0,#000 24px,#000 calc(100% - 24px),transparent 100%)}.brand-strip{display:flex;flex-wrap:nowrap;gap:14px;width:max-content;animation:brand-strip-scroll 28s linear infinite}.brand-strip-viewport:hover .brand-strip{animation-play-state:paused}@keyframes brand-strip-scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}@media (prefers-reduced-motion:reduce){.brand-strip{animation:none}}.brand-strip-item{flex:none;width:130px;height:64px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(15,27,61,0.1);border-radius:12px;background:#fff;padding:10px 16px}.brand-strip-item img{max-width:100%;max-height:100%;object-fit:contain}.brand-strip-item span{font-weight:800;color:#253157;font-size:0.92rem;text-align:center}.brand-strip-viewall{flex:none;display:inline-flex;align-items:center;color:var(--brand-blue);font-weight:700;gap:6px;white-space:nowrap}.newsletter-band{background:#EEF2FF;padding:30px var(--gutter);margin-top:40px}.shop-newsletter-consent{flex:0 0 100%;width:100%;margin-top:2px;color:var(--label-gray)}.shop-newsletter-consent input[type="checkbox"]{width:16px;height:16px;margin:2px 0 0;accent-color:var(--brand-blue)}.shop-newsletter-consent span{color:var(--label-gray);font-size:.75rem;line-height:1.45}.newsletter-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}.newsletter-copy{display:flex;align-items:center;gap:16px}.newsletter-icon{width:48px;height:48px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;color:var(--brand-blue);font-size:1.1rem;flex:none}.newsletter-copy h3{font-size:1.05rem;margin-bottom:4px}.newsletter-copy p{color:var(--label-gray);font-size:0.88rem}.newsletter-form{display:flex;gap:10px;flex-wrap:wrap;flex:1 1 360px;max-width:460px}.newsletter-form input{flex:1;padding:12px 16px;border-radius:10px;border:1px solid rgba(15,27,61,0.14);font-size:0.9rem}.newsletter-form button{display:inline-flex;align-items:center;gap:8px;padding:12px 20px;border-radius:10px;border:none;background:var(--brand-blue);color:#fff;font-weight:700;cursor:pointer;white-space:nowrap}.newsletter-status{width:100%;font-size:0.82rem;margin-top:4px}.newsletter-status.success{color:#15803D}.newsletter-status.already{color:#1D4ED8}.newsletter-status.error{color:#DC2626}.help-band{background:#d7ff4e;color:var(--text-dark);padding:34px var(--gutter)}.help-band-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}.help-band-copy h3{color:#061b13;font-size:1.2rem;margin-bottom:6px}.help-band-copy p{color:#061b13;font-size:0.9rem;max-width:420px}.help-band-actions{display:flex;gap:14px;flex-wrap:wrap}.help-band-btn{display:inline-flex;align-items:center;gap:12px;background:#fff;color:#0B1233;border-radius:12px;padding:12px 18px;font-size:0.85rem;font-weight:600}.help-band-btn i{font-size:1.2rem;color:var(--brand-blue)}.help-band-btn strong{font-size:0.92rem}.legal-hero{padding-top:48px;padding-bottom:48px;border-bottom:1px solid var(--line-light)}.legal-hero .section-head{margin:0 auto}.privacy-hero{padding-top:56px;padding-bottom:56px}.privacy-hero .section-inner,.privacy-hero .section-head{width:100%;margin-left:auto;margin-right:auto;text-align:center}.section:has(.legal-page-body){padding-top:32px;padding-bottom:40px}.legal-page-body h3{margin-top:26px;margin-bottom:8px;font-size:1.05rem}.legal-page-body p{color:var(--label-gray);line-height:1.75;margin-bottom:10px}@media (max-width:767px){.legal-hero{padding-top:36px;padding-bottom:36px}.privacy-hero{padding-top:42px;padding-bottom:42px}.section:has(.legal-page-body){padding-top:24px;padding-bottom:28px}}@media (max-width:1100px){.hero-spotlight{grid-template-columns:1fr 1fr}.hero-spotlight-media{grid-column:1 / -1}}@media (max-width:720px){.hero-spotlight{grid-template-columns:1fr;padding:22px}.mega-nav-links{display:none}.newsletter-inner,.help-band-inner{justify-content:center;text-align:center}.newsletter-form{max-width:100%}}.visually-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.shop-topbar-v2 .topbar-page-links{display:flex;align-items:center;gap:22px}.shop-topbar-v2 .topbar-page-links a{color:rgba(255,255,255,0.88);font-size:13px;font-weight:500}.shop-topbar-v2 .topbar-page-links a:hover{color:#fff}.shop-header-v2{display:flex;align-items:center;gap:24px;padding:14px var(--gutter)}.shop-header-v2 .logo{flex:none}.shop-header-search{flex:1;display:flex;max-width:560px;margin:0 auto}.shop-header-search input{flex:1;border:1px solid rgba(15,27,61,0.14);border-right:none;border-radius:10px 0 0 10px;padding:12px 16px;font-size:0.9rem;outline:none}.shop-header-search input:focus{border-color:var(--brand-blue)}.shop-header-search button{border:1px solid var(--brand-blue);background:var(--brand-blue);color:#fff;border-radius:0 10px 10px 0;width:46px;cursor:pointer}.search-preview-panel{display:none;position:absolute;top:calc(100% + 8px);left:0;right:0;z-index:970;background:#fff;border-radius:14px;box-shadow:0 28px 60px -25px rgba(15,27,61,0.4);border:1px solid rgba(15,27,61,0.08);padding:8px;max-height:420px;overflow-y:auto}.search-preview-panel.open{display:block}.search-preview-row{display:flex;align-items:center;gap:12px;padding:8px;border-radius:10px;color:var(--text-dark)}.search-preview-row:hover{background:rgba(29,78,216,0.06)}.search-preview-thumb{width:42px;height:42px;flex:none;border-radius:8px;background:var(--bg-sage);display:flex;align-items:center;justify-content:center;overflow:hidden;color:var(--brand-blue);opacity:0.7}.search-preview-thumb img{max-width:100%;max-height:100%;object-fit:contain}.search-preview-info{flex:1;min-width:0;display:flex;flex-direction:column;gap:2px}.search-preview-name{font-size:0.86rem;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.search-preview-meta{font-size:0.74rem;color:var(--label-gray)}.search-preview-price{flex:none;font-size:0.84rem;font-weight:700;color:var(--brand-blue)}.search-preview-empty{padding:14px 10px;font-size:0.85rem;color:var(--label-gray);text-align:center}.search-preview-viewall{display:block;text-align:center;padding:10px;margin-top:4px;border-top:1px solid rgba(15,27,61,0.08);font-size:0.82rem;font-weight:700;color:var(--brand-blue)}.shop-header-actions{display:flex;align-items:center;gap:12px;flex:none}.shop-cart-btn{width:44px;height:44px;border-radius:10px;border:1px solid rgba(15,27,61,0.14);display:flex;align-items:center;justify-content:center;position:relative;color:#253157}.shop-offers-btn{display:inline-flex;align-items:center;gap:8px;background:var(--brand-blue);color:#fff;border-radius:10px;padding:11px 18px;font-weight:700;font-size:0.88rem;white-space:nowrap}.shop-mobile-nav{display:none;position:absolute;top:100%;left:0;right:0;width:100%;flex-direction:column;align-items:stretch;gap:0;max-height:0;overflow:hidden;background:#fff;border-top:1px solid var(--line-light);box-shadow:0 18px 34px rgba(15,27,61,0.14);transition:max-height 0.3s ease;z-index:900}
@media (max-width:980px){
  /* Match the 980px breakpoint styles.css uses to reveal .nav-toggle in
     the first place — previously the toggle could appear (861–980px)
     with no way to open the menu, since these rules only kicked in below
     860px. */
  .shop-mobile-nav{display:flex}
  .shop-mobile-nav.open{max-height:85vh;overflow-y:auto;padding:10px 20px 22px}
  .shop-mobile-nav a{width:100%;padding:13px 4px;font-size:16px;border-radius:0;display:flex;align-items:center;gap:10px}
  .shop-mobile-nav a i{width:18px;text-align:center;flex:none;opacity:0.75}
  /* Belt-and-braces: guarantee the hamburger itself renders regardless of
     any earlier cascade — visible box, dark bars, sits in-flow next to the
     cart/offers icons instead of the desktop's absolute corner position. */
  .shop-header-v2 .nav-toggle{display:flex!important;position:static;top:auto;right:auto;transform:none;flex:none;flex-shrink:0;background:rgba(255,255,255,0.9);border:1px solid var(--line-light);box-shadow:0 8px 20px -12px rgba(15,27,61,0.3);z-index:999}
  .shop-header-v2 .nav-toggle span{display:block!important;width:22px;height:2px;background:var(--text-dark);margin:5px 0;border-radius:1px}
  /* flex-wrap:nowrap alone would let the cart/offers buttons shrink down to
     nothing to make room; letting the row wrap (not shrink) instead keeps
     every icon fully visible even if the toggle drops to its own line. */
  .shop-header-actions{flex-wrap:wrap;justify-content:flex-end;row-gap:8px}
  .shop-header-actions>*{flex-shrink:0}
}@media (max-width:860px){.shop-header-v2{flex-wrap:wrap}.shop-header-v2 .nav-toggle{position:static;top:auto;right:auto;transform:none}.shop-header-search{order:3;max-width:100%;width:100%;min-width:0}.shop-header-search input{min-width:0;width:100%}.shop-header-search button{flex:0 0 46px}.shop-offers-btn span,.shop-offers-btn{padding:11px 14px}.shop-topbar-v2 .topbar-page-links{display:none}}@media (max-width:640px){.shop-topbar-v2 .topbar-links span:nth-child(2){display:none}.shop-header-search{margin:8px 0 0}.shop-header-search input{font-size:14px;padding-left:12px;padding-right:8px}.shop-header-search button{width:42px;flex-basis:42px}.mobile-shop-bar{width:100%;overflow:visible}.mobile-sf-pill{max-width:100%}.mobile-sf-btn{min-width:0;padding-left:12px;padding-right:12px}.mobile-sf-btn span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:34vw}.mobile-sort-menu{max-width:calc(100vw - 32px)}}.mega-nav-links a{display:inline-flex;align-items:center;gap:5px}.mega-nav-links a i{font-size:10px;color:var(--label-gray)}.shop-search button,.newsletter-form button,.product-card-cta,.btn-wishlist,.qty-stepper button,.mobile-sort-menu button{border-radius:8px;font-size:16px}.shop-search button,.newsletter-form button,.product-card-cta,.btn-wishlist,.qty-stepper button,.mobile-sort-menu button{font-size:14px;line-height:1.25}body.shop-page,body.shop-page button,body.shop-page input,body.shop-page select,body.shop-page textarea{font-family:'Ubuntu',sans-serif}body.shop-page .site-header{min-height:64px}body.shop-page .site-header .logo-mark{width:110px;height:50px;padding:0;border-radius:0;background:transparent;box-shadow:none}body.shop-page .shop-offers-btn{border-radius:8px;font-family:'Ubuntu',sans-serif;font-size:13px}body .hero-spotlight-copy h1{font-size:clamp(24px,3vw,36px)}body .shop-browse-head h2,body .shop-results h2{font-size:24px}body .shop-page h3{font-size:18px}body .shop-page p{font-size:13px}.product-card-body h3{font-size:14px}.product-card-desc{font-size:12px}.product-card-price{font-size:14px}

/* ---------------------------------------------------------------------
   Loading skeleton — shown in #product-grid / #collection-grid the instant
   the page renders (plain server-rendered HTML, no JS needed), and simply
   overwritten once shop.js/collection-page.js replace the grid's innerHTML
   with real product cards. Keeps the shop from showing a blank gap while
   api/catalog.php is fetched. See PRODUCT_GRID_SKELETON_COUNT markup in
   shop.php/featured.php/offers.php/promotional.php.
   --------------------------------------------------------------------- */
.skeleton-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px -34px rgba(15, 27, 61, 0.3);
  padding: 0 0 18px;
}
.skeleton-thumb {
  aspect-ratio: 1 / 1;
  background: var(--bg-sage);
}
.skeleton-line {
  height: 12px;
  margin: 14px 18px 0;
  border-radius: 6px;
  background: var(--bg-sage);
}
.skeleton-line-title { width: 78%; }
.skeleton-line-sub { width: 55%; height: 10px; }
.skeleton-line-price { width: 40%; height: 16px; margin-top: 12px; }
.skeleton-thumb,
.skeleton-line {
  position: relative;
  overflow: hidden;
}
.skeleton-thumb::after,
.skeleton-line::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}
@keyframes skeleton-shimmer {
  100% { transform: translateX(100%); }
}
@media (prefers-reduced-motion: reduce) {
  .skeleton-thumb::after,
  .skeleton-line::after {
    animation: none;
  }
}
