/* =========================
   Base / Reset
========================= */

:root{
  --store-bg: #f4f6fb;
  --store-surface: #ffffff;
  --store-surface-soft: #f7f9fc;

  --store-text: #162033;
  --store-muted: #6b7890;

  --store-border: rgba(22,32,51,.10);
  --store-border-soft: rgba(22,32,51,.06);

  --store-shadow-sm: 0 10px 30px rgba(7,15,30,.06);
  --store-shadow: 0 18px 50px rgba(7,15,30,.10);

  --store-radius-xl: 28px;
  --store-radius-lg: 24px;
  --store-radius-md: 18px;
  --store-radius-sm: 14px;

  --store-ring: rgba(79,110,247,.18);

  --store-primary: #4f6ef7;
  --store-primary-dark: #3f5de0;
  --store-dark: #111827;
}

html{
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html,
body{
  min-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

@supports (overflow: clip){
  html,
  body{
    overflow-x: clip;
  }
}

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

body{
  background: var(--store-bg);
  color: var(--store-text);
  font-family: Figtree, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg,
video,
canvas{
  max-width: 100%;
  height: auto;
}

img{
  display: block;
}
.logotech-brand__name {
  font-size: clamp(0.9rem, 4vw, 1.5rem);
  line-height: 1.1;
}

a{
  color: inherit;
}

.store-page{
  min-height: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

.store-main{
  --store-content-gutter: clamp(1rem, 2.5vw, 1.75rem);
  flex: 1 0 auto;
  width: 100%;
  min-width: 0;
}

.store-main .store-container,
.store-main .container,
.store-main .container-fluid,
.store-main .cart-shell{
  padding-left: calc(var(--store-content-gutter) + env(safe-area-inset-left));
  padding-right: calc(var(--store-content-gutter) + env(safe-area-inset-right));
}

.store-container{
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.store-section{
  margin-bottom: 1.5rem;
}

.store-card,
.card{
  border: 1px solid var(--store-border-soft);
  border-radius: var(--store-radius-md);
  box-shadow: var(--store-shadow-sm);
  background: var(--store-surface);
}

.store-card-hover{
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

.store-card-hover:hover{
  transform: translateY(-2px);
  box-shadow: var(--store-shadow);
  border-color: var(--store-border);
}

.btn,
.form-control,
.form-select,
.input-group-text{
  border-radius: var(--store-radius-sm);
}

.form-control,
.form-select{
  border-color: rgba(22,32,51,.12);
  min-height: 48px;
  box-shadow: none;
}

.form-control::placeholder{
  color: rgba(107,120,144,.85);
}

.form-control:focus,
.form-select:focus,
.btn:focus{
  box-shadow: 0 0 0 .25rem var(--store-ring);
}

.dropdown-menu{
  border-radius: 16px;
  border: 1px solid rgba(22,32,51,.10);
  box-shadow: var(--store-shadow);
  padding: .35rem;
}

.dropdown-item{
  border-radius: 12px;
  padding: .55rem .7rem;
  font-weight: 700;
}

.dropdown-item:hover{
  background: rgba(79,110,247,.06);
}

.btn-soft{
  border-radius: 14px;
  border-color: rgba(22,32,51,.14);
  font-weight: 800;
}

.btn-soft:hover{
  background: rgba(22,32,51,.04);
}

.btn-strong{
  border-radius: 16px;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 12px 26px rgba(7,15,30,.10);
}

.alert{
  border-radius: var(--store-radius-sm);
  border-color: rgba(22,32,51,.08);
  box-shadow: 0 10px 22px rgba(7,15,30,.05);
}

.alert-success{
  background: linear-gradient(180deg, rgba(34,197,94,.10), rgba(34,197,94,.06));
  border-color: rgba(34,197,94,.18);
  color: #166534;
}

.alert-danger{
  background: linear-gradient(180deg, rgba(239,68,68,.10), rgba(239,68,68,.06));
  border-color: rgba(239,68,68,.18);
  color: #991b1b;
}

.table > :not(caption) > * > *{
  border-color: rgba(0,0,0,.06);
}

.pagination{
  gap: .35rem;
}

.page-link{
  border-radius: 999px !important;
  border: 1px solid rgba(22,32,51,.10) !important;
  padding: .45rem .80rem;
  font-weight: 900;
  color: var(--store-text);
  box-shadow: 0 10px 22px rgba(7,15,30,.06);
}

.page-link:hover{
  background: rgba(79,110,247,.08);
  border-color: rgba(79,110,247,.20) !important;
}

.page-item.active .page-link{
  background: rgba(79,110,247,.12) !important;
  border-color: rgba(79,110,247,.30) !important;
  color: var(--store-primary-dark) !important;
  box-shadow: 0 0 0 4px rgba(79,110,247,.10);
}

.page-item.disabled .page-link{
  opacity: .45;
  box-shadow: none;
}

.store-page-enter{
  animation: storeFadeUp .25s ease;
}

@keyframes storeFadeUp{
  from{
    opacity: 0;
    transform: translateY(6px);
  }
  to{
    opacity: 1;
    transform: none;
  }
}

/* =========================
   HEADER
========================= */

.site-topbar{
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(246,248,252,.90);
  border-bottom: 1px solid rgba(79,110,247,.06);
}

.site-topbar__row{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
}

.site-topbar__left,
.site-topbar__right{
  display: flex;
  align-items: center;
  gap: .6rem;
}

.site-topbar__center{
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(420px, 1fr);
  align-items: center;
  gap: 1.2rem;
}

.brand-wrap{
  min-width: 0;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}

.brand-mark{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5f7397;
  color: #fff;
  font-weight: 900;
  font-size: .84rem;
  letter-spacing: .04em;
  box-shadow: 0 10px 24px rgba(17,24,39,.15);
  flex-shrink: 0;
}

.brand-name{
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: #162033;
  line-height: 1;
}

.site-main-nav{
  display: flex;
  align-items: center;
  gap: .25rem;
}

.site-main-nav__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .6rem .85rem;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(22,32,51,.70);
  font-weight: 800;
  border: 1px solid transparent;
  background: transparent;
  transition: all .16s ease;
}

.site-main-nav__link:hover{
  color: #162033;
  background: rgba(22,32,51,.05);
}

.site-main-nav__link.is-active{
  color: #162033;
  background: rgba(22,32,51,.08);
  border-color: rgba(22,32,51,.06);
}

.site-main-nav__link--button{
  appearance: none;
  cursor: pointer;
}

.nav-search-shell{
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  width: 100%;
  max-width: 100%;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(22,32,51,.08);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(7,15,30,.05);
}

.nav-search-input{
  width: 100% !important;
  border: 0 !important;
  background: transparent !important;
  min-height: 54px;
  padding-left: 2.65rem !important;
  padding-right: 1rem !important;
  color: #162033 !important;
  box-shadow: none !important;
  font-size: .96rem;
}
.nav-search-shell:focus-within{
  border-color: rgba(79,110,247,.18);
  box-shadow: 0 0 0 4px rgba(79,110,247,.08), 0 8px 24px rgba(7,15,30,.05);
}

.nav-search-icon{
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(107,120,144,.9);
  z-index: 2;
  pointer-events: none;
  font-size: .95rem;
}


.nav-search-input::placeholder{
  color: rgba(107,120,144,.85);
}
.nav-search-shell{
  width: 100% !important;
  max-width: 520px !important;
  flex: 1 1 520px;
}

.site-action-btn{
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .6rem .9rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: all .16s ease;
}

.site-action-btn--ghost{
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(22,32,51,.08);
  color: rgba(22,32,51,.78);
}

.site-action-btn--ghost:hover{
  background: rgba(255,255,255,.96);
  color: #162033;
}

.suggest{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(22,32,51,.10);
  z-index: 1050;
}

.suggest a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--store-text);
  border-bottom: 1px solid rgba(22,32,51,.06);
}

.suggest a:last-child{
  border-bottom: 0;
}

.suggest a:hover{
  background: rgba(79,110,247,.06);
}

.suggest .s-left{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.suggest .s-name{
  font-weight: 800;
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.suggest .s-meta{
  color: var(--store-muted);
  font-size: .85rem;
  white-space: nowrap;
}

.account-menu{
  border: 1px solid rgba(22,32,51,.10);
  border-radius: 18px;
  overflow: hidden;
}

.account-menu .dropdown-item{
  padding: .7rem .9rem;
  font-weight: 700;
}

/* =========================
   SHOP DROPDOWN
========================= */

.dropdown-menu.shop-dropdown,
.dropdown-menu.shop-dropdown--eb{
  --bs-dropdown-min-width: 320px;
  overflow-y: visible !important;
}

.shop-dropdown,
.shop-dropdown--eb{
  min-width: 320px;
  max-width: 420px;
  padding: 12px !important;
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,249,252,.98) 100%);
  box-shadow: 0 18px 40px rgba(22,32,51,.10), 0 4px 14px rgba(22,32,51,.05);
  overflow: visible !important;
  max-height: none !important;
}

.shop-dropdown-title{
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6b7890;
  padding: 4px 10px 8px;
}

.shop-dropdown-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 8px;
  overflow: visible !important;
  max-height: none !important;
}

.shop-dropdown .dropdown-item,
.shop-dropdown--eb .dropdown-item{
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  font-weight: 600;
  color: #162033;
  white-space: normal;
  transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.shop-dropdown .dropdown-item:hover,
.shop-dropdown .dropdown-item:focus,
.shop-dropdown--eb .dropdown-item:hover,
.shop-dropdown--eb .dropdown-item:focus{
  color: #4f6ef7;
  background: linear-gradient(135deg, rgba(79,110,247,.10), rgba(79,110,247,.04));
  box-shadow: inset 0 0 0 1px rgba(79,110,247,.10);
  transform: translateX(3px);
}

.site-main-nav__link--button.dropdown-toggle{
  border-radius: 12px;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.site-main-nav__link--button.dropdown-toggle:hover,
.site-main-nav__link--button.dropdown-toggle:focus{
  background: rgba(22,32,51,.05);
  color: #4f6ef7;
}

.site-main-nav__link--button.is-active{
  background: rgba(79,110,247,.08);
  color: #4f6ef7;
}

/* =========================
   MOBILE NAV
========================= */

#mobileShopNav.mobile-shop-nav{
  --bs-offcanvas-width: min(92vw, 390px);
  max-width: 390px;
  border-right: 0;
  color: #ffffff;
  background: #17243a;
  box-shadow: 18px 0 46px rgba(2, 6, 23, .38);
}

#mobileShopNav .offcanvas-header{
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: #17243a;
}

#mobileShopNav .offcanvas-title{
  color: #ffffff;
}

#mobileShopNav .offcanvas-body{
  padding: 1rem;
  overflow-y: auto;
  background: #17243a;
}

#mobileShopNav .form-label{
  color: rgba(255,255,255,.68) !important;
}

#mobileShopNav .nav-search-shell{
  max-width: none !important;
  min-height: 48px;
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
}

#mobileShopNav .nav-search-shell:focus-within{
  border-color: rgba(126,231,255,.45);
  box-shadow: 0 0 0 4px rgba(56,189,248,.12);
}

#mobileShopNav .nav-search-icon{
  color: rgba(255,255,255,.58);
}

#mobileShopNav .nav-search-input{
  min-height: 48px;
  color: #ffffff !important;
}

#mobileShopNav .nav-search-input::placeholder{
  color: rgba(255,255,255,.48);
}

.mobile-nav-group{
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.mobile-nav-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-height: 50px;
  padding: .82rem .9rem;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-family: inherit;
  text-align: left;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, transform .16s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus{
  background: rgba(255,255,255,.10);
  border-color: rgba(126,231,255,.28);
  color: #ffffff;
}

.mobile-nav-link[aria-expanded="true"]{
  background: rgba(56,189,248,.16);
  border-color: rgba(126,231,255,.34);
  color: #fff;
}

.mobile-nav-link__left{
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-width: 0;
}

.mobile-nav-link__toggle{
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  line-height: 1;
  flex-shrink: 0;
}

.mobile-nav-link[aria-expanded="true"] .mobile-nav-link__toggle{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.18);
  color: #ffffff;
}

.mobile-nav-link__toggle i{
  transition: transform .18s ease;
}

.mobile-nav-link[aria-expanded="true"] .mobile-nav-link__toggle i{
  transform: rotate(180deg);
}

#mobileShopNav .mobile-nav-collapse{
  margin-top: .6rem;
  padding: .65rem;
  border-radius: 18px;
  background: rgba(2,6,23,.32);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

#mobileShopNav a{
  text-decoration: none;
}

#mobileShopNav .shop-category-drawer__list{
  display: grid;
  gap: .45rem;
}

#mobileShopNav .shop-category-drawer__item,
#mobileShopNav .shop-category-drawer__child-item{
  position: relative;
}

#mobileShopNav .shop-category-drawer__mobile-row{
  display: flex;
  align-items: stretch;
  gap: .5rem;
}

#mobileShopNav .shop-category-drawer__parent,
#mobileShopNav .shop-category-drawer__child{
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 50px;
  padding: .78rem .85rem;
  border-radius: 14px;
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.25;
  background: rgba(15,35,61,.86);
  border: 1px solid rgba(255,255,255,.10);
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

#mobileShopNav .shop-category-drawer__parent:hover,
#mobileShopNav .shop-category-drawer__parent:focus,
#mobileShopNav .shop-category-drawer__child:hover,
#mobileShopNav .shop-category-drawer__child:focus{
  color: #ffffff;
  background: rgba(27,55,91,.96);
  border-color: rgba(126,231,255,.28);
}

#mobileShopNav .shop-category-drawer__toggle{
  width: 50px;
  min-height: 50px;
  flex: 0 0 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 0;
  appearance: none;
  background: rgba(15,35,61,.86);
  color: rgba(255,255,255,.78);
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

#mobileShopNav .shop-category-drawer__toggle:hover,
#mobileShopNav .shop-category-drawer__toggle:focus{
  background: rgba(27,55,91,.96);
  border-color: rgba(126,231,255,.30);
  color: #ffffff;
}

#mobileShopNav .shop-category-drawer__toggle .shop-category-drawer__chevron{
  transition: transform .18s ease;
}

#mobileShopNav .shop-category-drawer__toggle:not(.collapsed){
  background: rgba(27,55,91,.96);
  border-color: rgba(126,231,255,.30);
  color: #ffffff;
}

#mobileShopNav .shop-category-drawer__toggle:not(.collapsed) .shop-category-drawer__chevron{
  transform: rotate(180deg);
}

#mobileShopNav .shop-category-drawer__children{
  display: none;
  margin: .45rem 0 .15rem .72rem;
  padding: .35rem 0 .35rem .78rem;
  border-left: 1px solid rgba(126,231,255,.24);
}

#mobileShopNav .shop-category-drawer__children.show,
#mobileShopNav .shop-category-drawer__children.collapsing{
  display: grid;
  gap: .25rem;
}

#mobileShopNav .shop-category-drawer__child{
  min-height: 44px;
  color: rgba(255,255,255,.78);
  font-weight: 700;
  background: rgba(255,255,255,.05);
  border-color: transparent;
}

#mobileShopNav .shop-category-drawer__child--all{
  color: #7ee7ff;
  font-weight: 800;
  background: rgba(126,231,255,.08);
  border-color: rgba(126,231,255,.16);
}

#mobileShopNav .shop-category-drawer__children--level-2{
  margin-left: .95rem;
}

#mobileShopNav .shop-category-drawer__children--level-2 .shop-category-drawer__child,
#mobileShopNav .shop-category-drawer__children--level-3 .shop-category-drawer__child{
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255,255,255,.70);
}

#mobileShopNav .shop-category-drawer__child-item + .shop-category-drawer__child-item,
#mobileShopNav .shop-category-drawer__child-item + .shop-category-drawer__child,
#mobileShopNav .shop-category-drawer__child + .shop-category-drawer__child-item{
  margin-top: .25rem;
}

#mobileShopNav .shop-category-drawer__empty{
  padding: .85rem;
  color: rgba(255,255,255,.60);
  font-size: .92rem;
}

.mobile-only-search{
  min-height: 48px;
}

.mobile-only-search .nav-search-input{
  min-height: 48px;
}

/* =========================
   HOME
========================= */

.store-shell{
  color: var(--store-text);
}

.store-panel{
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(247,249,252,.96) 100%);
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(22,32,51,.08), 0 4px 14px rgba(22,32,51,.04);
  padding: 22px;
}

.store-home-hero{
  position: relative;
}

.store-hero__panel{
  position: relative;
  overflow: hidden;
  border-radius: var(--store-radius-xl);
  padding: 2.2rem;
  border: 1px solid var(--store-border-soft);
  background:
    radial-gradient(900px 320px at 10% 0%, rgba(79,110,247,.14), transparent 55%),
    radial-gradient(700px 280px at 90% 10%, rgba(108,130,255,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.90));
  box-shadow: 0 18px 50px rgba(7,15,30,.08);
}

.store-kicker{
  display: inline-flex;
  align-items: center;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: var(--store-dark);
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
}

.store-hero__title{
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 950;
  margin: 0 0 .8rem;
  max-width: 720px;
}

.store-hero__text{
  max-width: 620px;
  color: var(--store-muted);
  font-size: 1.05rem;
  margin: 0;
}

.store-hero__actions{
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.store-btn-primary{
  min-height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, #4f6ef7, #6983ff);
  border: none;
  color: #fff;
  font-weight: 800;
  padding: .78rem 1.1rem;
}

.store-btn-primary:hover{
  color: #fff;
  background: linear-gradient(135deg, #3f5de0, #5d75ef);
}

.store-btn-secondary{
  min-height: 50px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(22,32,51,.10);
  color: var(--store-text);
  font-weight: 700;
  padding: .78rem 1.1rem;
}

.store-btn-secondary:hover{
  background: rgba(22,32,51,.04);
  color: var(--store-text);
}

.store-hero__stats{
  display: grid;
  gap: .9rem;
}

.store-stat-card{
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(22,32,51,.06);
  box-shadow: 0 10px 30px rgba(7,15,30,.05);
}

.store-stat-card__label{
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--store-muted);
  font-weight: 800;
}

.store-stat-card__value{
  margin-top: .25rem;
  font-weight: 900;
  letter-spacing: -.02em;
}

.store-section__head{
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.store-section__head h2{
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -.02em;
}

.store-section__head p{
  margin: .18rem 0 0;
  color: var(--store-muted);
}

.store-section__link{
  text-decoration: none;
  color: #55647c;
  font-weight: 700;
}

.store-section__link:hover{
  color: var(--store-text);
}

.store-category-card{
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 20px;
  text-decoration: none;
  color: var(--store-text);
  background:
    radial-gradient(520px 180px at 20% 0%, rgba(79,110,247,.12), transparent 60%),
    linear-gradient(180deg, #fff, #fbfcff);
  border: 1px solid rgba(22,32,51,.06);
  box-shadow: 0 10px 30px rgba(7,15,30,.06);
  transition: all .16s ease;
}

.store-category-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(7,15,30,.10);
  color: var(--store-text);
}

.store-category-card__top{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.store-category-card__icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(22,32,51,.08);
  color: #4f6ef7;
  box-shadow: 0 8px 18px rgba(7,15,30,.05);
}

.store-category-card__name{
  font-weight: 900;
  letter-spacing: -.02em;
  font-size: 1.02rem;
}

.store-category-card__meta{
  font-size: .92rem;
  color: var(--store-muted);
  font-weight: 700;
}

/* =========================
   CATALOG
========================= */

.store-catalog{
  color: var(--store-text);
}

.store-catalog__top{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:1rem;
  flex-wrap:wrap;
}

.store-results-title{
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: -.03em;
}

.store-page-meta{
  white-space: nowrap;
}






.store-sort-form{
  margin: 0;
  flex: 0 0 auto;
}

.store-sort-wrap{
  width: 220px;
  max-width: 100%;
}

.store-sort-select{
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border-radius: 16px;
  padding-right: 2.5rem;
  font-weight: 700;
  background-color: #fff;
  border: 1px solid rgba(22,32,51,.10);
  box-shadow: none;
}

.store-sidepanel{
  position: sticky;
  top: 110px;
  border-radius: 22px !important;
  border: 1px solid rgba(22,32,51,.08);
  background: rgba(255,255,255,.95);
  box-shadow: 0 14px 36px rgba(7,15,30,.06);
  overflow: hidden;
}

.store-sidepanel__body{
  padding: 1rem;
}

.store-sidepanel__group + .store-sidepanel__group{
  margin-top: 1.5rem;
}

.store-sidepanel__title{
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 900;
  margin-bottom: .8rem;
  color: #4a5872;
}

.store-side-link{
  display: block;
  padding: .72rem .85rem;
  border-radius: 14px;
  text-decoration: none;
  color: #4a5872;
  font-weight: 700;
  border: 1px solid rgba(22,32,51,.06);
  background: #fff;
  transition: .16s ease;
}

.store-side-link:hover{
  background: rgba(79,110,247,.05);
  color: #162033;
}

.store-side-link.is-active{
  background: rgba(79,110,247,.10);
  border-color: rgba(79,110,247,.18);
  color: #3f5de0;
}

.filter-chip{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(79,110,247,.10);
  border: 1px solid rgba(79,110,247,.12);
  color: #3f5de0;
  font-size: .84rem;
  font-weight: 700;
}

.filter-chip--removable{
  gap: .5rem;
  padding-right: .45rem;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease;
}

.filter-chip--removable:hover{
  background: rgba(79,110,247,.14);
  border-color: rgba(79,110,247,.20);
  color: #3f5de0;
}

.filter-chip__x{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(79,110,247,.10);
  font-size: .68rem;
  line-height: 1;
  flex-shrink: 0;
}

.clear-link{
  color: #55647c;
  font-weight: 700;
}

.clear-link:hover{
  color: #162033;
}

.store-products-panel{
  background: transparent;
}

.store-filters-drawer{
  max-width: 360px;
}

.store-empty{
  background: #fff;
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(22,32,51,.05);
}

.store-empty__body{
  padding: 1.5rem;
}

/* =========================
   PRODUCT CARDS
========================= */

.product-card-link{
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.product-card--store{
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(7,26,51,.08);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(2,12,32,.06);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.product-card--store:hover{
  transform: translateY(-6px);
  border-color: rgba(45,140,255,.18);
  box-shadow: 0 20px 42px rgba(2,12,32,.10);
}



.pc-media::before{
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  background: transparent;
  border: 0;
  pointer-events: none;
}

.pc-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.pc-media{
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: #ffffff;
  border-bottom: 1px solid rgba(7,26,51,.06);
}

.pc-img{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center !important;
  display: block;
  transition: transform .35s ease;
  padding: 8px;
}
.pc-media img{
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center !important;
}
.product-card--store:hover .pc-img{
  transform: scale(1.03);
}

.pc-img--fallback{
  object-fit: contain;
  padding: 10px;
  background: #ffffff;
}

.pc-badges{
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
  z-index: 2;
}

.pc-badge{
  border: 0;
  border-radius: 999px;
  padding: 8px 11px;
  font-size: .70rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(22,32,51,.10);
}

.pc-badge--soft{
  background: rgba(255,255,255,.94);
  color: #162033;
  border: 1px solid rgba(22,32,51,.08);
}

.pc-badge--deal{
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
}

.pc-body{
  display: flex;
  flex-direction: column;
  gap: .4rem;
  padding: 18px 18px 16px;
}

.pc-meta-top{
  margin-bottom: 2px;
}

.pc-meta{
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: .76rem;
  line-height: 1.4;
  color: #7b8698;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pc-title{
  margin: 0;
  font-size: 1rem;
  line-height: 1.42;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #162033;
  min-height: 2.84em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pc-price{
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pc-price-old{
  color: #97a3b6;
  text-decoration: line-through;
  font-size: .84rem;
  font-weight: 700;
}

.pc-price-now{
  font-size: 1.12rem;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #df4759;
}

.pc-price-now--normal{
  color: #162033;
}

.pc-foot{
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(22,32,51,.06);
}

.pc-hint{
  font-size: .88rem;
  font-weight: 700;
  color: #6b7890;
  transition: color .18s ease;
}

.pc-arrow{
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(79,110,247,.08);
  color: #4f6ef7;
  transition:
    transform .18s ease,
    background-color .18s ease,
    color .18s ease;
}

.product-card--store:hover .pc-hint{
  color: #4f6ef7;
}

.product-card--store:hover .pc-arrow{
  transform: translateX(4px);
  background: rgba(79,110,247,.14);
  color: #3f5de0;
}

@media (max-width: 767.98px){
  .product-card--store{
    border-radius: 22px;
  }

  .pc-media{
    padding: 12px;
  }

  .pc-media::before{
    inset: 10px;
    border-radius: 16px;
  }

  .pc-body{
    padding: 15px 15px 14px;
  }

  .pc-title{
    font-size: .95rem;
  }

  .pc-price-now{
    font-size: 1rem;
  }

  .pc-arrow{
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
}

@media (max-width: 575.98px){
  .pc-badges{
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .pc-badge{
    padding: 7px 10px;
    font-size: .66rem;
  }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-page{
  color: var(--store-text);
}

.contact-hero__panel{
  position: relative;
  overflow: hidden;
  border-radius: var(--store-radius-xl);
  padding: 2rem;
  border: 1px solid var(--store-border-soft);
  background:
    radial-gradient(900px 320px at 10% 0%, rgba(79,110,247,.14), transparent 55%),
    radial-gradient(700px 280px at 90% 10%, rgba(108,130,255,.08), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.90));
  box-shadow: 0 18px 50px rgba(7,15,30,.08);
}

.contact-kicker{
  display: inline-flex;
  align-items: center;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: var(--store-dark);
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-hero__title{
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 950;
  margin: 0 0 .8rem;
}

.contact-hero__text{
  color: var(--store-muted);
  font-size: 1.02rem;
  margin: 0;
}

.contact-hero__info{
  display: grid;
  gap: .9rem;
}

.contact-info-card{
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(22,32,51,.06);
  box-shadow: 0 10px 30px rgba(7,15,30,.05);
}

.contact-info-card__label{
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--store-muted);
  font-weight: 800;
}

.contact-info-card__value{
  margin-top: .25rem;
  font-weight: 900;
  letter-spacing: -.02em;
}

/* =========================
   FOOTER
========================= */

.site-footer{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(56, 189, 248, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.14), transparent 30rem),
    linear-gradient(135deg, #061224 0%, #071a33 52%, #020817 100%);
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(125, 211, 252, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 82%);
}

.site-footer .container {
  max-width: 1440px;
}

.site-footer .footer-container {
  padding-top: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}

.site-footer .modal {
  color: #172033;
}

.footer-shell {
  position: relative;
  z-index: 1;
}

.footer-brand {
  color: #ffffff;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1;
}

.footer-text {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  line-height: 1.55;
}

.footer-title {
  margin-bottom: 0.85rem;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fw-black{
  font-weight: 900;
  letter-spacing: -.02em;
}

.footer-link{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: .55rem;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  padding: .32rem .48rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 750;
  transition: color .18s ease, background-color .18s ease, transform .18s ease;
}

.footer-link:hover{
  color: #38bdf8;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transform: translateX(2px);
}

.footer-link i {
  color: rgba(125, 211, 252, 0.68);
  font-size: 0.78rem;
}

.footer-track-card {
  max-width: 29rem;
  padding: clamp(0.9rem, 1.7vw, 1.15rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 36px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.footer-track-card__head {
  color: #ffffff;
}

.footer-track-card__head i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.12);
  color: #7dd3fc;
}

.footer-track-input {
  min-height: 42px;
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: none;
}

.footer-track-input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.footer-track-input:focus {
  border-color: rgba(56, 189, 248, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(56, 189, 248, 0.12);
}

.footer-track-btn {
  min-height: 42px;
  padding: 0 1rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

.footer-track-btn:hover,
.footer-track-btn:focus {
  color: #ffffff;
  box-shadow:
    0 14px 28px rgba(37, 99, 235, 0.28),
    0 0 0 4px rgba(56, 189, 248, 0.12);
}

.footer-contact-block {
  color: rgba(255, 255, 255, 0.72);
}

.footer-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  transition: color .18s ease, border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.footer-email-btn:hover,
.footer-email-btn:focus {
  border-color: rgba(56, 189, 248, 0.32);
  background: rgba(56, 189, 248, 0.1);
  color: #7dd3fc;
  transform: translateY(-1px);
}

.footer-collection-card {
  margin-top: 1rem;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.footer-collection-card i {
  color: #7dd3fc;
}

.footer-collection-card__text {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
  line-height: 1.45;
}

.footer-hr {
  border-color: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.footer-bottom {
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
}

.footer-copy {
  font-weight: 750;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  min-height: 30px;
  padding: 0.28rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 750;
}

.footer-pill i {
  color: #7dd3fc;
}

@media (max-width: 991.98px) {
  .site-footer .footer-container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .footer-title {
    margin-bottom: 0.55rem;
  }

  .footer-track-card {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .site-footer .footer-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .footer-link {
    width: 100%;
    justify-content: flex-start;
  }

  .footer-track-card,
  .footer-collection-card {
    border-radius: 16px;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 576px){
  .store-container{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (min-width: 1200px){
  .store-container{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 1399.98px){
  .site-topbar__center{
    grid-template-columns: auto minmax(320px, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 1199.98px){
  .store-sidepanel{
    position: static;
  }

  .site-topbar__center{
    grid-template-columns: 1fr;
  }

  .site-main-nav{
    gap: 0;
  }

  .shop-dropdown,
  .shop-dropdown--eb{
    min-width: 280px;
    max-width: 360px;
  }

  .shop-dropdown-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px){
  .site-topbar__row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
  }

  .brand-name{
    font-size: 1.05rem;
  }

  .brand-mark{
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: .76rem;
  }

  .store-hero__panel,
  .contact-hero__panel{
    padding: 1.5rem;
  }

  .store-product__title{
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
}


/* =========================
   FULL-WIDTH / BOXED PAGE LAYOUT
========================= */

.store-page-section{
  width: 100%;
  position: relative;
}

.store-page-section--boxed{
  padding: 28px 0;
  background:
    radial-gradient(circle at 90% 6%, rgba(56, 189, 248, 0.08), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.store-main .cart-page{
  background:
    radial-gradient(circle at 88% 0%, rgba(56, 189, 248, 0.08), transparent 26rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.store-page-section--full{
  width: 100%;
  padding: 42px 0;
}

.store-page-section--soft{
  background: linear-gradient(180deg, #eef2f8 0%, #e8edf6 100%);
}

.store-page-section--white{
  background: #fbfcfe;
}

.store-page-section--feature{
  background:
    radial-gradient(900px 340px at 12% 0%, rgba(79,110,247,.12), transparent 55%),
    radial-gradient(680px 260px at 88% 10%, rgba(130,150,255,.10), transparent 58%),
    linear-gradient(180deg, #162033 0%, #162033 100%);
}

.store-full-bleed-inner{
  max-width: 1460px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.store-content-box{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(22,32,51,.08);
  padding: 24px;
}

.store-content-box--soft{
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,249,252,.96));
}

.store-panel{
  background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(247,249,252,.96) 100%);
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(22,32,51,.08), 0 4px 14px rgba(22,32,51,.04);
  padding: 22px;
}

/* =========================
   HERO / FEATURE LAYOUT
========================= */

.store-hero-slab{
  background:
    radial-gradient(1000px 360px at 12% 0%, rgba(79,110,247,.14), transparent 55%),
    radial-gradient(760px 280px at 88% 12%, rgba(130,150,255,.12), transparent 58%),
    linear-gradient(180deg, rgba(172, 9, 9, 0.98), rgba(247,249,252,.96));
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 34px;
  box-shadow: 0 20px 50px rgba(22,32,51,.10);
  padding: 32px;
}

.store-hero-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.store-hero-mini{
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(54, 54, 54, 0.06);
  box-shadow: 0 12px 26px rgba(22,32,51,.05);
}

.store-hero-mini__label{
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--store-muted);
  font-weight: 800;
  margin-bottom: .45rem;
}

.store-hero-mini__value{
  font-weight: 800;
  color: var(--store-text);
  line-height: 1.45;
}

/* =========================
   FULL-WIDTH STRIPS
========================= */

.store-collection-strip{
  padding: 18px 6px;
}

.store-collection-strip__head{
  text-align: center;
  margin-bottom: 1.4rem;
}

.store-collection-strip__head h2{
  margin: 0 0 .35rem;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -.03em;
}

.store-collection-strip__head p{
  margin: 0;
  color: var(--store-muted);
}

.store-pill-grid{
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  justify-content: center;
}

.store-pill-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #162033;
  border: 1px solid rgba(22,32,51,.12);
  background: rgba(255,255,255,.92);
  transition: all .16s ease;
}

.store-pill-link:hover{
  color: var(--store-primary-dark);
  border-color: rgba(79,110,247,.24);
  background: rgba(79,110,247,.06);
  transform: translateY(-1px);
}

.store-feature-band{
  padding: 14px 4px;
}

.store-feature-band__content{
  max-width: 520px;
}

.store-feature-band__eyebrow{
  display: inline-flex;
  align-items: center;
  padding: .42rem .8rem;
  border-radius: 999px;
  background: rgba(253, 254, 255, 0.151);
  color: #ffffff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.store-feature-band__content h2{
  margin: 0 0 .75rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 950;
  letter-spacing: -.04em;
  line-height: 1.05;
}

.store-feature-band__content p{
  color: var(--store-muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.store-feature-band__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.store-feature-band__card .col-6,
.store-feature-band__card .col-md-4,
.store-feature-band__card .col-xxl-3{
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

/* =========================
   CATALOG INTRO HERO
========================= */

.store-catalog-hero{
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,249,252,.96));
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(22,32,51,.08);
  padding: 24px 28px;
}

.store-catalog-hero__inner{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-kicker--light{
  background: rgba(22,32,51,.08);
  color: #162033;
}

.store-results-title--hero{
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  letter-spacing: -.04em;
}

.store-page-meta--hero{
  color: var(--store-muted);
  font-weight: 700;
}

/* =========================
   PRODUCT CARD REFINEMENT
========================= */

.product-card--store{
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(2,12,32,.06);
}



.pc-body{
  padding: 18px 18px 16px;
}

.pc-title{
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 850;
}

.pc-price-now{
  font-size: 1.1rem;
}

.pc-foot{
  margin-top: auto;
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 1200px){
  .store-full-bleed-inner{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
}

@media (max-width: 1199.98px){
  .store-feature-band__grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991.98px){
  .store-hero-slab{
    padding: 24px;
    border-radius: 28px;
  }

  .store-hero-grid{
    grid-template-columns: 1fr;
  }

  .store-feature-band__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px){
  .store-page-section--boxed{
    padding: 22px 0;
  }

  .store-page-section--full{
    padding: 26px 0;
  }

  .store-content-box,
  .store-panel,
  .store-catalog-hero,
  .store-hero-slab{
    padding: 18px;
    border-radius: 22px;
  }

  .store-feature-band__grid{
    gap: 12px;
  }

  .store-pill-grid{
    gap: .7rem;
  }

  .store-pill-link{
    width: 100%;
  }
}

/* =========================
   FIXED SIDEBAR ON HOME + SHOP
========================= */

.store-sidepanel{
  position: sticky;
  top: 110px;
}

@media (max-width: 1199.98px){
  .store-sidepanel{
    position: static;
    top: auto;
  }
}

/* =========================
   PRODUCT PAGE MIXED LAYOUT
========================= */

.store-product-hero{
  background:
    radial-gradient(900px 320px at 10% 0%, rgba(79,110,247,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,249,252,.96));
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(22,32,51,.08);
  padding: 24px 28px;
}

.store-product-hero__crumb{
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  color: var(--store-muted);
  font-size: .9rem;
}

.store-product-hero__crumb a{
  color: inherit;
  text-decoration: none;
}

.store-product-hero__crumb a:hover{
  color: var(--store-text);
}

.store-product-hero__top{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-product-hero__title{
  margin: .7rem 0 .5rem;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 950;
}

.store-product-hero__meta{
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  color: var(--store-muted);
  font-weight: 600;
}

.store-product-sidebar{
  position: sticky;
  top: 110px;
}

.store-product-buybox{
  border-radius: 26px;
}

.store-product-info-card{
  border-radius: 24px;
}

.store-product-info-list{
  display: grid;
  gap: 1rem;
}

.store-product-info-item{
  padding-bottom: .95rem;
  border-bottom: 1px solid rgba(22,32,51,.06);
}

.store-product-info-item:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

.store-product-info-item__label{
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 800;
  color: var(--store-muted);
  margin-bottom: .25rem;
}

.store-product-info-item__value{
  font-weight: 700;
  color: var(--store-text);
}

.store-spec-card{
  height: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(247,249,252,.9);
  border: 1px solid rgba(22,32,51,.06);
}

.store-spec-card__label{
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--store-muted);
  font-weight: 800;
  margin-bottom: .35rem;
}

.store-spec-card__value{
  font-weight: 800;
  color: var(--store-text);
  line-height: 1.45;
}

.store-product-tabs{
  border-bottom: 1px solid rgba(22,32,51,.10);
  gap: .35rem;
  flex-wrap: wrap;
}

.store-product-tabs .nav-link{
  border: 0;
  border-radius: 999px;
  color: var(--store-muted);
  font-weight: 800;
  padding: .55rem .95rem;
}

.store-product-tabs .nav-link:hover{
  background: rgba(22,32,51,.04);
  color: var(--store-text);
}

.store-product-tabs .nav-link.active{
  background: rgba(79,110,247,.10);
  color: #3f5de0;
  box-shadow: 0 0 0 4px rgba(79,110,247,.10);
}

.store-gallery{
  border-radius: 28px !important;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
}

.store-gallery__frame{
  aspect-ratio: 1 / 1;
  background: #f7f9fc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.store-gallery__img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.store-gallery__empty{
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(500px 180px at 20% 0%, rgba(79,110,247,.10), transparent 60%),
    linear-gradient(180deg, #fff, #f7f9fc);
}

.store-gallery__control{
  width: 12%;
}

.store-gallery__thumbs{
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}

.thumb-btn{
  border-radius: 16px;
  border: 1px solid rgba(22,32,51,.12);
  overflow: hidden;
  width: 68px;
  height: 58px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(7,15,30,.06);
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}

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

.thumb-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(7,15,30,.10);
  border-color: rgba(22,32,51,.18);
}

.store-buybox__head{
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.store-buybox__eyebrow{
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 900;
  color: #27364d;
}

.store-buybox__sub{
  color: var(--store-muted);
  font-size: .92rem;
  margin-top: .18rem;
}

.option-group{
  gap: .55rem !important;
}

.opt-label{
  font-size: .92rem;
  color: var(--store-muted);
  font-weight: 600;
  letter-spacing: -.01em;
}

.opt-label strong{
  color: var(--store-text);
  font-weight: 800;
}

.swatch-btn{
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px !important;
  border: 1px solid rgba(22,32,51,.14);
  background: rgba(255,255,255,.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: transform .10s ease, box-shadow .14s ease, border-color .14s ease;
}

.swatch-dot{
  width: 32px;
  height: 32px;
  border-radius: 999px !important;
  background-color: var(--swatch, #adb5bd);
  background-image: var(--swatch-img, none);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(22,32,51,.14);
  display: block;
}

.swatch-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7,15,30,.12);
  border-color: rgba(22,32,51,.20);
}

.swatch-btn.is-selected{
  border-color: rgba(79,110,247,.60);
  box-shadow: 0 0 0 5px rgba(79,110,247,.14);
}

.swatch-btn.is-disabled{
  opacity: .32;
  filter: grayscale(1);
  cursor: not-allowed;
  box-shadow: none !important;
  transform: none !important;
}

.swatch-hot{
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  line-height: 1;
  padding: 3px 7px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  border: 1px solid rgba(0,0,0,.12);
  font-weight: 800;
  letter-spacing: .03em;
  box-shadow: 0 10px 20px rgba(239,68,68,.25);
}

.tile-btn{
  border: 1px solid rgba(22,32,51,.14);
  background: rgba(255,255,255,.92);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: .92rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .10s ease, box-shadow .14s ease, border-color .14s ease, background .14s ease;
}

.tile-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(7,15,30,.10);
  border-color: rgba(22,32,51,.20);
}

.tile-btn.is-selected{
  background: rgba(79,110,247,.10);
  border-color: rgba(79,110,247,.55);
  box-shadow: 0 0 0 4px rgba(79,110,247,.12);
  font-weight: 800;
}

.tile-btn.is-disabled{
  opacity: .45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.variant-panel{
  background:
    radial-gradient(600px 220px at 0% 0%, rgba(79,110,247,.10), transparent 55%),
    linear-gradient(180deg, #ffffff, #f7f9fc);
  border: 1px solid rgba(22,32,51,.10) !important;
  border-radius: var(--store-radius-sm) !important;
}

#variantLabel{
  font-weight: 900;
  letter-spacing: -.02em;
}

#variantSku,
#variantChoice{
  font-size: .88rem;
  color: var(--store-muted);
}

#regularPrice{
  font-size: .86rem;
}

#finalPrice{
  font-size: 1.18rem !important;
  letter-spacing: -.02em;
}

#addBtn.btn{
  border-radius: 16px;
  padding: 12px 14px;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 12px 26px rgba(79,110,247,.18);
}

@media (max-width: 991.98px){
  .store-product-sidebar{
    position: static;
    top: auto;
  }

  .store-product-hero{
    padding: 20px;
    border-radius: 24px;
  }

  .store-product-hero__title{
    font-size: clamp(1.7rem, 7vw, 2.35rem);
  }
}

@media (max-width: 767.98px){
  .store-gallery{
    border-radius: 22px !important;
  }

  .thumb-btn{
    width: 68px;
    height: 68px;
  }
}

/* =========================
   SECOND NAVBAR
========================= */

.site-subnav{
  background: #ffffff;
  border-top: 1px solid rgba(22,32,51,.05);
  border-bottom: 1px solid rgba(22,32,51,.07);
}

.site-subnav__row{
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-subnav__shopbtn{
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(22,32,51,.10);
  background: #fff;
  color: #162033;
  font-weight: 800;
  transition: all .16s ease;
}

.site-subnav__shopbtn:hover{
  background: rgba(79,110,247,.05);
  border-color: rgba(79,110,247,.18);
  color: #3f5de0;
}

.site-subnav__links{
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.site-subnav__link{
  text-decoration: none;
  font-weight: 800;
  color: #162033;
  padding: .35rem 0;
}

.site-subnav__link:hover{
  color: #3f5de0;
}

/* =========================
   CATEGORY DRAWER
========================= */

.shop-category-drawer{
  --bs-offcanvas-width: 430px;
  background: #1a2640;
  color: #fff;
}

.shop-category-drawer .offcanvas-header{
  padding: 1.4rem 1.4rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.shop-category-drawer .offcanvas-body{
  padding: 1rem 1.4rem 1.4rem;
}

.shop-category-drawer__eyebrow{
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.68);
  font-weight: 800;
  margin-bottom: .35rem;
}

.shop-category-drawer__list{
  display: grid;
  gap: .4rem;
}

.shop-category-drawer__item{
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: .35rem;
}

.shop-category-drawer__parent{
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
  padding: .7rem 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 700;
  text-align: left;
}

.shop-category-drawer__parent--link{
  text-decoration: none;
}

.shop-category-drawer__parent:hover,
.shop-category-drawer__parent--link:hover{
  color: #fff;
  opacity: .9;
}

.shop-category-drawer__children{
  padding: .2rem 0 .5rem .4rem;
  display: grid;
  gap: .25rem;
}

.shop-category-drawer__child{
  color: rgba(255,255,255,.82);
  text-decoration: none;
  padding: .45rem 0;
  font-weight: 600;
}

.shop-category-drawer__child:hover{
  color: #fff;
}

.shop-category-drawer__child--all{
  color: #ffffff;
  font-weight: 800;
}

/* =========================
   REMOVE OLD LEFT SIDEBAR FEEL
========================= */

.store-products-panel{
  min-height: 0;
}



/* =========================
   PRODUCT PAGE
========================= */

.store-product-hero{
  background:
    radial-gradient(900px 320px at 10% 0%, rgba(79,110,247,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,249,252,.96));
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 30px;
  box-shadow: 0 18px 40px rgba(22,32,51,.08);
  padding: 24px 28px;
}

.store-product-hero__crumb{
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  color: var(--store-muted);
  font-size: .9rem;
}

.store-product-hero__crumb a{
  color: inherit;
  text-decoration: none;
}

.store-product-hero__crumb a:hover{
  color: var(--store-text);
}

.store-product-hero__top{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-product-hero__title{
  margin: .7rem 0 .5rem;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 950;
}

.store-product-hero__meta{
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  color: var(--store-muted);
  font-weight: 600;
}

.store-gallery{
  border-radius: 28px !important;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
}

.store-gallery__frame{
  aspect-ratio: 1 / 1;
  background: #f7f9fc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.store-gallery__img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.store-gallery__empty{
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(500px 180px at 20% 0%, rgba(79,110,247,.10), transparent 60%),
    linear-gradient(180deg, #fff, #f7f9fc);
}

.store-gallery__control{
  width: 12%;
}

.store-gallery__thumbs{
  display: flex;
  gap: .65rem;
  flex-wrap: wrap;
}

.store-buybox__head{
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.store-buybox__eyebrow{
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 900;
  color: #55647c;
}

.store-buybox__sub{
  color: var(--store-muted);
  font-size: .92rem;
  margin-top: .18rem;
}

.store-product-tabs{
  border-bottom: 1px solid rgba(22,32,51,.10);
  gap: .35rem;
  flex-wrap: wrap;
}

.store-product-tabs .nav-link{
  border: 0;
  border-radius: 999px;
  color: var(--store-muted);
  font-weight: 800;
  padding: .55rem .90rem;
}

.store-product-tabs .nav-link:hover{
  background: rgba(22,32,51,.04);
  color: var(--store-text);
}

.store-product-tabs .nav-link.active{
  background: rgba(79,110,247,.10);
  color: #3f5de0;
  box-shadow: 0 0 0 4px rgba(79,110,247,.10);
}

.store-spec-card{
  height: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(247,249,252,.9);
  border: 1px solid rgba(22,32,51,.06);
}

.store-spec-card__label{
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--store-muted);
  font-weight: 800;
  margin-bottom: .35rem;
}

.store-spec-card__value{
  font-weight: 800;
  color: var(--store-text);
  line-height: 1.45;
}

@media (max-width: 991.98px){
  .site-subnav{
    display: none !important;
  }

  .shop-category-drawer{
    --bs-offcanvas-width: 100%;
  }

  .store-product-hero{
    padding: 20px;
    border-radius: 24px;
  }

  .store-product-hero__title{
    font-size: clamp(1.7rem, 7vw, 2.35rem);
  }
}

@media (max-width: 767.98px){
  .store-gallery{
    border-radius: 22px !important;
  }
}
/* =========================
   COMPACT PRODUCT PAGE
========================= */

.compact-product-page{
  max-width: 1280px;
  margin: 0 auto;
}

.compact-product-breadcrumb{
  font-size: .82rem;
  color: #7b8698;
}

.compact-product-breadcrumb a{
  color: #7b8698;
  text-decoration: none;
}

.compact-product-breadcrumb a:hover{
  color: #162033;
}

.compact-product-breadcrumb span{
  margin: 0 8px;
  color: #b2bccb;
}


.compact-gallery-wrap{
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  height: auto;
}

.compact-gallery-wrap--single{
  grid-template-columns: minmax(0, 1fr);
}

.compact-gallery-thumbs{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compact-thumb-btn{
  width: 70px;
  height: 88px;
  border: 1px solid rgba(22,32,51,.10);
  background: #fff;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease;
}

.compact-thumb-btn.is-active,
.compact-thumb-btn:hover{
  border-color: #162033;
}

.compact-thumb-btn img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}







.compact-brand{
  font-size: .72rem;
  letter-spacing: .14em;
  color: #7b8698;
  font-weight: 600;
}

.compact-product-title{
  font-size: 2rem;
  line-height: 1.18;
  font-weight: 400;
  color: #1b2433;
  margin: 0;
}

.compact-option-label{
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6f7b8f;
  margin-bottom: 10px;
}

.compact-swatch{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(22,32,51,.18);
  background: #fff;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.compact-swatch-dot{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--swatch);
  border: 1px solid rgba(22,32,51,.08);
}

.compact-tile{
  min-width: 44px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(22,32,51,.16);
  background: #fff;
  font-size: .88rem;
}

.option-btn.is-selected{
  border-color: #162033 !important;
  box-shadow: inset 0 0 0 1px #162033;
}

.option-btn.is-disabled{
  opacity: .35;
  pointer-events: none;
}

.compact-selection-box{
  border: 1px solid rgba(22,32,51,.08);
  background: #fafbfe;
  padding: 14px;
}

.compact-purchase-row{
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 10px;
  align-items: end;
}

.compact-mini-label{
  font-size: .72rem;
  color: #6f7b8f;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.compact-qty-input{
  height: 44px;
  border-radius: 0;
}

.compact-add-btn{
  width: 40%;
  height: 44px;
  border-radius: 0;
  background: #162033;
  color: #fff;
  border: 1px solid #162033;
  font-size: .82rem;
  letter-spacing: .12em;
  font-weight: 700;
}

.compact-add-btn:hover{
  background: #0f1727;
  color: #fff;
}

.compact-product-links{
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.compact-link-btn{
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(22,32,51,.08);
  padding: 14px 0;
  text-align: left;
  font-size: .73rem;
  letter-spacing: .08em;
  color: #243247;
}

.compact-link-btn.is-active{
  font-weight: 700;
}

.compact-product-tabs-content{
  border-top: 1px solid rgba(22,32,51,.08);
  padding-top: 20px;
}

.compact-product-tabs-content--inside{
  border-top: 0;
  padding-top: 16px;
  max-width: 100%;
}

.compact-tab-pane{
  display: none;
}

.compact-tab-pane.is-active{
  display: block;
}

.compact-spec-box{
  border: 1px solid rgba(22,32,51,.08);
  padding: 14px;
  background: #fff;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(7,15,30,.04);
}

.compact-spec-label{
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #7b8698;
  margin-bottom: 6px;
}

.compact-spec-value{
  color: #162033;
  font-size: .95rem;
}

.compact-spec-table th{
  width: 34%;
  color: #6f7b8f;
  font-weight: 600;
}

.compact-description{
  color: #334155;
  line-height: 1.75;
  font-size: .95rem;
}

.compact-rich-box{
  padding: 18px;
}

.compact-collection-list{
  padding-left: 18px;
  color: #334155;
  line-height: 1.7;
}



@media (max-width: 991.98px){
  .compact-gallery-wrap{
    grid-template-columns: 1fr;
    height: auto;
  }

  .compact-gallery-thumbs{
    order: 2;
    flex-direction: row;
    overflow-x: auto;
  }

  .compact-thumb-btn{
    flex: 0 0 60px;
    width: 60px;
    height: 76px;
  }

 

 

  .compact-product-info{
    min-height: auto;
    max-width: 100%;
  }
}

@media (max-width: 575.98px){
  .compact-product-title{
    font-size: 1.45rem;
  }

  .compact-purchase-row{
    grid-template-columns: 1fr;
  }

 
}
.pc-img--fallback{
  object-fit: contain;
  padding: 18px;
  background: #ffffff;
}

.compact-add-thumb-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
}

.compact-add-thumb{
  width:150px  !important;
  height: 150px  !important;
  max-width: 150px  !important;
  max-height: 150px !important;
  object-fit: contain;
  background: transparent;
  border-radius: 4px;
  flex: 0 0 20px;
}
.product-card-image-wrap{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.product-card-image-wrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-hero-slider-wrap{
  position: relative;
}

.store-hero-slider{
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(79,110,247,.18), transparent 28%),
    linear-gradient(135deg, #161f33 0%, #1b2740 45%, #131c2e 100%);
  box-shadow: 0 28px 70px rgba(7,15,30,.18);
  border: 1px solid rgba(255,255,255,.08);
}

.store-hero-slide{
  min-height: 540px;
  display: flex;
  align-items: center;
  position: relative;
}

.store-hero-slide__content{
  padding: clamp(2rem, 4vw, 4rem);
  color: #fff;
  position: relative;
  z-index: 2;
}

.store-hero-chip{
  display: inline-flex;
  align-items: center;
  padding: .5rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  
}

.store-hero-slide__title{
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.04em;
  color: #fff;
  max-width: 520px;
}

.store-hero-slide__text{
  max-width: 520px;
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.78);
}

.store-hero-slide__actions{
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.store-hero-slide__actions .btn{
  min-height: 50px;
  padding: .85rem 1.2rem;
  border-radius: 14px;
  font-weight: 700;
}

.store-hero-slide__media{
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.store-hero-slide__media::before{
  content: "";
  position: absolute;
  inset: 12% 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 70%);
  filter: blur(12px);
}

.store-hero-slide__img{
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.35));
  transform: scale(1.02);
}

.store-hero-indicators{
  margin-bottom: 1.25rem;
}

.store-hero-indicators [data-bs-target]{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 6px;
  border: 0;
  background-color: rgba(255,255,255,.4);
  opacity: 1;
}

.store-hero-indicators .active{
  background-color: #fff;
}

.store-hero-control{
  width: 56px;
  opacity: 1;
}



@media (max-width: 991.98px){
  .store-hero-slide,
  .store-hero-slide__media{
    min-height: auto;
  }

  .store-hero-slide__content{
    padding: 2rem 1.25rem 1rem;
    text-align: center;
  }

  .store-hero-slide__title,
  .store-hero-slide__text{
    max-width: 100%;
  }

  .store-hero-slide__actions{
    justify-content: center;
  }

  .store-hero-slide__media{
    padding: 1rem 1.25rem 3.25rem;
  }

  .store-hero-slide__img{
    max-height: 280px;
  }
}

@media (max-width: 575.98px){
  .store-hero-slider{
    border-radius: 22px;
  }

  .store-hero-slide__title{
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }

  .store-hero-slide__text{
    font-size: .96rem;
  }

  .store-hero-slide__actions{
    flex-direction: column;
  }

  .store-hero-slide__actions .btn{
    width: 100%;
  }
}
/* =========================
   TECH HEADER
========================= */
.tech-header{
  position: sticky;
  top: 0;
  z-index: 1040;
  box-shadow: 0 14px 34px rgba(71, 94, 137, 0.08);
}

.tech-header__main{
  background: linear-gradient(90deg, #001748 0%, #01102d 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.tech-header__row{
  min-height: 72px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
}

.tech-header__left,
.tech-header__right{
  display: flex;
  align-items: center;
  gap: .75rem;
}

.tech-header__center{
  justify-content: center;
}

.tech-header__menu{
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: #fff;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.tech-brand{
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}

.tech-brand__mark{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 .65rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #4f6ef7 0%, #7b8fff 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 10px 24px rgba(79,110,247,.22);
}

.tech-brand__name{
  color: #f8fafc;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

/* search */
.tech-search{
  width: 100%;
  max-width: 520px;
  position: relative;
}

.tech-search__box{
  position: relative;
  display: flex;
  align-items: center;
}

.tech-search__input{
  height: 46px;
  border-radius: 8px;
  padding: 0 3.2rem 0 1rem;
  border: 1px solid rgba(255,255,255,.10);
  background: #f7f9fc;
  box-shadow: none !important;
  font-size: .95rem;
}

.tech-search__input:focus{
  border-color: rgba(79,110,247,.55);
  box-shadow: 0 0 0 .2rem rgba(79,110,247,.12) !important;
}

.tech-search__submit{
  position: absolute;
  right: .35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #162033;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* right actions */
.tech-icon-btn{
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: #f8fafc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: .2s ease;
}

.tech-icon-btn:hover,
.tech-account-btn:hover{
  background: rgba(255,255,255,.10);
  color: #fff;
  transform: translateY(-1px);
}

.tech-icon-btn__badge{
  position: absolute;
  top: -4px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #1f2a3f;
}

.tech-account-btn::after{
  display: none;
}

.tech-account-menu{
  min-width: 240px;
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 16px;
  overflow: hidden;
}

/* secondary nav */
.tech-subnav{
  background: linear-gradient(90deg, #052260 0%, #022060 100%);
  border-bottom: 1px solid rgba(3, 44, 121, 0.08);
}

.tech-subnav__row{
  min-height: 50px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.tech-subnav__browse{
  height: 38px;
  padding: 0 .95rem;
  border-radius: 10px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.88);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 500;
}

.tech-subnav__browse:hover{
  background: rgba(255,255,255,.08);
  color: #fff;
}

.tech-subnav__links{
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}

.tech-subnav__link{
  color: rgba(255,255,255,.84);
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  white-space: nowrap;
  transition: .2s ease;
}

.tech-subnav__link:hover{
  color: #fff;
}

.tech-download-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.42);
  color: #fff;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  background: transparent;
  transition: .2s ease;
}

.tech-download-btn:hover{
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* =========================
   CATALOG TOP / TOOLBAR
========================= */
.store-catalog-top{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid rgba(22,32,51,.08);
  box-shadow: 0 12px 30px rgba(7,15,30,.04);
}

.store-results-title{
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--store-text);
}

.store-catalog-top__meta,
.store-catalog-top__page{
  color: var(--store-muted);
  font-size: .92rem;
}

.tech-toolbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(22,32,51,.08);
  box-shadow: 0 12px 30px rgba(7,15,30,.04);
}


.filter-chip{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 36px;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(79,110,247,.08);
  border: 1px solid rgba(79,110,247,.14);
  color: #324bb8;
  font-size: .86rem;
  font-weight: 600;
}

.filter-chip__x{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(50,75,184,.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .66rem;
}

.clear-link{
  color: var(--store-primary);
  font-size: .88rem;
  font-weight: 700;
}

.store-sort-wrap{
  min-width: 220px;
}

.store-sort-select{
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(22,32,51,.10);
  font-size: .92rem;
  font-weight: 600;
  box-shadow: none !important;
}

.store-sort-select:focus{
  border-color: rgba(79,110,247,.45);
  box-shadow: 0 0 0 .2rem rgba(79,110,247,.10) !important;
}

/* =========================
   DRAWER
========================= */
.shop-category-drawer{
  background: linear-gradient(180deg, #172235 0%, #24314a 100%);
  color: #fff;
}

.shop-category-drawer .offcanvas-header{
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.shop-category-drawer__eyebrow{
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.6);
  margin-bottom: .25rem;
}

.shop-category-drawer__item + .shop-category-drawer__item{
  margin-top: .65rem;
}

.shop-category-drawer__parent,
.shop-category-drawer__child{
  width: 100%;
  text-decoration: none;
}

.shop-category-drawer__parent{
  min-height: 48px;
  padding: .9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-category-drawer__parent:hover,
.shop-category-drawer__parent--link:hover{
  background: rgba(255,255,255,.08);
  color: #fff;
}

.shop-category-drawer__children{
  padding: .65rem 0 0 .35rem;
}

.shop-category-drawer__child{
  display: block;
  padding: .65rem .9rem;
  border-radius: 12px;
  color: rgba(255,255,255,.8);
}

.shop-category-drawer__child:hover{
  background: rgba(255,255,255,.06);
  color: #fff;
}

.shop-category-drawer__child--all{
  color: #aebeff;
  font-weight: 700;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px){
  .tech-header__row{
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .tech-brand__name{
    display: none;
  }

  .store-catalog-top,
  .tech-toolbar{
    flex-direction: column;
    align-items: stretch;
  }

 

  .store-sort-wrap{
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 575.98px){
  .tech-brand__mark{
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .store-catalog-top,
  .tech-toolbar{
    padding: .9rem;
    border-radius: 16px;
  }
}
.store-home-feature{
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 26px;
  border: 1px solid rgba(22,32,51,.08);
  box-shadow: 0 20px 46px rgba(22,32,51,.08);
}

.store-home-feature--deals{
  background:
    radial-gradient(700px 240px at 10% 0%, rgba(239,68,68,.10), transparent 55%),
    radial-gradient(620px 220px at 100% 10%, rgba(245,158,11,.10), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,249,252,.96));
}

.store-home-feature--arrivals{
  background:
    radial-gradient(700px 240px at 10% 0%, rgba(79,110,247,.12), transparent 55%),
    radial-gradient(620px 220px at 100% 10%, rgba(130,150,255,.10), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,249,252,.96));
}

.store-home-feature__intro{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.store-home-feature__copy{
  max-width: 620px;
}

.store-home-feature__eyebrow{
  display: inline-flex;
  align-items: center;
  padding: .42rem .8rem;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .9rem;
  border: 1px solid rgba(22,32,51,.08);
  background: rgba(255,255,255,.74);
  color: #4a5872;
}

.store-home-feature__copy h2{
  margin: 0 0 .45rem;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -.04em;
  color: #162033;
}

.store-home-feature__copy p{
  margin: 0;
  font-size: 1rem;
  color: #6b7890;
  max-width: 560px;
}

.store-home-feature__actions{
  flex: 0 0 auto;
}

.store-home-feature__link{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 48px;
  padding: .82rem 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  color: #162033;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(22,32,51,.10);
  box-shadow: 0 12px 26px rgba(22,32,51,.06);
  transition: all .16s ease;
}

.store-home-feature__link:hover{
  color: #3f5de0;
  background: #fff;
  border-color: rgba(79,110,247,.18);
  transform: translateY(-2px);
}

.store-home-feature__link i{
  transition: transform .16s ease;
}

.store-home-feature__link:hover i{
  transform: translateX(4px);
}

.store-empty--soft{
  background: rgba(255,255,255,.84);
  border: 1px dashed rgba(22,32,51,.12);
  box-shadow: none;
}

@media (max-width: 767.98px){
  .store-home-feature{
    padding: 20px;
    border-radius: 24px;
  }

  .store-home-feature__intro{
    margin-bottom: 1.1rem;
  }

  .store-home-feature__actions,
  .store-home-feature__link{
    width: 100%;
  }
}
.store-runway{
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 34px 28px;
  border: 1px solid rgba(22,32,51,.08);
  box-shadow: 0 20px 46px rgba(22,32,51,.08);
}

.store-runway--deals{
  background:
    radial-gradient(700px 260px at 0% 0%, rgba(239,68,68,.08), transparent 55%),
    radial-gradient(620px 240px at 100% 0%, rgba(245,158,11,.08), transparent 55%),
    linear-gradient(180deg, #fffefe 0%, #f9fafc 100%);
  border-color: rgba(239,68,68,.12);
}

.store-runway--arrivals{
  background:
    radial-gradient(700px 260px at 0% 0%, rgba(79,110,247,.08), transparent 55%),
    radial-gradient(620px 240px at 100% 0%, rgba(130,150,255,.08), transparent 55%),
    linear-gradient(180deg, #fcfdff 0%, #f6f9fd 100%);
  border-color: rgba(79,110,247,.12);
}

.store-runway__header{
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 2rem;
}

.store-runway__title-wrap{
  text-align: center;
  max-width: 760px;
}

.store-runway__eyebrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .42rem .8rem;
  border-radius: 999px;
  margin-bottom: .9rem;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(22,32,51,.08);
}

.store-runway--deals .store-runway__eyebrow{
  color: #d14d41;
  border-color: rgba(239,68,68,.14);
}

.store-runway--arrivals .store-runway__eyebrow{
  color: #3f5de0;
  border-color: rgba(79,110,247,.14);
}

.store-runway__title{
  margin: 0 0 .45rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -.03em;
  color: #162033;
}

.store-runway__subtitle{
  margin: 0;
  color: #6b7890;
  font-size: 1rem;
}

.store-runway__actions{
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  gap: .5rem;
}

.store-runway__nav{
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(22,32,51,.06);
  color: #6b7890;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .16s ease;
}

.store-runway__nav:hover{
  background: rgba(22,32,51,.12);
  color: #162033;
}

.store-runway__viewport{
  width: 100%;
  overflow: hidden;
}

.store-runway__track{
  display: flex;
  gap: 26px;
  transition: transform .55s ease;
  will-change: transform;
}

.store-runway__slide{
  flex: 0 0 calc((100% - 78px) / 4);
  min-width: 0;
}

.site-footer--blackglass .footer-brand-wrap,
.site-footer--blackglass .footer-contact-block {
  height: 100%;
}

.site-footer--blackglass .footer-track-card {
  margin-top: 1.25rem;
}

.site-footer--blackglass .footer-link + .footer-link {
  margin-top: .15rem;
}

.site-footer--blackglass .footer-track-form .mb-3:last-of-type {
  margin-bottom: 1rem !important;
}

.site-footer--blackglass .footer-contact-block > * + * {
  margin-top: 1rem;
}

.store-runway-card{
  display: block;
  text-decoration: none;
  color: inherit;
}

.store-runway-card__media{
  position: relative;
  aspect-ratio: 0.78 / 1;
  background: #ffffff;
  overflow: hidden;
}

.store-runway--deals .store-runway-card__media{
  background: #ffffff;
}

.store-runway--arrivals .store-runway-card__media{
  background: #ffffff;
}

.store-runway-card__img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 14px;
  transition: transform .25s ease;
}

.store-runway-card:hover .store-runway-card__img{
  transform: scale(1.03);
}

.store-runway-card__empty{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: #6b7280;
  font-size: .95rem;
}

.store-runway-card__badge{
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .35rem .65rem;
  border-radius: 999px;
  background: #e14b56;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(225,75,86,.20);
}

.store-runway-card__body{
  padding: 14px 4px 0;
}

.store-runway-card__title{
  margin: 0;
  font-size: .96rem;
  line-height: 1.45;
  font-weight: 500;
  text-align: center;
  color: #5d6777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store-runway-card__price{
  margin-top: .55rem;
  text-align: center;
}

.store-runway-card__old{
  font-size: .85rem;
  color: #9aa6ba;
  text-decoration: line-through;
  margin-bottom: .15rem;
}

.store-runway-card__now{
  font-size: 1.02rem;
  font-weight: 800;
  color: #162033;
}

.store-runway--deals .store-runway-card__now{
  color: #d14d41;
}

@media (max-width: 1199.98px){
  .store-runway__slide{
    flex: 0 0 calc((100% - 52px) / 3);
  }
}

@media (max-width: 991.98px){
  .store-runway{
    padding: 26px 20px;
    border-radius: 24px;
  }

  .store-runway__header{
    margin-bottom: 1.5rem;
  }

  .store-runway__actions{
    position: static;
    justify-content: center;
    margin-top: 1rem;
  }

  .store-runway__header{
    flex-direction: column;
  }

  .store-runway__title-wrap{
    max-width: 100%;
    width: 100%;
  }

  .store-runway__slide{
    flex: 0 0 calc((100% - 26px) / 2);
  }
}

@media (max-width: 575.98px){
  .store-runway{
    padding: 20px 16px;
    border-radius: 20px;
  }

  .store-runway__track{
    gap: 16px;
  }

  .store-runway__slide{
    flex: 0 0 100%;
  }

  .store-runway__title{
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .store-runway-card__title{
    white-space: normal;
  }
}

/* =========================
   HOME SLIDER SECTIONS
========================= */

.store-feature-band--runway{
  padding: 14px 4px;
}

.store-feature-band__head--slider{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.store-feature-band__actions{
  display: flex;
  align-items: center;
  gap: .6rem;
  flex: 0 0 auto;
}

.store-feature-band--deals{
  position: relative;
}

.store-feature-band--arrivals{
  position: relative;
}

.store-feature-band--deals .store-feature-band__eyebrow{
  background: rgba(239,68,68,.08);
  color: #d14d41;
  border: 1px solid rgba(239,68,68,.14);
}

.store-feature-band--arrivals .store-feature-band__eyebrow{
  background: rgba(79,110,247,.08);
  color: #3f5de0;
  border: 1px solid rgba(79,110,247,.14);
}

.store-feature-band--deals .store-runway__viewport,
.store-feature-band--arrivals .store-runway__viewport{
  width: 100%;
  overflow: hidden;
}

.store-feature-band--deals .store-runway__track,
.store-feature-band--arrivals .store-runway__track{
  display: flex;
  gap: 24px;
  transition: transform .55s ease;
  will-change: transform;
}

.store-feature-band--deals .store-runway__slide,
.store-feature-band--arrivals .store-runway__slide{
  flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
}

.store-feature-band--deals .store-runway__nav,
.store-feature-band--arrivals .store-runway__nav{
  width: 42px;
  height: 42px;
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #55647c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(7,15,30,.06);
  transition: all .16s ease;
}

.store-feature-band--deals .store-runway__nav:hover,
.store-feature-band--arrivals .store-runway__nav:hover{
  background: #fff;
  color: #162033;
  border-color: rgba(22,32,51,.14);
  transform: translateY(-1px);
}

.store-feature-band--deals .store-runway-card,
.store-feature-band--arrivals .store-runway-card{
  display: block;
  text-decoration: none;
  color: inherit;
}

.store-feature-band--deals .store-runway-card__media,
.store-feature-band--arrivals .store-runway-card__media{
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(22,32,51,.06);
  box-shadow: 0 14px 32px rgba(22,32,51,.06);
}

.store-feature-band--deals .store-runway-card__media{
  background: #ffffff;
}

.store-feature-band--arrivals .store-runway-card__media{
  background: #ffffff;
}

.store-feature-band--deals .store-runway-card__img,
.store-feature-band--arrivals .store-runway-card__img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 14px;
  transition: transform .3s ease;
}

.store-feature-band--deals .store-runway-card:hover .store-runway-card__img,
.store-feature-band--arrivals .store-runway-card:hover .store-runway-card__img{
  transform: scale(1.04);
}

.store-feature-band--deals .store-runway-card__badge,
.store-feature-band--arrivals .store-runway-card__badge{
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: .72rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 8px 18px rgba(22,32,51,.10);
}

.store-feature-band--deals .store-runway-card__badge{
  background: rgba(239,68,68,.92);
}

.store-feature-band--arrivals .store-runway-card__badge{
  background: rgba(79,110,247,.92);
}

.store-feature-band--deals .store-runway-card__empty,
.store-feature-band--arrivals .store-runway-card__empty{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  color: #6b7890;
}

.store-feature-band--deals .store-runway-card__body,
.store-feature-band--arrivals .store-runway-card__body{
  padding: 14px 6px 0;
  text-align: center;
}

.store-feature-band--deals .store-runway-card__title,
.store-feature-band--arrivals .store-runway-card__title{
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 800;
  color: #162033;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-feature-band--deals .store-runway-card__price,
.store-feature-band--arrivals .store-runway-card__price{
  margin-top: 10px;
}

.store-feature-band--deals .store-runway-card__old,
.store-feature-band--arrivals .store-runway-card__old{
  color: #9aa6ba;
  text-decoration: line-through;
  font-size: .88rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.store-feature-band--deals .store-runway-card__now{
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 900;
  color: #e14b56;
  letter-spacing: -.01em;
}

.store-feature-band--arrivals .store-runway-card__now{
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 900;
  color: #3f5de0;
  letter-spacing: -.01em;
}

.store-feature-band--arrivals{
  background:
    radial-gradient(900px 280px at 10% 0%, rgba(79,110,247,.07), transparent 55%),
    radial-gradient(700px 220px at 100% 10%, rgba(130,150,255,.10), transparent 58%);
  border-radius: 28px;
}

@media (max-width: 1199.98px){
  .store-feature-band--deals .store-runway__slide,
  .store-feature-band--arrivals .store-runway__slide{
    flex: 0 0 calc((100% - 48px) / 3);
  }
}

@media (max-width: 991.98px){
  .store-feature-band__head--slider{
    align-items: stretch;
  }

  .store-feature-band__actions{
    justify-content: flex-end;
  }

  .store-feature-band--deals .store-runway__slide,
  .store-feature-band--arrivals .store-runway__slide{
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 767.98px){
  .store-feature-band--deals .store-runway__track,
  .store-feature-band--arrivals .store-runway__track{
    gap: 16px;
  }

  .store-feature-band--deals .store-runway__slide,
  .store-feature-band--arrivals .store-runway__slide{
    flex: 0 0 100%;
  }

  .store-feature-band--deals .store-runway-card__media,
  .store-feature-band--arrivals .store-runway-card__media{
    border-radius: 20px;
  }
}

.catalog-head-modern{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.catalog-head-modern__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.catalog-head-modern__titlewrap{
  min-width:0;
}

.catalog-head-modern__title{
  margin:0;
  font-size:clamp(1.15rem, 1rem + .9vw, 1.75rem);
  font-weight:800;
  line-height:1.1;
  letter-spacing:-.02em;
  color:var(--store-text);
}

.catalog-head-modern__meta{
  font-size:.92rem;
  color:var(--store-muted);
  line-height:1.45;
}

.catalog-head-modern__page{
  display:flex;
  align-items:center;
}

.catalog-head-modern__page-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.5rem .8rem;
  border:1px solid var(--store-border);
  background:var(--store-surface);
  border-radius:999px;
  font-size:.8rem;
  font-weight:700;
  color:var(--store-muted);
  white-space:nowrap;
}

.catalog-toolbar-modern{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  border:1px solid var(--store-border);
  background:var(--store-surface);
  border-radius:18px;
  box-shadow:var(--store-shadow-sm);
  flex-wrap:wrap;
}

.catalog-toolbar-modern__left,
.catalog-toolbar-modern__right{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.catalog-toolbar-modern__left{
  flex:1 1 420px;
  min-width:0;
}

.catalog-toolbar-modern__right{
  flex:0 0 auto;
  margin-left:auto;
}

.catalog-filter-btn{
  border-radius:12px;
  padding:.58rem .9rem;
  font-size:.9rem;
  font-weight:700;
}

.catalog-active-filters{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.catalog-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  padding:.45rem .7rem;
  border:1px solid var(--store-border);
  background:var(--store-surface-soft);
  border-radius:999px;
  color:var(--store-text);
  transition:all .2s ease;
  max-width:100%;
}

.catalog-chip:hover{
  border-color:var(--store-primary);
  background:var(--store-surface);
  color:var(--store-text);
}

.catalog-chip__label{
  font-size:.73rem;
  font-weight:700;
  color:var(--store-muted);
  text-transform:uppercase;
  letter-spacing:.04em;
}

.catalog-chip__value{
  font-size:.84rem;
  font-weight:600;
  color:var(--store-text);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:180px;
}

.catalog-chip__x{
  width:22px;
  height:22px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.04);
  font-size:.7rem;
  flex:0 0 auto;
}

.catalog-clear-link{
  font-size:.84rem;
  font-weight:700;
  color:var(--store-primary);
  padding:.35rem .2rem;
}

.catalog-clear-link:hover{
  color:var(--store-primary-dark);
}

.catalog-sort-form{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.catalog-sort-label{
  margin:0;
  font-size:.8rem;
  font-weight:700;
  color:var(--store-muted);
  white-space:nowrap;
}

.catalog-sort-wrap{
  min-width:190px;
}

.catalog-sort-select{
  height:40px;
  border-radius:12px;
  font-size:.9rem;
  font-weight:600;
  border-color:var(--store-border);
  box-shadow:none;
}

.catalog-sort-select:focus{
  border-color:var(--store-primary);
  box-shadow:0 0 0 .2rem var(--store-ring);
}

@media (max-width: 991.98px){
  .catalog-toolbar-modern{
    padding:12px;
    border-radius:16px;
  }

  .catalog-toolbar-modern__right{
    width:100%;
    margin-left:0;
  }

  .catalog-sort-form{
    width:100%;
    justify-content:space-between;
  }

  .catalog-sort-wrap{
    min-width:0;
    width:100%;
  }

  .catalog-sort-select{
    width:100%;
  }
}

.catalog-head-modern{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.catalog-head-modern__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.catalog-head-modern__titlewrap{
  min-width:0;
}

.catalog-head-modern__title{
  margin:0;
  font-size:clamp(1.15rem, 1rem + .9vw, 1.75rem);
  font-weight:800;
  line-height:1.1;
  letter-spacing:-.02em;
  color:var(--store-text);
}

.catalog-head-modern__meta{
  font-size:.92rem;
  color:var(--store-muted);
  line-height:1.45;
}

.catalog-head-modern__page{
  display:flex;
  align-items:center;
}

.catalog-head-modern__page-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.5rem .8rem;
  border:1px solid var(--store-border);
  background:var(--store-surface);
  border-radius:999px;
  font-size:.8rem;
  font-weight:700;
  color:var(--store-muted);
  white-space:nowrap;
}

.catalog-toolbar-modern{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  border:1px solid var(--store-border);
  background:var(--store-surface);
  border-radius:18px;
  box-shadow:var(--store-shadow-sm);
  flex-wrap:wrap;
}

.catalog-toolbar-modern__left,
.catalog-toolbar-modern__right{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.catalog-toolbar-modern__left{
  flex:1 1 420px;
  min-width:0;
}

.catalog-toolbar-modern__right{
  flex:0 0 auto;
  margin-left:auto;
}

.catalog-filter-btn{
  border-radius:12px;
  padding:.58rem .9rem;
  font-size:.9rem;
  font-weight:700;
}

.catalog-active-filters{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}

.catalog-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  padding:.45rem .7rem;
  border:1px solid var(--store-border);
  background:var(--store-surface-soft);
  border-radius:999px;
  color:var(--store-text);
  transition:all .2s ease;
  max-width:100%;
}

.catalog-chip:hover{
  border-color:var(--store-primary);
  background:var(--store-surface);
  color:var(--store-text);
}

.catalog-chip__label{
  font-size:.73rem;
  font-weight:700;
  color:var(--store-muted);
  text-transform:uppercase;
  letter-spacing:.04em;
}

.catalog-chip__value{
  font-size:.84rem;
  font-weight:600;
  color:var(--store-text);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:180px;
}

.catalog-chip__x{
  width:22px;
  height:22px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.04);
  font-size:.7rem;
  flex:0 0 auto;
}

.catalog-clear-link{
  font-size:.84rem;
  font-weight:700;
  color:var(--store-primary);
  padding:.35rem .2rem;
}

.catalog-clear-link:hover{
  color:var(--store-primary-dark);
}

.catalog-sort-form{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.catalog-sort-label{
  margin:0;
  font-size:.8rem;
  font-weight:700;
  color:var(--store-muted);
  white-space:nowrap;
}

.catalog-sort-wrap{
  min-width:190px;
}

.catalog-sort-select{
  height:40px;
  border-radius:12px;
  font-size:.9rem;
  font-weight:600;
  border-color:var(--store-border);
  box-shadow:none;
}

.catalog-sort-select:focus{
  border-color:var(--store-primary);
  box-shadow:0 0 0 .2rem var(--store-ring);
}

@media (max-width: 991.98px){
  .catalog-toolbar-modern{
    padding:12px;
    border-radius:16px;
  }

  .catalog-toolbar-modern__right{
    width:100%;
    margin-left:0;
  }

  .catalog-sort-form{
    width:100%;
    justify-content:space-between;
  }

  .catalog-sort-wrap{
    min-width:0;
    width:100%;
  }

  .catalog-sort-select{
    width:100%;
  }
}

.catalog-head-modern{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.catalog-head-modern__top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.catalog-head-modern__title{
  margin:0;
  font-size:clamp(1.1rem, 1rem + .65vw, 1.55rem);
  line-height:1.1;
  font-weight:800;
  letter-spacing:-.02em;
  color:var(--store-text);
}

.catalog-head-modern__meta{
  font-size:.88rem;
  color:var(--store-muted);
}

.catalog-head-modern__page-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.42rem .75rem;
  border:1px solid var(--store-border);
  border-radius:999px;
  background:var(--store-surface);
  color:var(--store-muted);
  font-size:.78rem;
  font-weight:700;
}

.catalog-toolbar-modern{
  border:1px solid var(--store-border);
  border-radius:24px;
  background:var(--store-surface);
  padding:18px 20px 14px;
  box-shadow:var(--store-shadow-sm);
}

.catalog-toolbar-modern__main{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.catalog-toolbar-modern__left{
  display:flex;
  align-items:center;
  gap:14px;
  flex:1 1 620px;
  min-width:0;
  flex-wrap:wrap;
}

.catalog-toolbar-modern__right{
  flex:0 0 auto;
}

.catalog-filter-btn{
  min-height:46px;
  padding:.72rem 1.1rem;
  border-radius:18px;
  font-size:.95rem;
  font-weight:700;
  white-space:nowrap;
}

.catalog-active-filters{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  min-width:0;
}

.catalog-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  padding:.5rem .75rem .5rem .85rem;
  border:1px solid rgba(85,110,180,.12);
  border-radius:999px;
  background:linear-gradient(180deg, #f7f9ff 0%, #eef3ff 100%);
  color:var(--store-text);
  max-width:100%;
  transition:.2s ease;
}

.catalog-chip:hover{
  border-color:rgba(85,110,180,.25);
  transform:translateY(-1px);
}

.catalog-chip__label{
  font-size:.78rem;
  font-weight:700;
  color:#5c6f95;
  white-space:nowrap;
}

.catalog-chip__value{
  font-size:.9rem;
  font-weight:700;
  color:#295ed9;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:190px;
}

.catalog-chip__x{
  width:24px;
  height:24px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(41,94,217,.14);
  background:#edf2ff;
  color:#6b84d6;
  font-size:.7rem;
  flex:0 0 auto;
}

.catalog-clear-link{
  font-size:.95rem;
  font-weight:700;
  color:#295ed9;
  padding:.2rem 0;
  white-space:nowrap;
}

.catalog-clear-link:hover{
  color:#1e49ae;
}

.catalog-sort-form{
  margin:0;
}

.catalog-sort-wrap{
  min-width:320px;
}

.catalog-sort-select{
  height:52px;
  border-radius:20px;
  border:1px solid var(--store-border);
  background:var(--store-surface);
  font-size:1rem;
  font-weight:700;
  padding-left:1rem;
  box-shadow:none;
}

.catalog-sort-select:focus{
  border-color:var(--store-primary);
  box-shadow:0 0 0 .18rem var(--store-ring);
}

.catalog-toolbar-modern__meta-row{
  display:flex;
  justify-content:flex-end;
  margin-top:14px;
}

.catalog-results-count{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:.5rem 1rem;
  border-radius:14px;
  background:var(--store-surface-soft);
  color:#5f7396;
  font-size:.92rem;
  font-weight:500;
}

@media (max-width: 991.98px){
  .catalog-toolbar-modern{
    padding:14px;
    border-radius:20px;
  }

  .catalog-toolbar-modern__main{
    gap:12px;
    align-items:stretch;
  }

  .catalog-toolbar-modern__left,
  .catalog-toolbar-modern__right{
    width:100%;
  }

  .catalog-filter-btn{
    min-height:42px;
    padding:.62rem .95rem;
    border-radius:15px;
    font-size:.88rem;
  }

  .catalog-active-filters{
    gap:8px;
  }

  .catalog-sort-wrap{
    min-width:0;
    width:100%;
  }

  .catalog-sort-select{
    width:100%;
    height:46px;
    border-radius:16px;
    font-size:.92rem;
  }

  .catalog-toolbar-modern__meta-row{
    justify-content:flex-start;
    margin-top:10px;
  }

  .catalog-results-count{
    min-height:34px;
    padding:.4rem .85rem;
    border-radius:12px;
    font-size:.84rem;
  }
}

@media (max-width: 575.98px){
  .catalog-head-modern{
    gap:10px;
  }

  .catalog-head-modern__title{
    font-size:1.05rem;
  }

  .catalog-head-modern__meta{
    font-size:.8rem;
  }

  .catalog-toolbar-modern{
    padding:12px;
    border-radius:18px;
  }

  .catalog-toolbar-modern__left{
    gap:10px;
  }

  .catalog-filter-btn{
    width:auto;
    min-height:40px;
    padding:.55rem .85rem;
    font-size:.84rem;
    border-radius:14px;
  }

  .catalog-active-filters{
    gap:7px;
  }

  .catalog-chip{
    min-height:34px;
    padding:.38rem .55rem .38rem .7rem;
    gap:6px;
  }

  .catalog-chip__label{
    font-size:.68rem;
  }

  .catalog-chip__value{
    font-size:.76rem;
    max-width:100px;
  }

  .catalog-chip__x{
    width:20px;
    height:20px;
    font-size:.62rem;
  }

  .catalog-clear-link{
    font-size:.78rem;
  }

  .catalog-sort-select{
    height:40px;
    font-size:.84rem;
    border-radius:14px;
    padding-left:.85rem;
  }

  .catalog-results-count{
    font-size:.78rem;
    padding:.35rem .7rem;
  }
}

.profile-page{
  --profile-card-radius: 22px;
  --profile-soft-bg: #f8fafc;
  --profile-border: rgba(15, 23, 42, 0.08);
  --profile-border-strong: rgba(15, 23, 42, 0.14);
  --profile-text: #0f172a;
  --profile-muted: #64748b;
  --profile-danger-bg: rgba(220, 53, 69, 0.05);
  --profile-danger-border: rgba(220, 53, 69, 0.16);
  --profile-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.profile-card{
  border-radius: var(--profile-card-radius);
  border: 1px solid var(--profile-border);
  box-shadow: var(--profile-shadow) !important;
  background: #fff;
}

.profile-card--danger{
  border: 1px solid var(--profile-danger-border);
}

.profile-section__eyebrow{
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--profile-muted);
}

.profile-section__title{
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--profile-text);
}

.profile-section__subtitle{
  font-size: .95rem;
  line-height: 1.6;
  color: var(--profile-muted);
  max-width: 42rem;
}

.form-control-modern{
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--profile-border-strong);
  padding: .78rem .95rem;
  font-size: .95rem;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.form-control-modern:focus{
  border-color: rgba(13, 110, 253, .35);
  box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .12);
}

.profile-alert{
  border: 0;
  border-radius: 14px;
  padding: .9rem 1rem;
  font-size: .92rem;
}

.profile-alert-warning{
  border: 0;
  border-radius: 14px;
  padding: .95rem 1rem;
  font-size: .92rem;
}

.profile-note{
  padding: .85rem 1rem;
  background: var(--profile-soft-bg);
  border: 1px solid var(--profile-border);
  border-radius: 14px;
}

.btn-link-inline{
  font-weight: 700;
}

.danger-box{
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1.05rem;
  background: var(--profile-danger-bg);
  border: 1px solid var(--profile-danger-border);
  border-radius: 16px;
}

.danger-box__icon{
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 53, 69, .12);
  color: #dc3545;
  flex: 0 0 auto;
  font-size: 1rem;
}

.danger-box__title{
  font-weight: 800;
  color: #842029;
  line-height: 1.35;
  margin-bottom: .2rem;
}

.danger-box__text{
  color: #7a4b52;
  font-size: .92rem;
  line-height: 1.55;
}

.profile-modal{
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .18);
}

@media (max-width: 991.98px){
  .profile-section__title{
    font-size: 1.12rem;
  }

  .profile-section__subtitle{
    font-size: .9rem;
  }
}

@media (max-width: 575.98px){
  .profile-card{
    border-radius: 18px;
  }

  .form-control-modern{
    min-height: 46px;
    font-size: .94rem;
  }

  .danger-box{
    padding: .9rem;
    gap: .75rem;
  }

  .danger-box__icon{
    width: 2.2rem;
    height: 2.2rem;
    font-size: .95rem;
  }
}

.profile-page{
  --profile-card-radius: 22px;
  --profile-soft-bg: #f8fafc;
  --profile-border: rgba(15, 23, 42, 0.08);
  --profile-border-strong: rgba(15, 23, 42, 0.14);
  --profile-text: #0f172a;
  --profile-muted: #64748b;
  --profile-danger-bg: rgba(220, 53, 69, 0.05);
  --profile-danger-border: rgba(220, 53, 69, 0.16);
  --profile-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.profile-card{
  border-radius: var(--profile-card-radius);
  border: 1px solid var(--profile-border);
  box-shadow: var(--profile-shadow) !important;
  background: #fff;
}

.profile-card--danger{
  border: 1px solid var(--profile-danger-border);
}

.profile-section__eyebrow{
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--profile-muted);
}

.profile-section__title{
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--profile-text);
}

.profile-section__subtitle{
  font-size: .95rem;
  line-height: 1.6;
  color: var(--profile-muted);
  max-width: 42rem;
}

.form-control-modern{
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--profile-border-strong);
  padding: .78rem .95rem;
  font-size: .95rem;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.form-control-modern:focus{
  border-color: rgba(13, 110, 253, .35);
  box-shadow: 0 0 0 .2rem rgba(13, 110, 253, .12);
}

.profile-alert{
  border: 0;
  border-radius: 14px;
  padding: .9rem 1rem;
  font-size: .92rem;
  margin-bottom: 1rem;
}

.profile-alert-warning{
  border: 0;
  border-radius: 14px;
  padding: .95rem 1rem;
  font-size: .92rem;
}

.profile-note{
  padding: .85rem 1rem;
  background: var(--profile-soft-bg);
  border: 1px solid var(--profile-border);
  border-radius: 14px;
}

.btn-link-inline{
  font-weight: 700;
}

.danger-box{
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1.05rem;
  background: var(--profile-danger-bg);
  border: 1px solid var(--profile-danger-border);
  border-radius: 16px;
}

.danger-box__icon{
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 53, 69, .12);
  color: #dc3545;
  flex: 0 0 auto;
  font-size: 1rem;
}

.danger-box__title{
  font-weight: 800;
  color: #842029;
  line-height: 1.35;
  margin-bottom: .2rem;
}

.danger-box__text{
  color: #7a4b52;
  font-size: .92rem;
  line-height: 1.55;
}

.profile-modal{
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .18);
}

@media (max-width: 991.98px){
  .profile-section__title{
    font-size: 1.12rem;
  }

  .profile-section__subtitle{
    font-size: .9rem;
  }
}

@media (max-width: 575.98px){
  .profile-card{
    border-radius: 18px;
  }

  .form-control-modern{
    min-height: 46px;
    font-size: .94rem;
  }

  .danger-box{
    padding: .9rem;
    gap: .75rem;
  }

  .danger-box__icon{
    width: 2.2rem;
    height: 2.2rem;
    font-size: .95rem;
  }
}

.tech-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.tech-header__left,
.tech-header__right {
  display: flex;
  align-items: center;
}

.tech-header__left {
  gap: 0.85rem;
  min-width: 0;
}

.tech-header__right {
  gap: 0.75rem;
}

.tech-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.tech-brand__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.tech-brand__logo {
  height: 68px;
  width: auto;
  display: block;
  object-fit: contain;
}

.tech-brand__name--neon {
  font-size: 0.5rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;

  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 0.5px #26619c;

  text-shadow:
    0 0 0.5px rgba(255,255,255,1),
    0 0 1px rgba(255,255,255,0.9),
    0 0 2px rgba(38,97,156,0.95),
    0 0 4px rgba(38,97,156,0.85),
    0 0 7px rgba(125,211,252,0.7),
    0 0 12px rgba(125,211,252,0.5);
}

.tech-header__menu,
.tech-icon-btn,
.tech-account-btn {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0.9rem;
}

/* Laptop / medium desktop */
@media (max-width: 1399.98px) {
  .tech-brand__logo {
    height: 62px;
  }

  .tech-brand__name--neon {
    font-size: 1.55rem;
  }
}

/* Tablet */
@media (max-width: 991.98px) {
  .tech-header__main {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
  }

  .tech-header__row {
    min-height: 72px;
    gap: 0.65rem;
  }

  .tech-header__left {
    gap: 0.6rem;
    flex: 1 1 auto;
  }

  .tech-header__right {
    gap: 0.45rem;
    flex: 0 0 auto;
  }

  .tech-brand {
    gap: 0.6rem;
  }

  .tech-brand__logo {
    height: 44px;
  }

  .tech-brand__name--neon {
    font-size: 1.1rem;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .tech-header__menu,
  .tech-icon-btn,
  .tech-account-btn {
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .tech-header__main {
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
  }

  .tech-header__row {
    min-height: 64px;
    gap: 0.45rem;
  }

  .tech-header__left {
    gap: 0.45rem;
  }

  .tech-header__right {
    gap: 0.3rem;
  }

  .tech-brand {
    gap: 0.45rem;
  }

  .tech-brand__logo {
    height: 36px;
  }

  .tech-brand__name--neon {
    font-size: 0.88rem;
    letter-spacing: 0.03em;
    max-width: 125px;
  }

  .tech-header__menu,
  .tech-icon-btn,
  .tech-account-btn {
    width: 36px;
    height: 36px;
    border-radius: 0.7rem;
    font-size: 0.95rem;
  }

  .store-container {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
}

/* Very small phones */
@media (max-width: 390px) {
  .tech-brand__logo {
    height: 32px;
  }

  .tech-brand__name--neon {
    font-size: 0.78rem;
    max-width: 100px;
  }
}

.catalog-half-scale{
  width: 100%;
  max-width: 100%;
  transform: none;
  transform-origin: center;
}
/* =========================
   ADMIN PRODUCT MODAL
========================= */

.modal-content.product-admin-modal{
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 24px 60px rgba(7,15,30,.18);
}

.modal-dialog-scrollable .product-admin-modal{
  max-height: calc(100svh - 2rem);
}

.modal-dialog-scrollable .product-admin-modal .modal-body{
  overflow-y: auto;
}

.product-admin-modal .modal-header,
.product-admin-modal .modal-footer{
  flex-shrink: 0;
}

@media (max-width: 767.98px){
  .modal-dialog.modal-xl{
    margin: .75rem;
  }

  .modal-dialog-scrollable .product-admin-modal{
    max-height: calc(100svh - 1.5rem);
  }
}

.product-admin-modal .modal-header{
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid rgba(22,32,51,.08);
  background:
    radial-gradient(700px 220px at 10% 0%, rgba(79,110,247,.10), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.product-admin-modal .modal-title{
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #162033;
}

.product-admin-modal .modal-body{
  padding: 1.4rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.product-admin-modal .modal-footer{
  padding: 1rem 1.4rem 1.2rem;
  border-top: 1px solid rgba(22,32,51,.08);
  background: #fff;
}

.product-admin-modal .form-label{
  font-size: .88rem;
  font-weight: 800;
  color: #243247;
  margin-bottom: .45rem;
}

.product-admin-modal .form-control,
.product-admin-modal .form-select{
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(22,32,51,.12);
  background: #fff;
  box-shadow: none;
  padding-left: .95rem;
  padding-right: .95rem;
}

.product-admin-modal textarea.form-control{
  min-height: 120px;
  padding-top: .85rem;
  padding-bottom: .85rem;
  resize: vertical;
}

.product-admin-modal .form-control:focus,
.product-admin-modal .form-select:focus{
  border-color: rgba(79,110,247,.45);
  box-shadow: 0 0 0 .25rem rgba(79,110,247,.10);
}

.product-admin-modal .form-text{
  font-size: .8rem;
  color: #6b7890;
}

.product-admin-modal .form-check.form-switch{
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  min-height: 50px;
  display: flex;
  align-items: center;
}

.product-admin-modal .form-check-input{
  width: 2.6rem;
  height: 1.4rem;
  margin-left: -2.2rem;
}

.product-admin-modal .form-check-label{
  font-weight: 700;
  color: #243247;
}

.product-admin-section{
  padding: 1rem;
  border: 1px solid rgba(22,32,51,.07);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
}

.product-admin-section__title{
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  color: #6b7890;
  margin-bottom: .9rem;
}

@media (max-width: 767.98px){
  .product-admin-modal .modal-header,
  .product-admin-modal .modal-body,
  .product-admin-modal .modal-footer{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .product-admin-section{
    padding: .9rem;
  }
}
.product-media-shell{
  width: 100%;
  background: #fff;
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(7,15,30,.04);
}


.product-media-image,
.product-media-image--single,
.product-media-image--fallback{
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
  display: block;
}

.product-media-shell--single .product-media-stage{
  min-height: 480px;
}

.product-media-shell--empty .product-media-image--fallback{
  max-height: 240px;
  opacity: .9;
}

@media (max-width: 991.98px){
  .product-media-stage{
    min-height: 340px;
    max-height: 420px;
    padding: 16px;
  }

  .product-media-image,
  .product-media-image--single,
  .product-media-image--fallback{
    max-height: 300px;
  }

  .product-media-shell--single .product-media-stage{
    min-height: 340px;
  }
}

@media (max-width: 575.98px){
  .product-media-stage{
    min-height: 280px;
    max-height: 340px;
    padding: 12px;
  }

  .product-media-image,
  .product-media-image--single,
  .product-media-image--fallback{
    max-height: 240px;
  }
}

.compact-tab-pane#compact-tab-specs{
  width: 100%;
}

.compact-specs-wrap{
  width: 100%;
  overflow: hidden;
}

.compact-spec-table{
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: #fff;
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(7,15,30,.04);
}

.compact-spec-table tbody tr:not(:last-child) th,
.compact-spec-table tbody tr:not(:last-child) td{
  border-bottom: 1px solid rgba(22,32,51,.08);
}

.compact-spec-table th,
.compact-spec-table td{
  padding: 14px 16px;
  vertical-align: top;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}

.compact-spec-table th{
  width: 32%;
  min-width: 180px;
  background: #f8fafc;
  color: #5f6b7a;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.compact-spec-table td{
  color: #162033;
  font-size: .95rem;
  line-height: 1.65;
}

.compact-spec-table td ul,
.compact-spec-table td ol,
.compact-spec-table td p{
  margin-bottom: 0;
}

@media (max-width: 991.98px){
  .compact-spec-table th,
  .compact-spec-table td{
    padding: 12px 14px;
  }

  .compact-spec-table th{
    width: 38%;
    min-width: 150px;
    font-size: .78rem;
  }

  .compact-spec-table td{
    font-size: .92rem;
  }
}

@media (max-width: 767.98px){
  .compact-spec-table,
  .compact-spec-table tbody,
  .compact-spec-table tr,
  .compact-spec-table th,
  .compact-spec-table td{
    display: block;
    width: 100%;
  }

  .compact-spec-table{
    border-radius: 16px;
  }

  .compact-spec-table tr{
    padding: 0;
  }

  .compact-spec-table tr:not(:last-child){
    border-bottom: 1px solid rgba(22,32,51,.08);
  }

  .compact-spec-table th{
    min-width: 0;
    width: 100%;
    border: 0 !important;
    padding: 12px 14px 6px;
    background: #f8fafc;
    font-size: .76rem;
  }

  .compact-spec-table td{
    border: 0 !important;
    padding: 0 14px 12px;
    font-size: .92rem;
    line-height: 1.6;
  }
}

.similar-products-panel{
  padding: 18px;
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 10px 24px rgba(7,15,30,.04);
}

.similar-products-head{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.similar-products-title{
  font-size: 1rem;
  font-weight: 800;
  color: #162033;
}

.similar-products-subtext{
  font-size: .82rem;
  color: #6b7890;
}

.similar-products-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.similar-product-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(7,15,30,.04);
}

.similar-product-image-link{
  text-decoration: none;
}

.similar-product-image-wrap{
  aspect-ratio: 1 / 1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-bottom: 1px solid rgba(22,32,51,.06);
}

.similar-product-image{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.similar-product-body{
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
}

.similar-product-name{
  color: #162033;
  text-decoration: none;
  font-size: .9rem;
  line-height: 1.45;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.similar-product-name:hover{
  color: #0f1727;
}

.similar-product-price{
  font-size: 1rem;
  font-weight: 800;
  color: #162033;
}

.similar-product-cart-btn,
.similar-product-view-btn{
  width: 100%;
  min-height: 40px;
  border-radius: 12px;
  font-size: .84rem;
  font-weight: 700;
}

.similar-product-cart-btn{
  background: #162033;
  color: #fff;
  border: 1px solid #162033;
}

.similar-product-cart-btn:hover{
  background: #0f1727;
  color: #fff;
}

.similar-product-view-btn{
  border: 1px solid rgba(22,32,51,.14);
  background: #fff;
  color: #162033;
}

.similar-product-view-btn:hover{
  background: #f8fafc;
  color: #162033;
}

@media (max-width: 575.98px){
  .similar-products-panel{
    padding: 14px;
    border-radius: 18px;
  }

  .similar-products-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }
}




.compact-product-detail-panel{
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 14px 34px rgba(7,15,30,.06);
  clear: both;
}

.compact-product-links--panel{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(22,32,51,.08);
}

.compact-product-links--panel .compact-link-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(22,32,51,.12);
  border-radius: 999px;
  background: #fff;
  color: #243247;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.compact-product-links--panel .compact-link-btn:hover,
.compact-product-links--panel .compact-link-btn:focus{
  border-color: rgba(22,32,51,.28);
  color: #162033;
}

.compact-product-links--panel .compact-link-btn.is-active{
  background: #162033;
  border-color: #162033;
  color: #fff;
  box-shadow: 0 8px 18px rgba(22,32,51,.14);
}

.compact-product-tabs-content--panel{
  border-top: 0;
  padding-top: 18px;
}

.compact-overview-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 14px;
  align-items: stretch;
}

.compact-overview-grid > .compact-key-feature-grid:first-child{
  grid-column: 1 / -1;
}

.compact-key-feature-grid,
.compact-info-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.compact-section-eyebrow{
  margin-bottom: 8px;
  color: #7b8698;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.compact-feature-card .compact-spec-value,
.compact-info-grid .compact-spec-value{
  font-weight: 800;
}

.compact-spec-box,
.compact-rich-box{
  min-width: 0;
}

.compact-spec-value,
.compact-description,
.compact-spec-table th,
.compact-spec-table td{
  overflow-wrap: anywhere;
  word-break: normal;
}

.compact-spec-list{
  margin: 0;
  padding-left: 18px;
}

.compact-spec-list li + li{
  margin-top: 4px;
}

.compact-spec-sublabel{
  color: #5f6b7a;
  font-weight: 700;
}

.compact-product-detail-panel .compact-spec-table{
  border-radius: 14px;
  box-shadow: none;
}

.compact-product-detail-panel .compact-spec-table th,
.compact-product-detail-panel .compact-spec-table td{
  padding: 12px 14px;
}

.compact-product-detail-panel .compact-spec-table th{
  width: 30%;
  background: #f6f8fb;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.compact-product-detail-panel .compact-spec-table td{
  font-size: .93rem;
}

@media (max-width: 991.98px){
  .compact-product-detail-panel{
    padding: 16px;
  }

  .compact-overview-grid{
    grid-template-columns: 1fr;
  }

  .compact-key-feature-grid,
  .compact-info-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px){
  .compact-product-detail-panel{
    margin-top: 18px;
    padding: 14px;
    border-radius: 14px;
  }

  .compact-product-links--panel{
    gap: 6px;
  }

  .compact-product-links--panel .compact-link-btn{
    flex: 1 1 auto;
    min-width: 128px;
    padding: 9px 10px;
    font-size: .68rem;
  }

  .compact-key-feature-grid,
  .compact-info-grid{
    grid-template-columns: 1fr;
  }
}

.compact-product-main{
  align-items: flex-start;
}

.compact-gallery-wrap{
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  height: auto;
}

.compact-gallery-wrap--single{
  grid-template-columns: minmax(0, 1fr);
}

.compact-gallery-main{
  min-width: 0;
  height: auto;
}

.compact-product-info{
  padding: 6px 0;
  max-width: 430px;
  min-height: auto;
  display: flex;
  flex-direction: column;
}
/* =========================
   MINI SIMILAR PRODUCTS
========================= */

.mini-related-section{
  clear: both;
}

.mini-related-wrap{
  margin: 0;
}

.mini-related-slider{
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,249,252,.96));
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(7,15,30,.06);
  padding: 18px;
  overflow: hidden;
}

.mini-related-slider__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 14px;
}

.mini-related-slider__title{
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #162033;
}

.mini-related-slider__subtext{
  font-size: .82rem;
  color: #6b7890;
}

.mini-related-rail{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.mini-related-product{
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgba(22,32,51,.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(7,15,30,.04);
  min-height: 100%;
}

.mini-related-product__media{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 10px;
  background: #ffffff;
  overflow: hidden;
}

.mini-related-product__img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.mini-related-product__body{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  flex: 1 1 auto;
}

.mini-related-product__name{
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.35;
  color: #162033;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.2em;
}

.mini-related-product__name:hover{
  color: #3f5de0;
}

.mini-related-product__price{
  font-size: .86rem;
  font-weight: 900;
  color: #162033;
}

.mini-related-product__form{
  margin-top: auto;
}

.mini-related-product__btn{
  width: 100%;
  min-height: 34px;
  padding: .4rem .65rem;
  border-radius: 10px;
  border: 1px solid rgba(22,32,51,.12);
  background: #162033;
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mini-related-product__btn:hover{
  background: #0f1727;
  color: #fff;
}

.mini-related-product__btn--ghost{
  background: #fff;
  color: #162033;
}

.mini-related-product__btn--ghost:hover{
  background: rgba(22,32,51,.04);
  color: #162033;
}

@media (max-width: 991.98px){
  .mini-related-rail{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px){
  .mini-related-slider{
    padding: 14px;
    border-radius: 20px;
  }

  .mini-related-rail{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mini-related-product__media{
    height: 96px;
    padding: 8px;
  }

  .mini-related-product__body{
    padding: 9px;
    gap: 6px;
  }

  .mini-related-product__name{
    font-size: .76rem;
  }

  .mini-related-product__price{
    font-size: .8rem;
  }

  .mini-related-product__btn{
    min-height: 30px;
    font-size: .68rem;
    padding: .32rem .5rem;
  }
}
.pc-desc {
    font-size: 0.78rem;
    color: #6c757d;
    line-height: 1.35;
    margin: 0.45rem 0 0;
}

.pc-stock--in {
    background: #e9f8ef;
    color: #146c43;
}

.pc-stock--low {
    background: #fff4db;
    color: #946200;
}

.pc-stock--out {
    background: #f1f3f5;
    color: #495057;
}

.cart-menu-link {
        position: relative;
        transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
        border-radius: 999px;
    }

    .cart-menu-link--updated {
        animation: cartMenuPulse 1.2s ease-in-out 2;
        background: rgba(255, 193, 7, .22) !important;
        box-shadow: 0 0 0 5px rgba(255, 193, 7, .22);
    }

    .cart-menu-link--updated .cart-count-badge {
        animation: cartBadgePop .75s ease-in-out 2;
    }

    @keyframes cartMenuPulse {
        0% {
            transform: scale(1);
        }

        45% {
            transform: scale(1.06);
        }

        100% {
            transform: scale(1);
        }
    }

    @keyframes cartBadgePop {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.25);
        }

        100% {
            transform: scale(1);
        }
    }


.tech-category-hover {
  position: relative;
  z-index: 1040;
}

.tech-category-hover > .dropdown-menu {
  display: none;
}

.tech-category-hover:hover > .dropdown-menu,
.tech-category-hover:focus-within > .dropdown-menu,
.tech-category-hover > .dropdown-menu.show {
  display: block;
}

.tech-category-menu {
  width: 300px;
  padding: 0.55rem;
  margin-top: 0.65rem;
  background: #07111f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
  overflow: visible;
}

.tech-category-menu__item {
  position: relative;
}

.tech-category-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  width: 100%;
  padding: 0.78rem 0.85rem;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  border-radius: 13px;
  font-size: 0.9rem;
  font-weight: 750;
  white-space: nowrap;
}

.tech-category-menu__link:hover,
.tech-category-menu__item:hover > .tech-category-menu__link {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.tech-category-menu__link--all {
  margin-bottom: 0.35rem;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.18), rgba(54, 91, 255, 0.12));
}

.tech-category-menu__link span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.tech-category-menu__flyout {
  display: none;
  position: absolute;
  top: -0.55rem;
  left: calc(100% + 0.55rem);
  width: min(680px, calc(100% + 280px));
  max-height: 72vh;
  overflow-y: auto;
  padding: 1.15rem;
  background: #081525;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.35);
}

.tech-category-menu__item:hover > .tech-category-menu__flyout,
.tech-category-menu__item:focus-within > .tech-category-menu__flyout {
  display: block;
}

.tech-category-menu__flyout-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.tech-category-menu__flyout-head a {
  color: #7ee7ff;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.tech-category-menu__eyebrow {
  margin-bottom: 0.1rem;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.tech-category-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tech-category-menu__group {
  min-width: 0;
}

.tech-category-menu__child-title {
  display: block;
  margin-bottom: 0.45rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 850;
}

.tech-category-menu__child-title:hover {
  color: #7ee7ff;
}

.tech-category-menu__grandchildren {
  display: grid;
  gap: 0.25rem;
}

.tech-category-menu__grandchildren a,
.tech-category-menu__greatgrandchildren a {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 0.82rem;
  line-height: 1.35;
}

.tech-category-menu__grandchildren a:hover,
.tech-category-menu__greatgrandchildren a:hover {
  color: #ffffff;
}

.tech-category-menu__greatgrandchildren {
  margin: 0.2rem 0 0.45rem 0.6rem;
  padding-left: 0.6rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.tech-category-menu__empty {
  padding: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

@media (max-width: 991.98px) {
  .tech-category-menu {
    display: none !important;
  }
}

.pc-badge--options {
  background: rgba(13, 110, 253, 0.92);
  color: #fff;
}

.pc-stock-good {
  color: #198754;
}

.pc-stock-low {
  color: #b7791f;
}

.pc-stock-out {
  color: #dc3545;
}

.pc-variant-options {
  display: grid;
  gap: 0.35rem;
  margin: 0.55rem 0 0.35rem;
}

.pc-variant-group {
  display: grid;
  gap: 0.25rem;
}

.pc-variant-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: #6b7280;
}

.pc-variant-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.pc-variant-chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0.18rem 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(22, 32, 51, 0.1);
  background: rgba(248, 250, 252, 0.95);
  color: #162033;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
}

.pc-variant-chip--more {
  background: rgba(22, 32, 51, 0.06);
  color: #4b5563;
}

.pc-variant-more {
  font-size: 0.72rem;
  font-weight: 800;
  color: #0d6efd;
}

/* Forced storefront product-card footer layout. */
.store-products-panel .row,
.store-feature-band .row {
  align-items: stretch;
}

.store-products-panel .row > [class*="col-"],
.store-feature-band .row > [class*="col-"] {
  display: flex;
}

.product-card-link {
  display: flex !important;
  align-items: stretch;
  width: 100%;
  height: 100%;
}

.product-card--store {
  display: flex !important;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.product-card--store .pc-media {
  flex: 0 0 auto;
}

.product-card--store .pc-body {
  display: grid !important;
  flex: 1 1 auto;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0;
  min-height: clamp(14rem, 23vw, 16.5rem);
  min-width: 0;
}

.product-card--store .pc-main {
  display: grid;
  grid-template-rows: auto auto auto auto;
  align-content: start;
  row-gap: 0;
  min-height: 0;
  overflow: hidden;
}

.product-card--store .pc-meta-top {
  min-height: 1.15rem;
  overflow: hidden;
}

.product-card--store .pc-meta {
  flex-wrap: nowrap;
  overflow: hidden;
}

.product-card--store .pc-meta span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card--store .pc-title {
  display: -webkit-box;
  min-height: 2.8em;
  max-height: 2.8em;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card--store .pc-description {
  display: -webkit-box;
  min-height: 2.7em;
  max-height: 2.7em;
  margin: 0.45rem 0 0;
  overflow: hidden;
  color: #6c757d;
  font-size: 0.78rem;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card--store .pc-description--empty {
  color: transparent;
}

.product-card--store .pc-key-options {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 1.65rem;
  max-height: 1.65rem;
  margin: 0.75rem 0 0;
  overflow: hidden;
}

.product-card--store .pc-key-label {
  flex: 0 1 auto;
  overflow: hidden;
  color: #5f6b7d;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card--store .pc-key-values {
  display: flex;
  flex: 1 1 auto;
  gap: 0.25rem;
  min-width: 0;
  overflow: hidden;
}

.product-card--store .pc-key-chip {
  display: inline-flex;
  align-items: center;
  max-width: 7rem;
  padding: 0.18rem 0.42rem;
  overflow: hidden;
  border: 1px solid rgba(22, 32, 51, 0.1);
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.95);
  color: #162033;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card--store .pc-footer {
  display: grid;
  grid-template-rows: auto auto;
  align-self: end;
  min-height: 5.85rem;
  padding-top: 0.85rem;
}

.product-card--store .pc-price {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2px;
  min-height: 2.85em;
  margin: 0 !important;
}

.product-card--store .pc-price-old--empty {
  visibility: hidden;
}

.product-card--store .pc-view-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 0.8rem;
  padding-top: 14px;
  border-top: 1px solid rgba(22,32,51,.06);
}

.product-card--store .pc-view-text {
  min-width: 0;
  color: #6b7890;
  font-size: .88rem;
  font-weight: 700;
  transition: color .18s ease;
}

.product-card--store .pc-arrow {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  margin-left: auto;
}

.product-card--store:hover .pc-view-text {
  color: #4f6ef7;
}

@media (max-width: 575.98px) {
  .product-card--store .pc-body {
    min-height: 12.75rem;
    padding: 12px 12px 11px;
  }

  .product-card--store .pc-description {
    min-height: 1.35em;
    max-height: 1.35em;
    -webkit-line-clamp: 1;
  }

  .product-card--store .pc-key-options {
    min-height: 1.45rem;
    max-height: 1.45rem;
  }

  .product-card--store .pc-footer {
    min-height: 5.35rem;
  }
}

/* Mobile storefront navigation: keep the drawer aligned with the dark desktop header. */
@media (max-width: 991.98px) {
  #mobileShopNav.mobile-shop-nav {
    background: linear-gradient(180deg, #001748 0%, #06142f 58%, #0b1f3d 100%) !important;
    color: #f8fafc;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }

  #mobileShopNav.mobile-shop-nav .offcanvas-header,
  #mobileShopNav.mobile-shop-nav .offcanvas-body {
    background: transparent !important;
    color: #f8fafc;
  }

  #mobileShopNav.mobile-shop-nav .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  #mobileShopNav.mobile-shop-nav .offcanvas-title,
  #mobileShopNav.mobile-shop-nav .form-label,
  #mobileShopNav.mobile-shop-nav .btn-close {
    color: #ffffff !important;
  }

  #mobileShopNav.mobile-shop-nav .mobile-nav-link,
  #mobileShopNav.mobile-shop-nav .shop-category-drawer__parent,
  #mobileShopNav.mobile-shop-nav .shop-category-drawer__child,
  #mobileShopNav.mobile-shop-nav .shop-category-drawer__toggle {
    color: rgba(248, 250, 252, 0.94) !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border-color: rgba(255, 255, 255, 0.13) !important;
  }

  #mobileShopNav.mobile-shop-nav .mobile-nav-link:hover,
  #mobileShopNav.mobile-shop-nav .mobile-nav-link:focus,
  #mobileShopNav.mobile-shop-nav .mobile-nav-link[aria-expanded="true"],
  #mobileShopNav.mobile-shop-nav .shop-category-drawer__parent:hover,
  #mobileShopNav.mobile-shop-nav .shop-category-drawer__parent:focus,
  #mobileShopNav.mobile-shop-nav .shop-category-drawer__child:hover,
  #mobileShopNav.mobile-shop-nav .shop-category-drawer__child:focus,
  #mobileShopNav.mobile-shop-nav .shop-category-drawer__toggle:hover,
  #mobileShopNav.mobile-shop-nav .shop-category-drawer__toggle:focus,
  #mobileShopNav.mobile-shop-nav .shop-category-drawer__toggle:not(.collapsed) {
    color: #ffffff !important;
    background: rgba(37, 99, 235, 0.22) !important;
    border-color: rgba(126, 231, 255, 0.35) !important;
  }

  #mobileShopNav.mobile-shop-nav .mobile-nav-link__toggle,
  #mobileShopNav.mobile-shop-nav .shop-category-drawer__chevron {
    color: rgba(248, 250, 252, 0.9);
  }

  #mobileShopNav.mobile-shop-nav .mobile-nav-collapse {
    background: rgba(2, 6, 23, 0.36) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
  }

  #mobileShopNav.mobile-shop-nav .shop-category-drawer__children {
    border-left-color: rgba(126, 231, 255, 0.28);
  }

  #mobileShopNav.mobile-shop-nav .shop-category-drawer__child--all {
    color: #7ee7ff !important;
  }

  #mobileShopNav.mobile-shop-nav .nav-search-shell {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.16) !important;
  }

  #mobileShopNav.mobile-shop-nav .nav-search-input {
    color: #ffffff !important;
  }

  #mobileShopNav.mobile-shop-nav .nav-search-input::placeholder {
    color: rgba(248, 250, 252, 0.58) !important;
  }
}

/* UAT final mobile nav contrast override. Keep this at the end of shop.css. */
@media (max-width: 991.98px) {
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] {
    --bs-offcanvas-bg: #06142f;
    --bs-offcanvas-color: #f8fafc;
    --bs-body-bg: #06142f;
    --bs-body-color: #f8fafc;
    background: #06142f !important;
    background-color: #06142f !important;
    background-image: linear-gradient(180deg, #041a46 0%, #06142f 56%, #081f3f 100%) !important;
    color: #f8fafc !important;
    border-right-color: rgba(255, 255, 255, 0.14) !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .offcanvas-header,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .offcanvas-body {
    background: transparent !important;
    background-color: transparent !important;
    color: #f8fafc !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .offcanvas-header {
    border-bottom-color: rgba(255, 255, 255, 0.14) !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .offcanvas-title,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .form-label,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .mobile-shop-nav__label {
    color: #ffffff !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] a,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] button,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] span,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] i {
    color: inherit;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .mobile-nav-link {
    background: rgba(14, 42, 79, 0.96) !important;
    border-color: rgba(125, 211, 252, 0.2) !important;
    color: #f8fafc !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .mobile-nav-link:hover,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .mobile-nav-link:focus,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .mobile-nav-link[aria-expanded="true"] {
    background: #123867 !important;
    border-color: rgba(125, 211, 252, 0.44) !important;
    color: #ffffff !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .mobile-nav-link__toggle,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .mobile-nav-link__toggle i {
    color: #ffffff !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .mobile-nav-collapse {
    background: rgba(2, 8, 23, 0.56) !important;
    border-color: rgba(125, 211, 252, 0.18) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .shop-category-drawer__parent {
    background: #0e2a4f !important;
    border-color: rgba(125, 211, 252, 0.24) !important;
    color: #ffffff !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .shop-category-drawer__parent:hover,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .shop-category-drawer__parent:focus {
    background: #123867 !important;
    border-color: rgba(125, 211, 252, 0.46) !important;
    color: #ffffff !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .shop-category-drawer__children {
    background: transparent !important;
    border-left-color: rgba(125, 211, 252, 0.32) !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .shop-category-drawer__child {
    background: rgba(7, 20, 44, 0.82) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: #e5eefc !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .shop-category-drawer__child:hover,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .shop-category-drawer__child:focus {
    background: rgba(18, 56, 103, 0.94) !important;
    border-color: rgba(125, 211, 252, 0.36) !important;
    color: #ffffff !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .shop-category-drawer__child--all {
    background: rgba(14, 116, 144, 0.28) !important;
    border-color: rgba(125, 211, 252, 0.38) !important;
    color: #bae6fd !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .shop-category-drawer__toggle,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .shop-category-drawer__toggle:not(.collapsed) {
    background: #0e2a4f !important;
    border-color: rgba(125, 211, 252, 0.24) !important;
    color: #ffffff !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .shop-category-drawer__toggle:hover,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .shop-category-drawer__toggle:focus {
    background: #123867 !important;
    border-color: rgba(125, 211, 252, 0.46) !important;
    color: #ffffff !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .shop-category-drawer__chevron,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .shop-category-drawer__toggle .shop-category-drawer__chevron,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .btn-close {
    color: #ffffff !important;
    opacity: 1 !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .btn-close,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%) !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .nav-search-shell {
    background: #ffffff !important;
    border-color: rgba(125, 211, 252, 0.42) !important;
    color: #0f172a !important;
    box-shadow: none !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .nav-search-shell:focus-within {
    border-color: #7dd3fc !important;
    box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.22) !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .nav-search-icon,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .nav-search-icon i {
    color: #334155 !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .nav-search-input {
    background: transparent !important;
    color: #0f172a !important;
    caret-color: #0f172a !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .nav-search-input::placeholder {
    color: #64748b !important;
    opacity: 1 !important;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .cart-count-badge {
    background: #bae6fd !important;
    color: #082f49 !important;
  }

  html body:has(.offcanvas#mobileShopNav.mobile-shop-nav.show) > .offcanvas-backdrop.show {
    background-color: #020617 !important;
    opacity: 0.58 !important;
  }

  html body .offcanvas-backdrop.show {
    background-color: #020617 !important;
    opacity: 0.58 !important;
  }
}

/* Production catalogue: customer-safe colour swatches and live search suggestions. */
.compact-swatch--labeled {
  width: auto !important;
  min-width: 0;
  min-height: 40px;
  gap: 0.45rem;
  padding: 0.34rem 0.62rem 0.34rem 0.42rem !important;
  border-radius: 999px !important;
}

.compact-swatch--labeled .compact-swatch-dot,
.pc-key-swatch-dot {
  flex: 0 0 auto;
  background-color: var(--swatch, transparent);
  background-image: var(--swatch-img, none);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(22, 32, 51, 0.2);
}

.compact-swatch--labeled .compact-swatch-dot {
  width: 26px;
  height: 26px;
}

.compact-swatch-label {
  display: inline-block;
  max-width: 8.5rem;
  overflow: hidden;
  color: #162033;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-swatch.is-light .compact-swatch-dot,
.pc-key-chip--swatch.is-light .pc-key-swatch-dot,
.compact-swatch.is-unknown .compact-swatch-dot,
.pc-key-chip--swatch.is-unknown .pc-key-swatch-dot {
  border-color: rgba(22, 32, 51, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.compact-swatch.is-unknown,
.pc-key-chip--swatch.is-unknown {
  border-style: dashed;
}

.product-card--store .pc-key-chip--swatch {
  gap: 0.28rem;
  padding-left: 0.28rem;
}

.pc-key-swatch-dot {
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 999px;
}

.compact-product-page .variant-colour-group {
  align-items: center;
  gap: 10px !important;
}

.compact-product-page .variant-colour-option {
  appearance: none;
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  flex: 0 1 auto;
  gap: 8px;
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  min-height: 44px;
  min-width: 0;
  padding: 8px 13px 8px 9px !important;
  overflow: visible;
  border: 1px solid rgba(22, 32, 51, 0.16);
  border-radius: 999px !important;
  background: #ffffff;
  color: #162033;
  text-align: left;
  cursor: pointer;
  transition:
    background-color .16s ease,
    border-color .16s ease,
    box-shadow .16s ease,
    transform .16s ease;
}

.compact-product-page .variant-colour-option:not(.is-disabled):hover {
  transform: translateY(-1px);
  border-color: rgba(22, 32, 51, 0.3);
  background: #f8fafc;
  box-shadow: 0 10px 22px rgba(7, 15, 30, 0.08);
}

.compact-product-page .variant-colour-option:focus-visible {
  outline: 0;
  border-color: #162033;
  box-shadow: 0 0 0 4px rgba(22, 32, 51, 0.12);
}

.compact-product-page .variant-colour-option.option-btn.is-selected {
  border-color: #162033 !important;
  background: #f4f7fb;
  box-shadow: 0 0 0 3px rgba(22, 32, 51, 0.12);
}

.compact-product-page .variant-colour-swatch {
  flex: 0 0 22px;
  width: 22px !important;
  height: 22px !important;
  border-radius: 999px;
  background-color: var(--swatch, transparent);
  background-image: var(--swatch-img, none);
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(22, 32, 51, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.compact-product-page .variant-colour-label {
  display: block;
  min-width: 0;
  max-width: 10.5rem;
  overflow: visible;
  color: #162033;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: anywhere;
}

.compact-product-page .variant-colour-option.is-light .variant-colour-swatch {
  border-color: rgba(22, 32, 51, 0.32);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.92),
    0 0 0 1px rgba(22, 32, 51, 0.06);
}

.compact-product-page .variant-colour-option.is-unknown {
  border-style: dashed;
  background: #ffffff;
}

.compact-product-page .variant-colour-option.is-unknown .variant-colour-swatch {
  background-color: #ffffff;
  background-image: var(--swatch-img, repeating-linear-gradient(45deg, #ffffff 0 4px, #d5dbe5 4px 8px));
  border-style: dashed;
}

.compact-product-page .variant-colour-option.is-multicolour .variant-colour-swatch,
.pc-key-chip--swatch.is-multicolour .pc-key-swatch-dot {
  border-color: rgba(22, 32, 51, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.compact-product-page .variant-colour-option.is-disabled {
  transform: none !important;
  box-shadow: none !important;
}

.suggest {
  max-height: min(70vh, 520px);
  overflow-y: auto;
}

.suggest__item {
  align-items: center;
}

.suggest__item.is-active,
.suggest__item:focus {
  background: rgba(79, 110, 247, 0.1);
  outline: none;
}

.suggest__media {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(22, 32, 51, 0.08);
  border-radius: 8px;
  background: #f8fafc;
  overflow: hidden;
}

.suggest__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.suggest .s-left {
  flex: 1 1 auto;
}

.suggest .s-price {
  flex: 0 0 auto;
  color: #162033;
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.suggest__empty {
  padding: 14px 16px;
  color: #6b7890;
  font-size: 0.92rem;
  font-weight: 700;
}

@media (max-width: 575.98px) {
  .compact-product-page .variant-colour-group {
    gap: 9px !important;
  }

  .compact-product-page .variant-colour-option {
    min-height: 42px;
    padding: 7px 11px 7px 8px !important;
  }

  .compact-product-page .variant-colour-label {
    max-width: 7.4rem;
    font-size: 0.82rem;
  }

  .compact-swatch-label {
    max-width: 6.8rem;
  }

  .suggest {
    left: 0.25rem;
    right: 0.25rem;
  }

  .suggest .s-price {
    display: none;
  }
}

/* Homepage refresh: production store sections, category sliders, and brand cards. */
.home-tech-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(470px, 70svh, 660px);
  padding: clamp(2.35rem, 5.2vw, 4.25rem) 0 clamp(1.9rem, 4vw, 3.5rem);
  overflow: hidden;
  isolation: isolate;

  background:
    radial-gradient(circle at 74% 42%, rgba(37, 99, 235, 0.28), transparent 34%),
    radial-gradient(circle at 18% 72%, rgba(14, 165, 233, 0.14), transparent 30%),
    linear-gradient(rgba(59, 130, 246, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #081121 0%, #0b1426 48%, #050914 100%);
  background-size: auto, auto, 96px 96px, 96px 96px, auto;
}

.home-tech-hero::before,
.home-tech-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-tech-hero::before {
  inset: -30%;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(56, 189, 248, 0.22), transparent 28%),
    radial-gradient(circle at 78% 35%, rgba(37, 99, 235, 0.18), transparent 30%),
    radial-gradient(circle at 58% 78%, rgba(125, 211, 252, 0.1), transparent 26%);
  opacity: 0.95;
  animation: homeHeroGlowDrift 12s ease-in-out infinite alternate;
}

.home-tech-hero::after {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 26%, transparent 72%, rgba(56, 189, 248, 0.08)),
    radial-gradient(circle at 50% 100%, rgba(8, 47, 73, 0.36), transparent 42%);
  mix-blend-mode: screen;
  opacity: 0.68;
}

@keyframes homeHeroGlowDrift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(2%, 1%, 0) scale(1.04);
  }
}

.home-tech-hero__grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  align-items: center;
  gap: clamp(1.4rem, 4vw, 4rem);
}

.home-tech-hero__content {
  max-width: 760px;
  min-width: 0;
}

.home-tech-hero__eyebrow {
  margin: 0 0 clamp(0.75rem, 1.7vw, 1.35rem);
  color: #7ee7ff;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-section__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-tech-hero__title {
  max-width: 780px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.45rem, 5.8vw, 5.15rem);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-tech-hero__subtitle {
  max-width: 580px;
  margin: clamp(0.9rem, 2vw, 1.45rem) 0 0;
  color: rgba(214, 231, 255, 0.82);
  font-size: clamp(0.98rem, 1.5vw, 1.24rem);
  line-height: 1.45;
}

.home-tech-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: min(100%, 520px);
  max-width: 100%;
  aspect-ratio: 1.16 / 1;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-tech-hero__visual::before {
  content: "";
  position: absolute;
  inset: 9% 4% 2%;
  z-index: 0;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(56, 189, 248, 0.24), rgba(37, 99, 235, 0.1) 46%, transparent 70%);
  filter: blur(4px);
  opacity: 0.82;
}

.home-tech-hero__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: min(50svh, 450px);
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: drop-shadow(0 28px 44px rgba(2, 8, 23, 0.34));
  animation: homeHeroProductFloat 7s ease-in-out infinite alternate;
}

@keyframes homeHeroProductFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(-0.4deg);
  }

  to {
    transform: translate3d(0, -8px, 0) rotate(0.5deg);
  }
}

.home-hero-search {
  position: relative;
  max-width: 720px;
  margin-top: 26px;
}

.home-hero-search__shell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 8px;
  border: 1px solid rgba(126, 231, 255, 0.34);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 54px rgba(2, 8, 23, 0.28);
}

.home-hero-search__icon {
  flex: 0 0 auto;
  padding-left: 10px;
  color: #334155;
  font-size: 1.05rem;
}

.home-hero-search__input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
}

.home-hero-search__input::placeholder {
  color: #64748b;
  opacity: 1;
}

.home-hero-search__button {
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 13px;
  background: #162033;
  color: #ffffff;
  font-weight: 900;
}

.home-hero-search .suggest {
  top: calc(100% + 10px);
}

.home-tech-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(1rem, 2.2vw, 1.55rem);
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.home-btn--primary {
  background: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
}

.home-btn--accent {
  background: #f5c542;
  color: #1f2937;
}

.home-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.home-btn:hover,
.home-btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(2, 8, 23, 0.22);
}

.home-tech-hero__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  isolation: isolate;
}

.home-tech-hero__media::before {
  content: "";
  position: absolute;
  inset: 28px 4%;
  z-index: 0;
  background:
    radial-gradient(ellipse at center, rgba(126, 231, 255, 0.22), rgba(126, 231, 255, 0.06) 44%, transparent 72%),
    radial-gradient(ellipse at 72% 42%, rgba(245, 197, 66, 0.18), transparent 58%);
  opacity: 0.86;
}

.home-hero-slider {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(100%, 560px);
  min-height: 420px;
  overflow: hidden;
  background: transparent;
  isolation: isolate;
}

.home-hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 48%, rgba(6, 20, 47, 0.28) 76%, rgba(6, 20, 47, 0.82) 100%),
    linear-gradient(90deg, rgba(6, 20, 47, 0.58), transparent 17%, transparent 83%, rgba(6, 20, 47, 0.58));
}

.home-hero-slider__stage {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(18px, 0, 0) scale(0.98);
  transition: opacity .8s ease, transform .8s ease;
}

.home-hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.home-hero-slide img {
  display: block;
  width: min(100%, 540px);
  height: 100%;
  max-height: 430px;
  object-fit: contain;
  filter:
    drop-shadow(0 34px 46px rgba(2, 8, 23, 0.42))
    drop-shadow(0 0 18px rgba(126, 231, 255, 0.12));
  transform: scale(1.01);
  transition: transform 5.4s ease;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0, 0, 0, 0.78) 76%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0, 0, 0, 0.78) 76%, transparent 100%);
}

.home-hero-slide.is-active img {
  transform: scale(1.045) translate3d(-1.2%, -0.8%, 0);
}

.home-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(6, 20, 47, 0.48);
  color: #ffffff;
  transform: translateY(-50%);
  transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}

.home-hero-arrow--prev {
  left: 4px;
}

.home-hero-arrow--next {
  right: 4px;
}

.home-hero-arrow:hover,
.home-hero-arrow:focus {
  border-color: rgba(126, 231, 255, 0.52);
  background: rgba(15, 47, 95, 0.78);
  color: #ffffff;
}

.home-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transform: translateX(-50%);
}

.home-hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  transition: background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.home-hero-dot.is-active {
  border-color: rgba(126, 231, 255, 0.98);
  background: #7ee7ff;
  box-shadow: 0 0 0 4px rgba(126, 231, 255, 0.16);
}

.home-hero-arrow:focus-visible,
.home-hero-dot:focus-visible {
  outline: 3px solid rgba(126, 231, 255, 0.42);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .home-tech-hero::before,
  .home-tech-hero__image,
  .home-product-card__img,
  html.reveal-ready [data-reveal] {
    animation: none;
    transition: none;
    transform: none;
  }

  html.reveal-ready [data-reveal] {
    opacity: 1;
  }

  .home-hero-slide,
  .home-hero-slide img,
  .home-hero-arrow,
  .home-hero-dot {
    transition: none;
  }

  .home-hero-slide,
  .home-hero-slide.is-active,
  .home-hero-slide img,
  .home-hero-slide.is-active img {
    transform: none;
  }
}

.home-section {
  --home-section-bg: #ffffff;
  --home-section-detail: none;
  --home-section-detail-size: auto;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(1.5rem, 3.2vw, 3rem) 0;
  background: var(--home-section-bg);
}

.home-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--home-section-detail);
  background-size: var(--home-section-detail-size);
  opacity: 0.9;
}

.home-section--white {
  --home-section-bg:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  --home-section-detail:
    radial-gradient(circle at 88% 12%, rgba(56, 189, 248, 0.08), transparent 28rem),
    linear-gradient(rgba(37, 99, 235, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.024) 1px, transparent 1px);
  --home-section-detail-size: auto, 42px 42px, 42px 42px;
}

.home-section--ice,
.home-section--light {
  --home-section-bg:
    linear-gradient(180deg, #f4f8fd 0%, #ffffff 100%);
  --home-section-detail:
    radial-gradient(circle at 12% 18%, rgba(56, 189, 248, 0.13), transparent 26rem),
    radial-gradient(circle at 92% 76%, rgba(37, 99, 235, 0.06), transparent 24rem);
}

.home-section--soft-blue {
  --home-section-bg:
    linear-gradient(135deg, #eef6ff 0%, #ffffff 56%, #f7fbff 100%);
  --home-section-detail:
    radial-gradient(circle at 88% 12%, rgba(37, 99, 235, 0.11), transparent 27rem),
    radial-gradient(circle at 16% 86%, rgba(56, 189, 248, 0.08), transparent 25rem);
}

.home-section--spotlight {
  --home-section-bg:
    linear-gradient(135deg, #ffffff 0%, #f2f8ff 44%, #eaf4ff 100%);
  --home-section-detail:
    radial-gradient(circle at 14% 22%, rgba(29, 78, 216, 0.12), transparent 25rem),
    radial-gradient(circle at 84% 18%, rgba(56, 189, 248, 0.14), transparent 28rem),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.58) 42%, transparent 72%);
}

.home-section--categories {
  position: relative;
  overflow: hidden;
  padding-block: clamp(1.8rem, 4vw, 3.6rem);




  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-section--categories .section-eyebrow,
.home-section--categories .home-section__eyebrow {
  color: #2563eb;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.home-section--categories h2,
.home-section--categories .home-section__title {
  color: #071a33;
}

.home-section--categories .section-action,
.home-section--categories .home-section__link,
.home-section--categories a[href*="categories"] {
  color: #2563eb;
  font-weight: 800;
}

.home-section--categories .category-card,
.home-section--categories .category-tile,
.home-section--categories .category-slide,
.home-section--categories .home-category-slider-item {
  color: #071a33;
}

.home-section--categories .category-card img,
.home-section--categories .category-tile img,
.home-section--categories .category-slide img,
.home-section--categories .category-slider-media,
.home-section--categories .home-category-slider-media {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
}

.home-section--categories .category-card:hover img,
.home-section--categories .category-tile:hover img,
.home-section--categories .category-slide:hover img,
.home-section--categories .home-category-slider-item:hover .home-category-slider-media,
.home-section--categories .home-category-slider-item:focus-visible .home-category-slider-media {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(37, 99, 235, 0.18);
}

.home-section--categories .slider-arrow,
.home-section--categories .carousel-arrow,
.home-section--categories .category-slider__button,
.home-section--categories .home-category-slider-arrow {
  background: #ffffff;
  color: #071a33;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
}

.home-section--categories .slider-arrow:hover,
.home-section--categories .carousel-arrow:hover,
.home-section--categories .category-slider__button:hover,
.home-section--categories .home-category-slider-arrow:hover,
.home-section--categories .home-category-slider-arrow:focus {
  background: #2563eb;
  color: #ffffff;
}

.home-section--categories .home-category-slider-arrow:disabled,
.home-section--categories .home-category-slider-arrow:disabled:hover,
.home-section--categories .home-category-slider-arrow:disabled:focus {
  background: #ffffff;
  color: #071a33;
}

.home-section--slate,
.home-section--work,
.home-section--brands {
  --home-section-bg:
    linear-gradient(135deg, #071a33 0%, #0f2f5f 100%);
  --home-section-detail:
    radial-gradient(circle at 16% 18%, rgba(56, 189, 248, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(37, 99, 235, 0.18), transparent 28rem),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 26%, transparent 74%, rgba(56, 189, 248, 0.07));
  color: #ffffff;
}

.home-section .store-container {
  position: relative;
  z-index: 1;
  max-width: 1440px;
}

.home-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  margin-bottom: clamp(0.75rem, 1.5vw, 1.1rem);
}

.home-section__head h2 {
  margin: 0;
  color: #162033;
  font-size: clamp(1.22rem, 2vw, 1.8rem);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0;
}

.home-section--slate .home-section__head h2,
.home-section--work .home-section__head h2,
.home-section--brands .home-section__head h2 {
  color: #ffffff;
}

.home-section--slate .home-section__eyebrow,
.home-section--work .home-section__eyebrow,
.home-section--brands .home-section__eyebrow {
  color: #7dd3fc;
}

.home-section__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding-inline: 0.15rem;
  color: #3f5de0;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.home-section--slate .home-section__link,
.home-section--work .home-section__link,
.home-section--brands .home-section__link {
  color: #7ee7ff;
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .52s ease, transform .52s ease;
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.category-slider-block {
  max-width: 1320px;
  margin-inline: auto;
}

.category-slider-block--shop {
  max-width: 100%;
}

.category-slider-head {
  margin-bottom: clamp(0.65rem, 1.4vw, 0.95rem);
}

.home-category-slider-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.45rem, 1vw, 0.8rem);
  max-width: 1320px;
  margin-inline: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-category-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(108px, 11vw, 150px);
  align-items: start;
  gap: clamp(0.85rem, 1.5vw, 1.25rem);
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline proximity;
  scroll-padding-inline: 0.25rem;
  padding: 0.2rem 0.25rem 0.4rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.home-category-slider::-webkit-scrollbar {
  display: none;
}

.home-category-slider-item {
  display: grid;
  justify-items: center;
  align-content: start;
  min-width: 0;
  padding: 0.22rem 0.15rem 0.1rem;
  color: #0b1f3a;
  text-align: center;
  text-decoration: none;
  scroll-snap-align: start;
  transition: color .18s ease, transform .18s ease;
}

.home-category-slider-item:hover,
.home-category-slider-item:focus-visible,
.home-category-slider-item.is-active {
  color: #2563eb;
  transform: translateY(-3px);
}

.home-category-slider-media {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(78px, 7.2vw, 92px);
  height: clamp(78px, 7.2vw, 92px);
  margin-inline: auto;
  border: 1px solid rgba(7, 26, 51, 0.08);
  border-radius: 999px;
  background: #ffffff;
  color: #2563eb;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 6px 14px rgba(2, 12, 32, 0.04);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.home-category-slider-media::before,
.home-category-slider-media::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}

.home-category-slider-media::before {
  inset: 1px;
  z-index: 1;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), transparent 46%, rgba(56, 189, 248, 0.1));
  opacity: 0.55;
}

.home-category-slider-media::after {
  inset: -22%;
  z-index: 1;
  background: linear-gradient(115deg, transparent 34%, rgba(56, 189, 248, 0.16) 47%, rgba(255, 255, 255, 0.62) 52%, transparent 66%);
  opacity: 0;
  transform: translateX(-86%);
  transition: opacity .2s ease, transform .55s ease;
}

.home-category-slider-item:hover .home-category-slider-media,
.home-category-slider-item:focus-visible .home-category-slider-media,
.home-category-slider-item.is-active .home-category-slider-media {
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow:
    0 10px 24px rgba(2, 12, 32, 0.08),
    0 0 0 5px rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

.home-category-slider-item:hover .home-category-slider-media::after,
.home-category-slider-item:focus-visible .home-category-slider-media::after,
.home-category-slider-item.is-active .home-category-slider-media::after {
  opacity: 1;
  transform: translateX(82%);
}

.home-category-slider-media img {
  position: relative;
  z-index: 2;
  width: 76%;
  height: 76%;
  object-fit: contain;
}

.home-category-slider-media i {
  position: relative;
  z-index: 2;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.home-category-slider-title {
  display: block;
  max-width: 100%;
  margin-top: 0.7rem;
  color: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.home-category-slider-item.is-active .home-category-slider-title {
  color: #1d4ed8;
}

.home-category-slider-item.is-active .home-category-slider-media {
  border-color: rgba(37, 99, 235, 0.55);
  box-shadow:
    0 10px 24px rgba(37, 99, 235, 0.12),
    0 0 0 5px rgba(37, 99, 235, 0.1);
}

.home-category-slider-item.is-parent-active .home-category-slider-media {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow:
    0 8px 18px rgba(2, 12, 32, 0.055),
    0 0 0 4px rgba(37, 99, 235, 0.045);
}

.home-category-slider-item.is-parent-active .home-category-slider-title {
  color: #1e3a8a;
}

.home-category-slider-count {
  display: block;
  margin-top: 0.18rem;
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.2;
}

.home-category-slider-arrow {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(7, 26, 51, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #0b1f3a;
  box-shadow: 0 8px 20px rgba(2, 12, 32, 0.06);
  transition: border-color .16s ease, background-color .16s ease, color .16s ease, transform .16s ease;
}

.home-category-slider-arrow:hover,
.home-category-slider-arrow:focus {
  border-color: rgba(37, 99, 235, 0.24);
  background: #ffffff;
  color: #2563eb;
  box-shadow:
    0 10px 22px rgba(2, 12, 32, 0.08),
    0 0 0 4px rgba(37, 99, 235, 0.06);
  transform: translateY(-1px);
}

.home-category-slider-arrow:disabled {
  cursor: default;
  opacity: 0.38;
  transform: none;
  box-shadow: none;
}

.home-category-slider-arrow:disabled:hover,
.home-category-slider-arrow:disabled:focus {
  border-color: rgba(7, 26, 51, 0.12);
  background: #ffffff;
  color: #0b1f3a;
}

.home-category-slider-progress {
  position: relative;
  width: min(420px, 70vw);
  height: 5px;
  margin: 0.85rem auto 0;
  border-radius: 999px;
  background: rgba(7, 26, 51, 0.14);
  box-shadow: inset 0 1px 2px rgba(2, 12, 32, 0.08);
  overflow: hidden;
}

.home-category-slider-progress-bar {
  position: relative;
  display: block;
  width: 12%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1d4ed8, #38bdf8);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.2);
  overflow: hidden;
  transition: width .16s ease;
}

.home-category-slider-progress-bar::after {
  content: "";
  position: absolute;
  inset: -70% auto -70% -45%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  transform: translateX(0) skewX(-18deg);
  animation: homeCategoryProgressShine 2.9s ease-in-out infinite;
}

.home-category-slider-arrow:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.22);
  outline-offset: 3px;
}

@keyframes homeCategoryProgressShine {
  0%,
  34% {
    transform: translateX(0) skewX(-18deg);
  }

  76%,
  100% {
    transform: translateX(360%) skewX(-18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-category-slider-item,
  .home-category-slider-media,
  .home-category-slider-media::after,
  .home-category-slider-arrow,
  .home-category-slider-progress-bar {
    transition: none;
  }

  .home-category-slider-progress-bar::after {
    animation: none;
  }

  .home-category-slider-item:hover,
  .home-category-slider-item:focus-visible,
  .home-category-slider-item.is-active,
  .home-category-slider-item:hover .home-category-slider-media,
  .home-category-slider-item:focus-visible .home-category-slider-media,
  .home-category-slider-item.is-active .home-category-slider-media,
  .home-category-slider-arrow:hover,
  .home-category-slider-arrow:focus {
    transform: none;
  }
}

.home-category-grid {
  display: grid;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(96px, 128px));
  justify-content: center;
  align-items: start;
  gap: clamp(0.85rem, 1.5vw, 1.4rem);
}

.home-category-grid--shop {
  justify-content: start;
}

.shop-category-showcase {
  max-width: 100%;
  margin: 0 0 clamp(1.25rem, 3vw, 2rem);
}

.shop-category-showcase__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(0.85rem, 2vw, 1.25rem);
}

.shop-category-showcase__head h2 {
  margin: 0;
  color: #071a33;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 900;
  line-height: 1.1;
}

.shop-index-page {
  padding: clamp(0.75rem, 1.7vw, 1.2rem) 0 clamp(1.35rem, 2.6vw, 2.2rem);
}

.shop-index-page .store-container {
  display: grid;
  max-width: 1440px;
  gap: clamp(0.7rem, 1.35vw, 1rem);
}

.shop-toolbar-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding: clamp(0.48rem, 1vw, 0.68rem);
  border: 1px solid rgba(7, 26, 51, 0.065);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.shop-toolbar-panel__left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1 1 24rem;
  min-width: 0;
  flex-wrap: wrap;
}

.shop-toolbar-panel__right {
  display: flex;
  justify-content: flex-end;
  flex: 0 1 15rem;
  min-width: min(100%, 13rem);
}

.shop-toolbar-panel .btn-soft {
  min-height: 36px;
  padding: 0 0.78rem;
  border-color: rgba(7, 26, 51, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #071a33;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: none;
  white-space: nowrap;
}

.shop-toolbar-panel .btn-soft:hover,
.shop-toolbar-panel .btn-soft:focus {
  border-color: rgba(37, 99, 235, 0.26);
  color: #1d4ed8;
  background: #ffffff;
}

.shop-active-filters {
  gap: 0.35rem;
  min-height: 0;
  min-width: 0;
  flex: 1 1 16rem;
}

.shop-active-filters > .small {
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
}

.shop-active-filters .filter-chip {
  max-width: min(100%, 17rem);
  min-height: 28px;
  padding: 0.24rem 0.5rem;
  gap: 0.36rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.72);
  color: #1d4ed8;
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: none;
}

.shop-active-filters .filter-chip span:first-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-active-filters .filter-chip__x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  font-size: 0.58rem;
  flex: 0 0 auto;
}

.shop-active-filters .clear-link {
  color: #2563eb;
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
}

.shop-sort-form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.42rem;
  width: auto;
  flex-wrap: wrap;
}

.shop-sort-wrap {
  width: auto;
}

.shop-toolbar-panel .store-sort-select {
  width: min(100%, 10.75rem);
  min-height: 36px;
  padding: 0 1.9rem 0 0.78rem;
  border-color: rgba(7, 26, 51, 0.1);
  border-radius: 999px;
  background-color: #ffffff;
  color: #0f172a;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: none;
}

.shop-results-count {
  padding: 0 0.25rem;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.shop-index-page .shop-category-showcase {
  margin-bottom: clamp(0.45rem, 1.2vw, 0.85rem);
}

.shop-index-page .shop-category-showcase__head {
  margin-bottom: 0.75rem;
}

.shop-product-grid {
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem;
}

.home-featured-grid {
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem;
}

.shop-index-page .product-card--store,
.home-featured-grid .product-card--store {
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(2, 12, 32, 0.04);
}

.shop-index-page .product-card--store:hover,
.home-featured-grid .product-card--store:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(2, 12, 32, 0.07);
}

.shop-index-page .product-card--store .pc-media,
.home-featured-grid .product-card--store .pc-media {
  height: clamp(92px, 8.5vw, 126px);
  min-height: 0;
  aspect-ratio: auto;
  padding: 0.35rem;
}

.shop-index-page .product-card--store .pc-body,
.home-featured-grid .product-card--store .pc-body {
  min-height: clamp(7.45rem, 9.6vw, 8.65rem);
  padding: 0.48rem;
}

.shop-index-page .product-card--store .pc-meta-top,
.home-featured-grid .product-card--store .pc-meta-top {
  min-height: 0.95rem;
}

.shop-index-page .product-card--store .pc-meta,
.home-featured-grid .product-card--store .pc-meta {
  font-size: 0.65rem;
}

.shop-index-page .product-card--store .pc-title,
.home-featured-grid .product-card--store .pc-title {
  font-size: 0.78rem;
  line-height: 1.18;
  min-height: 2.36em;
  max-height: 2.36em;
}

.shop-index-page .product-card--store .pc-description,
.home-featured-grid .product-card--store .pc-description {
  display: none;
}

.shop-index-page .product-card--store .pc-key-options,
.home-featured-grid .product-card--store .pc-key-options {
  min-height: 1.05rem;
  max-height: 1.05rem;
  margin-top: 0.28rem;
}

.shop-index-page .product-card--store .pc-key-label,
.shop-index-page .product-card--store .pc-key-chip,
.home-featured-grid .product-card--store .pc-key-label,
.home-featured-grid .product-card--store .pc-key-chip {
  font-size: 0.6rem;
}

.shop-index-page .product-card--store .pc-footer,
.home-featured-grid .product-card--store .pc-footer {
  min-height: 3.35rem;
  padding-top: 0.34rem;
}

.shop-index-page .product-card--store .pc-price,
.home-featured-grid .product-card--store .pc-price {
  min-height: 2em;
}

.shop-index-page .product-card--store .pc-price-old,
.home-featured-grid .product-card--store .pc-price-old {
  font-size: 0.68rem;
}

.shop-index-page .product-card--store .pc-price-now,
.home-featured-grid .product-card--store .pc-price-now {
  font-size: 0.86rem;
  line-height: 1.1;
}

.shop-index-page .product-card--store .pc-view-row,
.home-featured-grid .product-card--store .pc-view-row {
  margin-top: 0.32rem;
  padding-top: 0.36rem;
}

.shop-index-page .product-card--store .pc-view-text,
.home-featured-grid .product-card--store .pc-view-text {
  font-size: 0.72rem;
}

.shop-index-page .product-card--store .pc-arrow,
.home-featured-grid .product-card--store .pc-arrow {
  flex-basis: 28px;
  width: 28px;
  height: 28px;
  border-radius: 9px;
}

@media (min-width: 1200px) {
  .shop-product-grid > [class*="col-"],
  .home-featured-grid > [class*="col-"] {
    flex: 0 0 auto;
    width: 20%;
  }
}

@media (min-width: 1500px) {
  .shop-product-grid > [class*="col-"],
  .home-featured-grid > [class*="col-"] {
    width: 16.6667%;
  }
}

@media (max-width: 767.98px) {
  .shop-toolbar-panel {
    align-items: stretch;
    gap: 0.65rem;
  }

  .shop-toolbar-panel__left,
  .shop-toolbar-panel__right,
  .shop-sort-form {
    width: 100%;
    flex-basis: 100%;
  }

  .shop-sort-form {
    justify-content: space-between;
  }

  .shop-toolbar-panel .store-sort-select {
    width: min(100%, 11rem);
  }

  .shop-results-count {
    text-align: left;
  }

  .shop-index-page .product-card--store .pc-media,
  .home-featured-grid .product-card--store .pc-media {
    height: clamp(88px, 26vw, 112px);
    aspect-ratio: auto;
    padding: 0.32rem;
  }

  .shop-index-page .product-card--store .pc-body,
  .home-featured-grid .product-card--store .pc-body {
    min-height: 7.7rem;
    padding: 0.46rem;
  }
}

.home-category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  max-width: 128px;
  min-height: 0;
  padding: 0.35rem 0.25rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #071a33;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  scroll-snap-align: start;
  transition: color .16s ease, transform .16s ease;
}

.home-category-card:hover,
.home-category-card:focus {
  color: #2d6cdf;
  transform: translateY(-2px);
  box-shadow: none;
}

.shop-category-card.is-active {
  color: #2d6cdf;
}

.home-category-card__media {
  display: grid;
  place-items: center;
  width: clamp(76px, 7.5vw, 112px);
  height: clamp(76px, 7.5vw, 112px);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid rgba(7, 26, 51, 0.08);
  background: #ffffff;
  color: #2d6cdf;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(2, 12, 32, 0.06);
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.home-category-card:hover .home-category-card__media,
.home-category-card:focus .home-category-card__media,
.shop-category-card.is-active .home-category-card__media {
  border-color: rgba(45, 108, 223, 0.22);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(2, 12, 32, 0.09);
  transform: translateY(-1px);
}

.home-category-card__media img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.home-category-card__media i {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.home-category-card__body {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.home-category-card__title {
  display: block;
  color: inherit;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  line-height: 1.15;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.home-category-card__count {
  display: block;
  margin-top: 0;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

.home-category-card__arrow {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #f4f7fb;
  color: #3f5de0;
}

.home-slider-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.home-slider-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(22, 32, 51, 0.1);
  border-radius: 999px;
  background: #ffffff;
  color: #162033;
}

.home-section--slate .home-slider-btn,
.home-section--work .home-slider-btn,
.home-section--brands .home-slider-btn {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.home-slider-btn:hover,
.home-slider-btn:focus {
  border-color: rgba(79, 110, 247, 0.35);
  color: #3f5de0;
}

.home-product-slider {
  display: grid;
  grid-auto-flow: column;
  max-width: 100%;
  grid-auto-columns: minmax(168px, 208px);
  gap: clamp(0.6rem, 1.05vw, 0.8rem);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 2px;
  padding: 2px 2px 0.65rem;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.home-product-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(22, 32, 51, 0.08);
  border-radius: 15px;
  background: #ffffff;
  color: #162033;
  text-decoration: none;
  box-shadow: 0 7px 18px rgba(2, 12, 32, 0.052);
  scroll-snap-align: start;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.home-product-card:hover,
.home-product-card:focus {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.18);
  box-shadow: 0 14px 28px rgba(2, 12, 32, 0.08);
}

.home-product-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  min-height: 100px;
  aspect-ratio: 4 / 3;
  padding: 0.46rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(22, 32, 51, 0.06);
}

.home-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .2s ease;
}

.home-product-card:hover .home-product-card__img,
.home-product-card:focus .home-product-card__img {
  transform: scale(1.03);
}

.home-product-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #d14d41;
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 900;
}

.home-product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.52rem;
}

.home-product-card__meta {
  min-height: 0.86rem;
  overflow: hidden;
  color: #6b7890;
  font-size: 0.64rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-product-card__title {
  display: -webkit-box;
  min-height: 2.36em;
  overflow: hidden;
  color: #162033;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.18;
  overflow-wrap: anywhere;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-product-card__price {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: auto;
}

.home-product-card__old {
  color: #8a96aa;
  font-size: 0.64rem;
  font-weight: 800;
  text-decoration: line-through;
}

.home-product-card__now {
  color: #0f2f5f;
  font-size: 0.86rem;
  font-weight: 950;
}

.home-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.home-brand-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  text-decoration: none;
  transition: background-color .16s ease, border-color .16s ease, transform .16s ease;
}

.home-brand-card:hover,
.home-brand-card:focus {
  transform: translateY(-1px);
  border-color: rgba(126, 231, 255, 0.35);
  background: rgba(126, 231, 255, 0.12);
}

.home-brand-card__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #7ee7ff;
  color: #082f49;
  font-size: 0.82rem;
  font-weight: 950;
}

.home-brand-card__body {
  min-width: 0;
}

.home-brand-card__name {
  display: block;
  overflow: hidden;
  color: #ffffff;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-brand-card__count {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  .home-tech-hero::before,
  .home-tech-hero__image,
  .home-btn,
  .home-product-card,
  .home-product-card__img,
  html.reveal-ready [data-reveal] {
    animation: none;
    transition: none;
    transform: none;
  }

  html.reveal-ready [data-reveal] {
    opacity: 1;
  }
}

@media (max-width: 1199.98px) {
  .home-category-grid {
    grid-template-columns: repeat(auto-fit, minmax(96px, 128px));
  }

  .home-brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1300px) {
  .home-tech-hero__title {
    font-size: clamp(2.35rem, 5.2vw, 4.25rem);
  }

  .home-tech-hero__subtitle {
    font-size: clamp(0.98rem, 1.45vw, 1.15rem);
  }
}

@media (max-width: 1100px) {
  .home-tech-hero__grid {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 2.1rem);
    text-align: center;
  }

  .home-tech-hero__content {
    max-width: 760px;
    margin: 0 auto;
  }

  .home-tech-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .home-tech-hero__actions {
    justify-content: center;
  }

  .home-tech-hero__visual {
    justify-self: center;
    width: min(520px, 72%);
    margin: 0 auto;
  }
}

@media (max-width: 991.98px) {
  .home-tech-hero__grid {
    min-height: 0;
  }

  .home-tech-hero__media {
    min-height: 320px;
  }

  .home-hero-slider {
    min-height: 320px;
  }

  .home-hero-slide img {
    max-height: 320px;
  }

  .home-category-grid {
    grid-template-columns: repeat(auto-fit, minmax(96px, 128px));
  }

  .home-brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-tech-hero {
    min-height: auto;
    padding: clamp(1.15rem, 4.5vw, 1.85rem) 0 1rem;
  }

  .home-tech-hero__grid {
    width: 100%;
    gap: 0.65rem;
    text-align: left;
  }

  .home-tech-hero__content {
    margin-inline: 0;
  }

  .home-tech-hero__eyebrow {
    margin-bottom: 0.5rem;
    font-size: clamp(0.7rem, 2.4vw, 0.78rem);
    letter-spacing: 0;
  }

  .home-tech-hero__title {
    font-size: clamp(1.95rem, 8.2vw, 2.75rem);
    line-height: 1.01;
  }

  .home-tech-hero__subtitle {
    max-width: 30rem;
    margin: 0.55rem 0 0;
    font-size: clamp(0.9rem, 3.5vw, 1rem);
  }

  .home-tech-hero__actions {
    justify-content: flex-start;
    gap: 0.55rem;
    margin-top: 0.85rem;
  }

  .home-btn {
    min-height: 41px;
    padding-inline: 0.86rem;
    font-size: 0.86rem;
  }

  .home-tech-hero__visual {
    justify-self: center;
    width: min(76%, 310px);
    aspect-ratio: 16 / 10;
    margin-top: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-tech-hero__image {
    max-height: 178px;
    object-fit: contain;
    object-position: center;
  }

  .home-category-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: clamp(96px, 30vw, 128px);
    justify-content: start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    padding-bottom: 0.65rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .home-category-grid::-webkit-scrollbar {
    display: none;
  }

  .home-category-card {
    min-height: 0;
    padding: 0.2rem 0.1rem;
    border-radius: 0;
    scroll-snap-align: start;
  }

  .home-category-card__media {
    width: clamp(72px, 20vw, 88px);
    height: clamp(72px, 20vw, 88px);
    aspect-ratio: 1 / 1;
  }

  .home-category-card__title {
    font-size: 0.82rem;
  }

  .home-category-card__count {
    font-size: 0.72rem;
  }

  .home-category-card__arrow {
    display: none;
  }

  .home-category-slider-shell {
    gap: 0.35rem;
  }

  .home-category-slider {
    grid-auto-columns: clamp(94px, 31vw, 118px);
    gap: 0.45rem;
    padding-inline: 0.1rem;
    padding-bottom: 0.25rem;
  }

  .home-category-slider-arrow {
    width: 38px;
    height: 38px;
  }

  .home-category-slider-media {
    width: clamp(68px, 20vw, 82px);
    height: clamp(68px, 20vw, 82px);
  }

  .home-category-slider-title {
    margin-top: 0.58rem;
    font-size: 0.82rem;
  }

  .home-category-slider-count {
    font-size: 0.7rem;
  }

  .home-category-slider-progress {
    margin-top: 0.68rem;
    width: min(320px, 74vw);
  }

}

@media (max-width: 575.98px) {
  .store-container {
    padding-inline: 0.82rem;
  }

  .home-hero-search__shell {
    display: grid;
    grid-template-columns: 26px 1fr;
    gap: 6px;
    min-height: 0;
    padding: 10px;
    border-radius: 16px;
  }

  .home-hero-search__icon {
    padding-left: 4px;
  }

  .home-hero-search__button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .home-tech-hero__actions .home-btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .home-tech-hero__media {
    min-height: 250px;
  }

  .home-hero-slider {
    width: min(100%, 360px);
    min-height: 250px;
  }

  .home-hero-slide img {
    max-height: 240px;
  }

  .home-hero-arrow {
    width: 34px;
    height: 34px;
  }

  .home-hero-arrow--prev {
    left: 0;
  }

  .home-hero-arrow--next {
    right: 0;
  }

  .home-hero-dots {
    bottom: 8px;
  }
}

@media (max-width: 430px) {
  .home-tech-hero {
    padding-block: 1rem 0.9rem;
  }

  .home-tech-hero__title {
    font-size: clamp(1.82rem, 8.6vw, 2.16rem);
    line-height: 1.03;
  }

  .home-tech-hero__subtitle {
    font-size: 0.88rem;
  }

  .home-tech-hero__visual {
    width: min(72%, 260px);
  }

  .home-tech-hero__image {
    max-height: 150px;
  }

  .home-category-grid {
    grid-auto-columns: clamp(94px, 34vw, 124px);
  }
}

@media (max-width: 575.98px) {

  .store-main {
    --store-content-gutter: clamp(1rem, 4vw, 1.15rem);
  }

  .home-section {
    padding: 1.25rem 0;
  }

  .home-section__head {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0.8rem;
  }

  .shop-category-showcase__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
  }

  .home-slider-actions {
    justify-content: flex-start;
  }

  .home-brand-grid {
    grid-template-columns: 1fr;
  }

  .home-product-slider {
    grid-auto-columns: minmax(142px, 54%);
    gap: 0.58rem;
    padding-bottom: 0.45rem;
  }

  .home-product-card__media {
    min-height: 92px;
  }

  .home-product-card__body {
    gap: 0.28rem;
    padding: 0.48rem;
  }
}

/* Storefront header polish: scoped final override for the shop chrome only. */
.tech-header {
  z-index: 1060;
  background: #06142f;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 46px rgba(2, 8, 23, 0.22);
}

.tech-header__main {
  padding: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(126, 231, 255, 0.15), transparent 28%),
    linear-gradient(90deg, #06142f 0%, #082552 52%, #06142f 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tech-header__row {
  display: grid;
  grid-template-columns: minmax(210px, 0.62fr) minmax(360px, 640px) minmax(150px, 0.44fr);
  align-items: center;
  gap: 18px;
  min-height: 66px;
}

.tech-header__left,
.tech-header__right {
  display: flex;
  align-items: center;
  min-width: 0;
}

.tech-header__left {
  justify-self: start;
  gap: 10px;
}

.tech-header__right {
  justify-self: end;
  justify-content: flex-end;
  gap: 8px;
}

.tech-header__center {
  justify-self: center;
  width: 100%;
  min-width: 0;
}

.tech-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: #ffffff;
}

.tech-brand__logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
}

.tech-brand__logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(126, 231, 255, 0.18));
}

.tech-brand__name,
.tech-brand__name--neon {
  display: inline-block;
  max-width: 170px;
  overflow: hidden;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 14px rgba(126, 231, 255, 0.32);
}

.tech-header__menu,
.tech-icon-btn,
.tech-account-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
  color: #eff6ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform .16s ease,
    background-color .16s ease,
    border-color .16s ease,
    box-shadow .16s ease;
}

.tech-header__menu:hover,
.tech-header__menu:focus,
.tech-icon-btn:hover,
.tech-icon-btn:focus,
.tech-account-btn:hover,
.tech-account-btn:focus {
  transform: translateY(-1px);
  border-color: rgba(126, 231, 255, 0.38);
  background: rgba(126, 231, 255, 0.14);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 10px 22px rgba(2, 8, 23, 0.2);
}

.tech-icon-btn__badge {
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border: 2px solid #06142f;
  background: #f5c542;
  color: #111827;
  font-size: 0.68rem;
  font-weight: 950;
  line-height: 1;
}

.tech-search {
  width: 100%;
  max-width: 640px;
  position: relative;
}

.tech-search__box {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.tech-search__input {
  width: 100%;
  min-height: 42px;
  height: 42px;
  padding: 0 46px 0 17px;
  border: 1px solid rgba(126, 231, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  font-size: 0.93rem;
  font-weight: 700;
  box-shadow:
    0 14px 30px rgba(2, 8, 23, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

.tech-search__input::placeholder {
  color: #64748b;
  opacity: 1;
}

.tech-search__input:focus {
  border-color: rgba(126, 231, 255, 0.72);
  box-shadow:
    0 0 0 4px rgba(126, 231, 255, 0.16),
    0 14px 30px rgba(2, 8, 23, 0.18) !important;
}

.tech-search__submit {
  position: absolute;
  right: 5px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: #0f2f5f;
  color: #ffffff;
  transform: translateY(-50%);
  transition: background-color .16s ease, transform .16s ease;
}

.tech-search__submit:hover,
.tech-search__submit:focus {
  background: #16457d;
  transform: translateY(-50%) scale(1.03);
}

.tech-search .suggest {
  top: calc(100% + 9px);
  z-index: 1085;
  border-radius: 16px;
  box-shadow: 0 24px 54px rgba(2, 8, 23, 0.22);
}

.tech-subnav {
  background: linear-gradient(90deg, #071f45 0%, #0b2a58 50%, #071f45 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(126, 231, 255, 0.12);
}

.tech-subnav__row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 42px;
}

.tech-subnav__browse {
  min-height: 32px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(126, 231, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 850;
}

.tech-subnav__browse:hover,
.tech-subnav__browse:focus {
  border-color: rgba(126, 231, 255, 0.42);
  background: rgba(126, 231, 255, 0.14);
  color: #ffffff;
}

.tech-subnav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.tech-subnav__link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(239, 246, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.tech-subnav__link:hover,
.tech-subnav__link:focus {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.tech-subnav__cta {
  justify-self: end;
}

.tech-download-btn {
  min-height: 32px;
  padding: 0 13px;
  border-color: rgba(245, 197, 66, 0.55);
  border-radius: 999px;
  background: rgba(245, 197, 66, 0.12);
  color: #fff7d6;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.tech-download-btn:hover,
.tech-download-btn:focus {
  border-color: rgba(245, 197, 66, 0.86);
  background: rgba(245, 197, 66, 0.2);
  color: #ffffff;
}

.tech-account-menu {
  margin-top: 9px !important;
  border-radius: 14px;
}

.shop-category-drawer,
#mobileShopNav.mobile-shop-nav {
  z-index: 1070;
}

.mobile-shop-nav .suggest,
#mobileShopNav .suggest {
  z-index: 1085;
}

html body:has(.offcanvas#mobileShopNav.mobile-shop-nav.show) > .offcanvas-backdrop.show,
html body:has(.offcanvas#shopCategoryDrawer.show) > .offcanvas-backdrop.show {
  z-index: 1065;
}

@media (max-width: 1199.98px) {
  .tech-header__row {
    grid-template-columns: minmax(190px, 0.56fr) minmax(330px, 560px) minmax(138px, 0.34fr);
    gap: 14px;
  }

  .tech-brand__name,
  .tech-brand__name--neon {
    max-width: 145px;
    font-size: 0.88rem;
  }

  .tech-search {
    max-width: 560px;
  }
}

@media (max-width: 991.98px) {
  .tech-header__main {
    padding: 0;
  }

  .tech-header__row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    min-height: 58px;
  }

  .tech-header__left {
    flex: 1 1 auto;
    gap: 8px;
  }

  .tech-header__right {
    flex: 0 0 auto;
    gap: 6px;
  }

  .tech-brand {
    gap: 8px;
  }

  .tech-brand__logo-wrap {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .tech-brand__logo {
    width: 35px;
    height: 35px;
  }

  .tech-brand__name,
  .tech-brand__name--neon {
    max-width: 150px;
    font-size: 0.82rem;
  }

  .tech-header__menu,
  .tech-icon-btn,
  .tech-account-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  #mobileShopNav.mobile-shop-nav,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] {
    background-image:
      radial-gradient(circle at 18% 0%, rgba(126, 231, 255, 0.14), transparent 28%),
      linear-gradient(180deg, #06142f 0%, #082552 46%, #06142f 100%) !important;
  }

  #mobileShopNav.mobile-shop-nav .offcanvas-header,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .offcanvas-header {
    min-height: 58px;
    padding: 13px 16px;
  }

  #mobileShopNav.mobile-shop-nav .offcanvas-body,
  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .offcanvas-body {
    padding: 16px;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .mobile-nav-link {
    min-height: 43px;
    border-radius: 13px;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .nav-search-shell {
    min-height: 44px;
    border-radius: 14px;
  }

  html body .offcanvas#mobileShopNav.mobile-shop-nav[data-mobile-shop-nav] .nav-search-input {
    min-height: 44px;
    font-weight: 700;
  }
}

@media (max-width: 575.98px) {
  .tech-header__row {
    min-height: 54px;
    gap: 8px;
  }

  .tech-brand__logo-wrap {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
  }

  .tech-brand__logo {
    width: 31px;
    height: 31px;
  }

  .tech-brand__name,
  .tech-brand__name--neon {
    max-width: 128px;
    font-size: 0.74rem;
  }

  .tech-header__menu,
  .tech-icon-btn,
  .tech-account-btn {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }
}

@media (max-width: 370px) {
  .tech-brand__name,
  .tech-brand__name--neon {
    max-width: 104px;
    font-size: 0.68rem;
  }
}

/* =========================
   Storefront Responsive Safety
========================= */

.store-page,
.store-main,
.store-container,
.container,
.container-fluid,
.row,
.store-products-panel,
.home-tech-hero,
.home-section,
.home-product-slider,
.home-category-grid {
  max-width: 100%;
}

.row,
[class*="col-"],
.dropdown,
.suggest,
.offcanvas,
.modal-dialog,
.home-tech-hero__grid,
.home-tech-hero__content,
.home-section__head,
.home-slider-actions,
.home-product-card,
.product-card--store,
.pc-body,
.pc-main {
  min-width: 0;
}

.product-card--store .pc-title,
.product-card--store .pc-description,
.home-product-card__meta,
.home-product-card__title {
  overflow-wrap: anywhere;
}

.suggest,
.dropdown-menu,
.tech-account-menu {
  max-width: min(420px, calc(100svw - 1rem));
}

.suggest a,
.suggest__item {
  min-width: 0;
}

.suggest .s-price,
.s-price {
  flex: 0 0 auto;
  white-space: nowrap;
}

#mobileShopNav.mobile-shop-nav,
.shop-category-drawer,
.offcanvas {
  max-width: 100%;
}

#mobileShopNav.mobile-shop-nav {
  --bs-offcanvas-width: min(390px, 88%);
  overflow-x: hidden;
}

#mobileShopNav .offcanvas-body,
.shop-category-drawer .offcanvas-body {
  overflow-x: hidden;
}

@supports not (overflow: clip) {
  html,
  body,
  .store-page,
  .store-main {
    overflow-x: hidden;
  }
}

@media (hover: none) {
  .product-card--store:hover,
  .home-product-card:hover,
  .home-category-card:hover,
  .tech-header__menu:hover,
  .tech-icon-btn:hover,
  .tech-account-btn:hover {
    transform: none;
  }
}

@media (max-width: 430px) {
  .tech-brand__name,
  .tech-brand__name--neon {
    display: none;
  }
}

/* Premium homepage header and hero showroom. */
.store-page:has(.home-tech-hero) .tech-header {
  background: rgba(3, 13, 31, 0.96);
  box-shadow:
    0 1px 0 rgba(126, 231, 255, 0.12),
    0 18px 44px rgba(1, 7, 19, 0.34);
}

.store-page:has(.home-tech-hero) .tech-header__main {
  background:
    linear-gradient(90deg, rgba(126, 231, 255, 0.1), transparent 22%, transparent 78%, rgba(30, 64, 175, 0.14)),
    linear-gradient(90deg, #031024 0%, #071b3d 52%, #031024 100%);
  border-bottom-color: rgba(126, 231, 255, 0.14);
}

.store-page:has(.home-tech-hero) .tech-subnav {
  background:
    linear-gradient(90deg, rgba(126, 231, 255, 0.08), transparent 28%, rgba(59, 130, 246, 0.1)),
    #061733;
  border-bottom-color: rgba(126, 231, 255, 0.18);
}

.home-tech-hero {
  position: relative;
  display: block;
  min-height: 0;
  padding: 3.5rem 0 2.7rem;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  background:
    linear-gradient(rgba(125, 211, 252, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.05) 1px, transparent 1px),
    radial-gradient(ellipse at 58% 45%, rgba(37, 99, 235, 0.28), transparent 44%),
    radial-gradient(ellipse at 50% 100%, rgba(8, 47, 73, 0.78), transparent 52%),
    linear-gradient(135deg, #020817 0%, #071529 38%, #0a1f49 68%, #020817 100%);
  background-size: 76px 76px, 76px 76px, auto, auto, auto;
}

.home-tech-hero::before,
.home-tech-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.home-tech-hero::before {
  background:
    linear-gradient(118deg, transparent 0 18%, rgba(126, 231, 255, 0.14) 18.2%, transparent 19.5% 62%, rgba(59, 130, 246, 0.12) 62.4%, transparent 63.6%),
    linear-gradient(154deg, transparent 0 34%, rgba(255, 255, 255, 0.08) 34.2%, transparent 35.3% 100%);
  opacity: 0.58;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
}

.home-tech-hero::after {
  background:
    radial-gradient(ellipse at 18% 30%, rgba(126, 231, 255, 0.16), transparent 36%),
    radial-gradient(ellipse at 86% 24%, rgba(245, 197, 66, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.04), rgba(2, 8, 23, 0.36));
  mix-blend-mode: screen;
  opacity: 0.9;
}

.home-tech-hero__ambient {
  position: absolute;
  inset: auto -8% -18% -8%;
  z-index: 0;
  height: 46%;
  background:
    radial-gradient(ellipse at center, rgba(14, 165, 233, 0.2), rgba(15, 23, 42, 0.1) 52%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

.home-tech-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
  grid-template-areas:
    "content visual"
    "cards cards";
  align-items: center;
  gap: 1.9rem 3rem;
  width: 100%;
}

.home-tech-hero__content {
  grid-area: content;
  max-width: 590px;
  min-width: 0;
}

.home-tech-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: #7ee7ff;
  font-size: 0.82rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-tech-hero__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, #7ee7ff, transparent);
  box-shadow: 0 0 14px rgba(126, 231, 255, 0.9);
}

.home-tech-hero__title {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-size: 4.9rem;
  line-height: 0.94;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

.home-tech-hero__title span {
  display: block;
  color: #7ee7ff;
  text-shadow:
    0 0 16px rgba(126, 231, 255, 0.42),
    0 16px 42px rgba(37, 99, 235, 0.28);
}

.home-tech-hero__subtitle {
  max-width: 550px;
  margin: 1.1rem 0 0;
  color: rgba(226, 239, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.62;
}

.home-tech-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    transform .18s ease,
    border-color .18s ease,
    background-color .18s ease,
    box-shadow .18s ease;
}

.home-btn--primary {
  background: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%);
  box-shadow:
    0 16px 34px rgba(37, 99, 235, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.home-btn--ghost {
  border-color: rgba(126, 231, 255, 0.28);
  background: rgba(255, 255, 255, 0.075);
  color: #eaf6ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.home-btn:hover,
.home-btn:focus {
  transform: translateY(-2px);
  color: #ffffff;
  border-color: rgba(126, 231, 255, 0.5);
  box-shadow:
    0 18px 34px rgba(2, 8, 23, 0.34),
    0 0 22px rgba(56, 189, 248, 0.18);
}

.home-tech-hero__visual {
  grid-area: visual;
  position: relative;
  justify-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: auto;
  min-height: 560px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-showcase {
  position: relative;
  width: min(100%, 680px);
  min-height: 540px;
  isolation: isolate;
}

.home-showcase::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 51%;
  z-index: 0;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(126, 231, 255, 0.22);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(14, 165, 233, 0.14), transparent 54%),
    conic-gradient(from 126deg, transparent 0 18%, rgba(126, 231, 255, 0.56) 24%, transparent 34% 58%, rgba(59, 130, 246, 0.38) 66%, transparent 76% 100%);
  filter: drop-shadow(0 0 34px rgba(37, 99, 235, 0.24));
  transform: translate(-50%, -50%) rotate(-11deg);
  animation: homeShowcaseRing 16s linear infinite;
}

.home-showcase__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
}

.home-showcase__ring--outer {
  width: 88%;
  aspect-ratio: 1;
  border: 1px solid rgba(126, 231, 255, 0.22);
  box-shadow:
    inset 0 0 42px rgba(56, 189, 248, 0.08),
    0 0 42px rgba(56, 189, 248, 0.12);
  transform: translate(-50%, -50%) rotate(8deg);
}

.home-showcase__ring--inner {
  width: 58%;
  aspect-ratio: 1;
  border: 1px dashed rgba(226, 239, 255, 0.22);
  opacity: 0.78;
  transform: translate(-50%, -50%) rotate(-18deg);
}

.home-showcase__beam {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 231, 255, 0.7), transparent);
  box-shadow: 0 0 18px rgba(126, 231, 255, 0.34);
  pointer-events: none;
}

.home-showcase__beam--one {
  left: 5%;
  top: 25%;
  width: 54%;
  transform: rotate(-19deg);
}

.home-showcase__beam--two {
  right: 2%;
  bottom: 32%;
  width: 42%;
  transform: rotate(16deg);
}

.home-showcase__item {
  position: absolute;
  z-index: 3;
  display: block;
  color: inherit;
  text-decoration: none;
  filter: drop-shadow(0 26px 34px rgba(0, 0, 0, 0.34));
  transition: transform .24s ease, filter .24s ease;
}

.home-showcase__item:hover,
.home-showcase__item:focus {
  filter:
    drop-shadow(0 28px 40px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 18px rgba(126, 231, 255, 0.2));
}

.home-showcase__item--macbook {
  left: 12%;
  top: 25%;
  z-index: 5;
  width: 72%;
  min-height: 260px;
  animation: homeShowcaseFloat 6.8s ease-in-out infinite alternate;
}

.home-showcase__item--macbook:hover,
.home-showcase__item--macbook:focus {
  transform: translateY(-8px) scale(1.012);
}

.home-showcase__item--ipad {
  right: 1%;
  top: 11%;
  z-index: 4;
  width: 28%;
  min-height: 240px;
  transform: rotate(7deg);
  animation: homeShowcaseFloatSmall 7.8s ease-in-out infinite alternate;
}

.home-showcase__item--ipad:hover,
.home-showcase__item--ipad:focus {
  transform: translateY(-8px) rotate(5deg) scale(1.025);
}

.home-showcase__item--rapoo {
  left: 0;
  bottom: 17%;
  z-index: 4;
  width: 36%;
  min-height: 150px;
  transform: rotate(-8deg);
  animation: homeShowcaseFloatDesk 7.2s ease-in-out infinite alternate;
}

.home-showcase__item--rapoo:hover,
.home-showcase__item--rapoo:focus {
  transform: translateY(-7px) rotate(-6deg) scale(1.025);
}

.home-showcase__device {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  overflow: visible;
}

.home-showcase__device--macbook {
  padding: 0.72rem;
  border: 1px solid rgba(226, 239, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(226, 239, 255, 0.17), rgba(2, 8, 23, 0.84) 18% 78%, rgba(126, 231, 255, 0.17)),
    #050b18;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 36px rgba(56, 189, 248, 0.18);
}

.home-showcase__device--macbook::before,
.home-showcase__device--macbook::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
}

.home-showcase__device--macbook::before {
  inset: 0.72rem;
  z-index: 2;
  border-radius: 6px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.14), transparent 24% 100%);
  mix-blend-mode: screen;
}

.home-showcase__device--macbook::after {
  bottom: -28px;
  z-index: -1;
  width: 82%;
  height: 28px;
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(180deg, #d8e6f8 0%, #7188aa 42%, #20314f 100%);
  box-shadow: 0 24px 34px rgba(0, 0, 0, 0.44);
  transform: translateX(-50%) perspective(120px) rotateX(58deg);
}

.home-showcase__device--ipad {
  aspect-ratio: 0.72 / 1;
  padding: 0.46rem;
  border: 1px solid rgba(226, 239, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(226, 239, 255, 0.24), rgba(5, 13, 30, 0.9) 18% 82%, rgba(126, 231, 255, 0.18)),
    #071426;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 30px rgba(59, 130, 246, 0.18);
}

.home-showcase__device--rapoo {
  min-height: 128px;
  padding: 0.54rem;
  border: 1px solid rgba(126, 231, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(7, 23, 51, 0.92), rgba(2, 8, 23, 0.7)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 0 28px rgba(126, 231, 255, 0.13);
}

.home-showcase__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.72));
}

.home-showcase__item--ipad .home-showcase__image {
  max-height: 272px;
}

.home-showcase__item--rapoo .home-showcase__image {
  max-height: 150px;
}

.home-showcase__platform {
  position: absolute;
  left: 50%;
  bottom: 7%;
  z-index: 2;
  width: 72%;
  height: 98px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(126, 231, 255, 0.3), rgba(14, 165, 233, 0.12) 34%, transparent 66%),
    linear-gradient(180deg, rgba(12, 33, 63, 0.86), rgba(2, 8, 23, 0.16));
  filter:
    drop-shadow(0 20px 32px rgba(0, 0, 0, 0.42))
    drop-shadow(0 0 24px rgba(56, 189, 248, 0.16));
  transform: translateX(-50%) perspective(420px) rotateX(64deg);
}

.home-showcase__platform::before {
  content: "";
  position: absolute;
  inset: 14px 11%;
  border-radius: inherit;
  border: 1px solid rgba(126, 231, 255, 0.24);
  background:
    linear-gradient(90deg, transparent, rgba(226, 239, 255, 0.12), transparent);
}

.home-tech-hero__cards {
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.25rem;
}

.home-hero-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  min-height: 130px;
  padding: 0.9rem;
  border: 1px solid rgba(126, 231, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(4, 16, 37, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 34px rgba(2, 8, 23, 0.22);
  color: #ffffff;
  text-decoration: none;
  backdrop-filter: blur(18px);
  transition:
    transform .18s ease,
    border-color .18s ease,
    background-color .18s ease,
    box-shadow .18s ease;
}

.home-hero-card:hover,
.home-hero-card:focus {
  transform: translateY(-3px);
  border-color: rgba(126, 231, 255, 0.44);
  background:
    linear-gradient(145deg, rgba(126, 231, 255, 0.16), rgba(255, 255, 255, 0.07)),
    rgba(4, 16, 37, 0.82);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 20px 38px rgba(2, 8, 23, 0.28),
    0 0 24px rgba(56, 189, 248, 0.12);
}

.home-hero-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(226, 239, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at center, rgba(126, 231, 255, 0.16), rgba(2, 8, 23, 0.24) 64%),
    rgba(255, 255, 255, 0.06);
}

.home-hero-card__media::after {
  content: "";
  position: absolute;
  inset: auto 14% 8px;
  height: 1px;
  background: rgba(126, 231, 255, 0.5);
  box-shadow: 0 0 14px rgba(126, 231, 255, 0.56);
}

.home-hero-card__image {
  position: relative;
  z-index: 1;
  width: 86%;
  height: 86%;
  object-fit: contain;
  object-position: center;
}

.home-hero-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  min-width: 0;
}

.home-hero-card__name {
  display: -webkit-box;
  overflow: hidden;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1.16;
  overflow-wrap: anywhere;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-hero-card__descriptor {
  display: -webkit-box;
  overflow: hidden;
  color: rgba(226, 239, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-hero-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  margin-top: 0.08rem;
  color: #7ee7ff;
  font-size: 0.78rem;
  font-weight: 950;
}

@keyframes homeShowcaseRing {
  from {
    transform: translate(-50%, -50%) rotate(-11deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(349deg);
  }
}

@keyframes homeShowcaseFloat {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 -10px;
  }
}

@keyframes homeShowcaseFloatSmall {
  from {
    translate: 0 0;
  }

  to {
    translate: -3px -12px;
  }
}

@keyframes homeShowcaseFloatDesk {
  from {
    translate: 0 0;
  }

  to {
    translate: 4px -8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-tech-hero__ambient,
  .home-showcase::before,
  .home-showcase__item,
  .home-btn,
  .home-hero-card {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1300px) {
  .home-tech-hero__grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
    gap: 1.65rem 2.25rem;
  }

  .home-tech-hero__title {
    font-size: 4.25rem;
  }

  .home-tech-hero__subtitle {
    font-size: 1.02rem;
  }

  .home-tech-hero__visual {
    min-height: 500px;
  }

  .home-showcase {
    min-height: 500px;
  }
}

@media (max-width: 1100px) {
  .home-tech-hero {
    padding: 2.6rem 0 2.25rem;
  }

  .home-tech-hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "visual"
      "cards";
    gap: 1.4rem;
    text-align: center;
  }

  .home-tech-hero__content {
    max-width: 760px;
    margin: 0 auto;
  }

  .home-tech-hero__eyebrow {
    justify-content: center;
  }

  .home-tech-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .home-tech-hero__actions {
    justify-content: center;
  }

  .home-tech-hero__visual {
    justify-self: center;
    width: min(100%, 720px);
    min-height: 500px;
  }

  .home-showcase {
    width: min(100%, 680px);
    min-height: 500px;
  }
}

@media (max-width: 900px) {
  .home-tech-hero__cards {
    grid-template-columns: 1fr;
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }

  .home-hero-card {
    min-height: 112px;
  }
}

@media (max-width: 768px) {
  .home-tech-hero {
    padding: 1.6rem 0 1.45rem;
  }

  .home-tech-hero__grid {
    text-align: left;
  }

  .home-tech-hero__content {
    margin: 0;
  }

  .home-tech-hero__eyebrow {
    justify-content: flex-start;
    margin-bottom: 0.7rem;
    font-size: 0.76rem;
  }

  .home-tech-hero__eyebrow::before {
    width: 24px;
  }

  .home-tech-hero__title {
    font-size: 3.05rem;
    line-height: 0.96;
  }

  .home-tech-hero__subtitle {
    max-width: 34rem;
    margin: 0.8rem 0 0;
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .home-tech-hero__actions {
    justify-content: flex-start;
    margin-top: 1rem;
  }

  .home-tech-hero__visual {
    min-height: 430px;
  }

  .home-showcase {
    min-height: 430px;
  }

  .home-showcase__item--macbook {
    left: 9%;
    top: 28%;
    width: 77%;
  }

  .home-showcase__item--ipad {
    right: -1%;
    top: 12%;
    width: 29%;
  }

  .home-showcase__item--rapoo {
    left: 0;
    bottom: 17%;
    width: 38%;
  }
}

@media (max-width: 575.98px) {
  .home-tech-hero {
    padding: 1.35rem 0 1.15rem;
  }

  .home-tech-hero__grid {
    gap: 0.95rem;
  }

  .home-tech-hero__title {
    font-size: 2.55rem;
  }

  .home-tech-hero__subtitle {
    font-size: 0.92rem;
  }

  .home-tech-hero__actions {
    gap: 0.55rem;
  }

  .home-tech-hero__actions .home-btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .home-tech-hero__visual {
    min-height: 360px;
  }

  .home-showcase {
    min-height: 360px;
  }

  .home-showcase__item--macbook {
    left: 4%;
    top: 30%;
    width: 86%;
    min-height: 190px;
  }

  .home-showcase__item--ipad {
    right: -3%;
    top: 8%;
    width: 32%;
    min-height: 190px;
  }

  .home-showcase__item--rapoo {
    left: -2%;
    bottom: 13%;
    width: 42%;
    min-height: 120px;
  }

  .home-showcase__device--macbook {
    padding: 0.5rem;
  }

  .home-showcase__device--macbook::before {
    inset: 0.5rem;
  }

  .home-showcase__device--macbook::after {
    bottom: -20px;
    height: 22px;
  }

  .home-showcase__platform {
    bottom: 5%;
    width: 86%;
    height: 72px;
  }

  .home-hero-card {
    grid-template-columns: 62px minmax(0, 1fr);
    min-height: 104px;
    padding: 0.72rem;
  }

  .home-hero-card__media {
    width: 62px;
    height: 62px;
  }

  .home-hero-card__name {
    font-size: 0.88rem;
  }

  .home-hero-card__descriptor {
    font-size: 0.76rem;
  }
}

@media (max-width: 430px) {
  .home-tech-hero__title {
    font-size: 2.18rem;
  }

  .home-tech-hero__subtitle {
    font-size: 0.88rem;
  }

  .home-tech-hero__visual {
    min-height: 318px;
  }

  .home-showcase {
    min-height: 318px;
  }

  .home-showcase__beam {
    display: none;
  }

  .home-showcase__item--macbook {
    left: 2%;
    top: 33%;
    width: 90%;
    min-height: 166px;
  }

  .home-showcase__item--ipad {
    right: -6%;
    top: 9%;
    width: 35%;
    min-height: 162px;
  }

  .home-showcase__item--rapoo {
    left: -4%;
    bottom: 10%;
    width: 46%;
  }
}

/* Premium shop-wide customer frontend pass. */
.store-main {
  background:
    radial-gradient(circle at 8% 0%, rgba(56, 189, 248, 0.08), transparent 28rem),
    radial-gradient(circle at 92% 10%, rgba(37, 99, 235, 0.08), transparent 28rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 36%, #f5f8fc 100%);
}

.home-section--categories {
  --home-section-bg:
    linear-gradient(135deg, #031024 0%, #071a33 52%, #06142f 100%);
  --home-section-detail:
    radial-gradient(circle at 15% 14%, rgba(126, 231, 255, 0.16), transparent 25rem),
    radial-gradient(circle at 88% 26%, rgba(37, 99, 235, 0.2), transparent 27rem),
    linear-gradient(rgba(125, 211, 252, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.04) 1px, transparent 1px);
  --home-section-detail-size: auto, auto, 54px 54px, 54px 54px;
  color: #ffffff;
  border-top: 1px solid rgba(126, 231, 255, 0.16);
  border-bottom: 1px solid rgba(126, 231, 255, 0.1);
}

.home-section--categories .home-section__eyebrow {
  color: #7ee7ff;
}

.home-section--categories .home-section__head h2,
.home-section--categories h2 {
  color: #ffffff;
}

.home-section--categories .home-section__link {
  color: #7ee7ff;
}

.home-section--categories .home-category-slider-item {
  min-height: 158px;
  padding: 0.85rem 0.7rem;
  border: 1px solid rgba(126, 231, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(2, 8, 23, 0.32);
  color: rgba(239, 246, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.home-section--categories .home-category-slider-item:hover,
.home-section--categories .home-category-slider-item:focus-visible,
.home-section--categories .home-category-slider-item.is-active {
  border-color: rgba(126, 231, 255, 0.42);
  background:
    linear-gradient(145deg, rgba(126, 231, 255, 0.16), rgba(255, 255, 255, 0.065)),
    rgba(4, 20, 45, 0.78);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 20px 38px rgba(0, 0, 0, 0.22),
    0 0 28px rgba(56, 189, 248, 0.13);
}

.home-section--categories .home-category-slider-item.is-active {
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.94), rgba(56, 189, 248, 0.7)),
    #0f2f5f;
}

.home-section--categories .home-category-slider-media {
  width: 76px;
  height: 76px;
  border-color: rgba(226, 239, 255, 0.18);
  background: #ffffff;
  color: #1d4ed8;
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(126, 231, 255, 0.1);
}

.home-section--categories .home-category-slider-title {
  color: inherit;
  font-size: 0.88rem;
  font-weight: 900;
}

.home-section--categories .home-category-slider-count {
  color: rgba(226, 239, 255, 0.66);
  font-weight: 750;
}

.home-section--categories .home-category-slider-arrow {
  border-color: rgba(126, 231, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #eaf6ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(0, 0, 0, 0.18);
}

.home-section--categories .home-category-slider-arrow:hover,
.home-section--categories .home-category-slider-arrow:focus {
  border-color: rgba(126, 231, 255, 0.52);
  background: rgba(126, 231, 255, 0.16);
  color: #ffffff;
}

.home-section--categories .home-category-slider-progress {
  background: rgba(226, 239, 255, 0.14);
}

.home-section--deals-zone {
  --home-section-bg:
    linear-gradient(135deg, #070b18 0%, #111b33 48%, #071f45 100%);
  --home-section-detail:
    radial-gradient(circle at 18% 18%, rgba(239, 68, 68, 0.18), transparent 24rem),
    radial-gradient(circle at 82% 18%, rgba(56, 189, 248, 0.18), transparent 27rem),
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 26%, transparent 74%, rgba(56, 189, 248, 0.06));
  color: #ffffff;
}

.home-section--deals-zone .home-section__eyebrow {
  color: #fca5a5;
}

.home-section--deals-zone .home-section__head h2 {
  color: #ffffff;
}

.home-section--deals-zone .home-section__link {
  color: #7ee7ff;
}

.home-section--deals-zone .home-product-slider {
  padding: 0.75rem;
  border: 1px solid rgba(126, 231, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.home-product-card {
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 26px rgba(2, 12, 32, 0.06);
}

.home-product-card:hover,
.home-product-card:focus {
  border-color: rgba(37, 99, 235, 0.36);
  box-shadow:
    0 18px 34px rgba(2, 12, 32, 0.1),
    0 0 22px rgba(56, 189, 248, 0.12);
}

.home-product-card__media {
  min-height: 118px;
  background:
    radial-gradient(circle at 50% 18%, rgba(56, 189, 248, 0.08), transparent 38%),
    #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.home-product-card__img {
  max-height: 110px;
  transition: transform .24s ease;
}

.home-product-card:hover .home-product-card__img,
.home-product-card:focus .home-product-card__img {
  transform: scale(1.035);
}

.home-product-card__body {
  padding: 0.62rem;
}

.home-product-card__meta {
  color: #64748b;
}

.home-product-card__title {
  color: #0f172a;
}

.home-product-card__now {
  color: #0f2f5f;
}

.home-product-card__old {
  color: #ef4444;
}

.home-section--deals-zone .home-product-card {
  border-color: rgba(126, 231, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.98));
}

.home-section--deals-zone .home-product-card__badge,
.pc-badge--deal {
  background: linear-gradient(135deg, #ef4444 0%, #1d4ed8 100%);
  color: #ffffff;
}

.home-section--ice,
.home-section--white,
.home-section--soft-blue {
  border-top: 1px solid rgba(15, 23, 42, 0.035);
}

.home-section--ice .home-section__head,
.home-section--white .home-section__head,
.home-section--soft-blue .home-section__head {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.product-card--store {
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98));
  box-shadow:
    0 12px 26px rgba(2, 12, 32, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.product-card--store:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow:
    0 18px 34px rgba(2, 12, 32, 0.1),
    0 0 24px rgba(56, 189, 248, 0.12);
}

.pc-media {
  height: clamp(104px, 9vw, 142px);
  aspect-ratio: auto;
  padding: 0.58rem;
  background:
    radial-gradient(circle at 50% 12%, rgba(56, 189, 248, 0.08), transparent 38%),
    #ffffff;
}

.pc-img {
  padding: 0.18rem;
}

.pc-body {
  gap: 0.34rem;
  padding: 0.72rem;
}

.pc-meta {
  color: #64748b;
  font-size: 0.66rem;
  letter-spacing: 0;
}

.pc-title {
  min-height: 2.34em;
  max-height: 2.34em;
  color: #0f172a;
  font-size: 0.84rem;
  line-height: 1.17;
  font-weight: 900;
}

.pc-description {
  display: none;
}

.pc-badge {
  padding: 0.32rem 0.48rem;
  border-radius: 999px;
  font-size: 0.62rem;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
}

.pc-badge--stock-in {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.22);
}

.pc-badge--stock-low {
  background: rgba(245, 158, 11, 0.14);
  color: #92400e;
  border: 1px solid rgba(245, 158, 11, 0.24);
}

.pc-badge--stock-out {
  background: rgba(100, 116, 139, 0.12);
  color: #475569;
  border: 1px solid rgba(100, 116, 139, 0.2);
}

.pc-price-old {
  color: #ef4444;
  font-size: 0.68rem;
}

.pc-price-now {
  color: #0f2f5f;
  font-size: 0.94rem;
}

.pc-footer {
  min-height: 3.15rem;
  padding-top: 0.42rem;
}

.pc-view-row {
  border-top-color: rgba(37, 99, 235, 0.1);
}

.pc-view-text {
  color: #1d4ed8;
  font-size: 0.74rem;
  font-weight: 900;
}

.pc-arrow {
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(56, 189, 248, 0.16));
  color: #1d4ed8;
}

.shop-index-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.11), transparent 26rem),
    radial-gradient(circle at 90% 4%, rgba(37, 99, 235, 0.1), transparent 27rem),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.shop-category-showcase {
  padding: clamp(0.95rem, 2vw, 1.3rem);
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.5)),
    rgba(239, 246, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 16px 34px rgba(2, 12, 32, 0.06);
}

.shop-index-page .home-category-slider-item {
  min-height: 145px;
  padding: 0.75rem 0.55rem;
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(2, 12, 32, 0.045);
}

.shop-index-page .home-category-slider-item:hover,
.shop-index-page .home-category-slider-item:focus-visible,
.shop-index-page .home-category-slider-item.is-parent-active {
  border-color: rgba(37, 99, 235, 0.28);
  background: #ffffff;
  box-shadow:
    0 14px 28px rgba(2, 12, 32, 0.075),
    0 0 20px rgba(56, 189, 248, 0.1);
}

.shop-index-page .home-category-slider-item.is-active {
  color: #ffffff;
  border-color: rgba(126, 231, 255, 0.55);
  background: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%);
  box-shadow:
    0 16px 34px rgba(37, 99, 235, 0.2),
    0 0 24px rgba(56, 189, 248, 0.18);
}

.shop-index-page .home-category-slider-item.is-active .home-category-slider-count,
.shop-index-page .home-category-slider-item.is-active .home-category-slider-title {
  color: #ffffff;
}

.shop-toolbar-panel {
  padding: clamp(0.72rem, 1.3vw, 0.95rem);
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.76)),
    rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 30px rgba(2, 12, 32, 0.06);
  backdrop-filter: blur(16px);
}

.shop-toolbar-panel .btn-soft,
.store-filters-drawer .btn-strong,
.store-filters-drawer .btn-soft {
  border-radius: 999px;
}

.shop-toolbar-panel .btn-soft {
  border-color: rgba(37, 99, 235, 0.2);
  background: #071a33;
  color: #ffffff;
}

.shop-toolbar-panel .btn-soft:hover,
.shop-toolbar-panel .btn-soft:focus {
  background: #0f2f5f;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.shop-results-count {
  color: #0f2f5f;
  font-weight: 900;
}

.shop-toolbar-panel .store-sort-select {
  border-color: rgba(37, 99, 235, 0.2);
  color: #071a33;
  font-weight: 850;
}

.shop-active-filters .filter-chip {
  border-color: rgba(37, 99, 235, 0.22);
  background: rgba(239, 246, 255, 0.92);
  color: #1d4ed8;
}

.shop-active-filters .filter-chip:hover,
.shop-active-filters .filter-chip:focus {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.36);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.12);
}

.store-filters-drawer {
  color: #ffffff;
  background:
    radial-gradient(circle at 22% 0%, rgba(126, 231, 255, 0.14), transparent 24rem),
    linear-gradient(180deg, #06142f 0%, #071a33 100%);
  border-right: 1px solid rgba(126, 231, 255, 0.16);
}

.store-filters-drawer .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.store-filters-drawer .btn-close {
  filter: invert(1) grayscale(1);
}

.store-filters-drawer .store-sidepanel__group {
  padding: 0.85rem;
  border: 1px solid rgba(126, 231, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.store-filters-drawer .store-sidepanel__group + .store-sidepanel__group {
  margin-top: 0.85rem;
}

.store-filters-drawer .store-sidepanel__title,
.store-filters-drawer .form-label {
  color: rgba(226, 239, 255, 0.78);
}

.store-filters-drawer .form-select,
.store-filters-drawer .form-control {
  border-color: rgba(126, 231, 255, 0.18);
  background-color: rgba(255, 255, 255, 0.96);
}

.compact-product-page {
  max-width: 1360px;
}

.compact-product-page .compact-product-breadcrumb {
  padding: 0.72rem 0;
  color: #64748b;
  font-weight: 750;
}

.compact-product-main {
  position: relative;
  padding: clamp(0.85rem, 1.7vw, 1.2rem);
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 0%, rgba(56, 189, 248, 0.12), transparent 26rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.72));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 18px 38px rgba(2, 12, 32, 0.07);
}

.product-media-shell {
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(6, 20, 47, 0.95), rgba(15, 47, 95, 0.88));
  box-shadow:
    0 18px 40px rgba(2, 8, 23, 0.16),
    0 0 30px rgba(56, 189, 248, 0.08);
  padding: 0.55rem;
}

.product-media-stage {
  min-height: clamp(340px, 42vw, 520px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 12%, rgba(56, 189, 248, 0.08), transparent 32%),
    #ffffff;
}

.product-media-image {
  max-height: clamp(310px, 38vw, 500px);
}

.product-gallery-thumbs {
  gap: 0.65rem;
}

.product-gallery-thumb {
  border-color: rgba(59, 130, 246, 0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(2, 12, 32, 0.055);
}

.product-gallery-thumb.is-active,
.product-gallery-thumb:hover,
.product-gallery-thumb:focus {
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow:
    0 10px 22px rgba(2, 12, 32, 0.07),
    0 0 0 4px rgba(56, 189, 248, 0.12);
}

.compact-product-info {
  position: sticky;
  top: 124px;
  max-width: none;
  padding: clamp(1rem, 2vw, 1.3rem);
  border: 1px solid rgba(7, 26, 51, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 36px rgba(2, 12, 32, 0.08);
  backdrop-filter: blur(14px);
}

.compact-product-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.compact-brand {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.28rem 0.56rem;
  border: 1px solid rgba(59, 130, 246, 0.18);
  border-radius: 999px;
  background: rgba(239, 246, 255, 0.86);
  color: #1d4ed8;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
}

.compact-product-title {
  color: #071a33;
  font-size: 2.25rem;
  font-weight: 950;
  letter-spacing: 0;
}

.compact-price-wrap {
  padding: 0.95rem;
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 8%, rgba(56, 189, 248, 0.14), transparent 9rem),
    #ffffff;
}

.compact-main-price {
  color: #0f2f5f;
  font-size: 1.9rem;
  font-weight: 950 !important;
}

.compact-vat-note {
  margin-top: 0.18rem;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
}

.compact-option-label,
.compact-mini-label {
  color: #475569;
  font-weight: 900;
}

.compact-tile,
.compact-swatch--labeled {
  border-radius: 8px;
  border-color: rgba(59, 130, 246, 0.16);
  background: #ffffff;
}

.option-btn.is-selected,
.compact-product-page .variant-colour-option.option-btn.is-selected {
  border-color: rgba(37, 99, 235, 0.64) !important;
  box-shadow:
    inset 0 0 0 1px rgba(37, 99, 235, 0.24),
    0 0 0 4px rgba(56, 189, 248, 0.12);
}

.compact-purchase-row {
  grid-template-columns: 96px minmax(0, 1fr);
}

.compact-qty-input {
  height: 48px;
  border-radius: 8px;
  border-color: rgba(59, 130, 246, 0.18);
}

.compact-add-btn {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.25);
}

.compact-add-btn:hover,
.compact-add-btn:focus {
  color: #ffffff;
  box-shadow:
    0 16px 32px rgba(37, 99, 235, 0.32),
    0 0 0 4px rgba(56, 189, 248, 0.13);
}

.compact-product-info .alert-info {
  border-color: rgba(56, 189, 248, 0.22);
  border-radius: 8px;
  background: rgba(239, 246, 255, 0.9);
  color: #0f2f5f;
}

.compact-highlight-specs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.compact-highlight-spec {
  min-width: 0;
  padding: 0.82rem;
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.76));
  box-shadow: 0 12px 26px rgba(2, 12, 32, 0.055);
}

.compact-highlight-spec__label {
  margin-bottom: 0.32rem;
  color: #1d4ed8;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.compact-highlight-spec__value {
  display: -webkit-box;
  overflow: hidden;
  color: #071a33;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.compact-product-detail-panel {
  border-color: rgba(59, 130, 246, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 16px 34px rgba(2, 12, 32, 0.06);
}

.compact-product-links--panel {
  gap: 0.42rem;
  border-bottom-color: rgba(59, 130, 246, 0.12);
}

.compact-product-links--panel .compact-link-btn {
  border-color: rgba(59, 130, 246, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: #0f2f5f;
  font-weight: 950;
}

.compact-product-links--panel .compact-link-btn.is-active {
  border-color: rgba(126, 231, 255, 0.5);
  background: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%);
  color: #ffffff;
  box-shadow:
    0 12px 24px rgba(37, 99, 235, 0.18),
    0 0 20px rgba(56, 189, 248, 0.16);
}

.compact-spec-box,
.compact-rich-box {
  border-color: rgba(59, 130, 246, 0.14);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(2, 12, 32, 0.045);
}

.compact-spec-label {
  color: #1d4ed8;
  font-weight: 950;
}

.compact-product-detail-panel .compact-spec-table th {
  background: #eff6ff;
  color: #0f2f5f;
}

.compact-product-detail-panel .compact-spec-table td {
  color: #0f172a;
}

.mini-related-slider {
  border-color: rgba(126, 231, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(126, 231, 255, 0.14), transparent 24rem),
    linear-gradient(135deg, #06142f 0%, #071a33 100%);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(2, 8, 23, 0.18);
}

.mini-related-slider__title {
  color: #ffffff;
}

.mini-related-slider__subtext {
  color: rgba(226, 239, 255, 0.7);
}

.mini-related-product {
  border-color: rgba(126, 231, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
}

.mini-related-product__media {
  background: #ffffff;
}

.mini-related-product__btn {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%);
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(126, 231, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 88% 10%, rgba(37, 99, 235, 0.18), transparent 30rem),
    linear-gradient(135deg, #031024 0%, #071a33 54%, #020817 100%);
  border-top-color: rgba(126, 231, 255, 0.14);
}

.footer-brand::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  margin-right: 0.65rem;
  vertical-align: middle;
  background: linear-gradient(90deg, #7ee7ff, transparent);
  box-shadow: 0 0 16px rgba(126, 231, 255, 0.8);
}

.footer-track-card,
.footer-collection-card {
  border-radius: 8px;
}

.footer-email-btn,
.footer-pill {
  border-color: rgba(126, 231, 255, 0.16);
}

@media (max-width: 1199.98px) {
  .compact-highlight-specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .compact-product-info {
    position: static;
    margin-top: 0.25rem;
  }

  .compact-highlight-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .home-section--categories .home-category-slider-shell,
  .shop-category-showcase .home-category-slider-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-section--categories .home-category-slider-arrow,
  .shop-category-showcase .home-category-slider-arrow {
    display: none;
  }

  .home-section--categories .home-category-slider,
  .shop-category-showcase .home-category-slider {
    grid-auto-columns: clamp(120px, 38vw, 154px);
  }

  .shop-toolbar-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .shop-sort-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .shop-toolbar-panel .store-sort-select {
    width: 100%;
  }

  .shop-results-count {
    text-align: left;
    white-space: normal;
  }

  .pc-media {
    height: clamp(92px, 28vw, 118px);
  }
}

@media (max-width: 575.98px) {
  .home-section {
    padding-block: 1.35rem;
  }

  .home-section--categories .home-category-slider-item,
  .shop-index-page .home-category-slider-item {
    min-height: 140px;
    padding: 0.7rem 0.54rem;
  }

  .product-card--store {
    border-radius: 8px;
  }

  .pc-body {
    padding: 0.58rem;
  }

  .pc-title {
    font-size: 0.78rem;
  }

  .pc-price-now {
    font-size: 0.84rem;
  }

  .pc-view-text {
    font-size: 0.68rem;
  }

  .compact-product-main {
    padding: 0.62rem;
  }

  .product-media-shell,
  .product-media-stage,
  .compact-product-info,
  .compact-product-detail-panel,
  .compact-highlight-spec,
  .mini-related-slider {
    border-radius: 8px;
  }

  .product-media-stage {
    min-height: 250px;
  }

  .compact-product-title {
    font-size: 1.45rem;
  }

  .compact-purchase-row,
  .compact-highlight-specs {
    grid-template-columns: 1fr;
  }

  .compact-product-links--panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .compact-product-links--panel .compact-link-btn {
    min-width: 0;
  }

  .footer-brand::before {
    display: block;
    margin: 0 0 0.7rem;
  }
}

/* Premium dark-tech refinement pass: cleaner hero, slimmer chrome, minimal stock badges. */
.tech-header {
  background: rgba(3, 13, 31, 0.88);
  border-bottom: 1px solid rgba(126, 231, 255, 0.12);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05), 0 16px 38px rgba(1, 7, 19, 0.22);
  backdrop-filter: blur(18px);
}

.tech-header__main,
.store-page:has(.home-tech-hero) .tech-header__main {
  background:
    linear-gradient(90deg, rgba(126, 231, 255, 0.075), transparent 26%, transparent 72%, rgba(37, 99, 235, 0.11)),
    rgba(3, 13, 31, 0.82);
  border-bottom: 1px solid rgba(126, 231, 255, 0.1);
}

.tech-header__row {
  min-height: 58px;
  grid-template-columns: minmax(190px, 0.58fr) minmax(320px, 590px) minmax(132px, 0.34fr);
  gap: 14px;
}

.tech-brand__logo-wrap {
  flex-basis: 42px;
  width: 42px;
  height: 42px;
}

.tech-brand__logo {
  width: 36px;
  height: 36px;
}

.tech-brand__name,
.tech-brand__name--neon {
  font-size: 0.84rem;
  letter-spacing: 0;
}

.tech-search {
  max-width: 590px;
}

.tech-search__input {
  min-height: 38px;
  height: 38px;
  padding-right: 42px;
  border-color: rgba(126, 231, 255, 0.22);
  background: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 10px 24px rgba(2, 8, 23, 0.12) !important;
}

.tech-search__input:focus {
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(126, 231, 255, 0.14), 0 12px 26px rgba(2, 8, 23, 0.16) !important;
}

.tech-search__submit {
  right: 4px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #0f2f5f, #1d4ed8);
  font-size: 0.86rem;
}

.tech-header__menu,
.tech-icon-btn,
.tech-account-btn {
  width: 35px;
  height: 35px;
  border-radius: 999px;
  border-color: rgba(126, 231, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(239, 246, 255, 0.88);
  font-size: 0.9rem;
}

.tech-header__menu:hover,
.tech-header__menu:focus,
.tech-icon-btn:hover,
.tech-icon-btn:focus,
.tech-account-btn:hover,
.tech-account-btn:focus {
  border-color: rgba(126, 231, 255, 0.42);
  background: rgba(126, 231, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(126, 231, 255, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tech-icon-btn__badge {
  top: -4px;
  right: -4px;
  min-width: 17px;
  height: 17px;
  border-width: 2px;
  font-size: 0.64rem;
}

.tech-subnav,
.store-page:has(.home-tech-hero) .tech-subnav {
  background: rgba(4, 18, 43, 0.84);
  border-bottom: 1px solid rgba(126, 231, 255, 0.1);
  backdrop-filter: blur(16px);
}

.tech-subnav__row {
  min-height: 36px;
  gap: 12px;
}

.tech-subnav__browse {
  min-height: 28px;
  height: 28px;
  padding: 0 11px;
  border-color: rgba(126, 231, 255, 0.24);
  background: rgba(126, 231, 255, 0.08);
  font-size: 0.8rem;
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.08);
}

.tech-subnav__link {
  min-height: 28px;
  padding: 0 10px;
  font-size: 0.8rem;
}

.home-tech-hero {
  padding: 3.25rem 0 2.35rem;
}

.home-tech-hero__grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  grid-template-areas: "content visual";
  gap: 2.2rem 3.4rem;
}

.home-tech-hero__content {
  max-width: 560px;
}

.home-tech-hero__eyebrow {
  margin-bottom: 0.9rem;
}

.home-tech-hero__title {
  font-size: 4.65rem;
  line-height: 0.93;
}

.home-tech-hero__title span {
  display: block;
  color: #ffffff;
}

.home-tech-hero__title .home-tech-hero__title-accent {
  color: #7ee7ff;
}

.home-tech-hero__subtitle {
  max-width: 530px;
  margin-top: 1.05rem;
}

.home-tech-hero__actions,
.home-tech-hero__cards,
.home-hero-card {
  display: none !important;
}

.home-tech-hero__visual {
  min-height: 500px;
}

.home-showcase--single {
  width: min(100%, 730px);
  min-height: 500px;
}

.home-showcase--single::before {
  width: 72%;
  opacity: 0.74;
}

.home-showcase--single .home-showcase__ring--outer {
  width: 82%;
}

.home-showcase--single .home-showcase__ring--inner {
  width: 54%;
}

.home-showcase__asset-wrap {
  position: absolute;
  inset: 9% 1% 8%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.home-showcase__asset {
  display: block;
  width: min(100%, 690px);
  max-height: 430px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.22));
}

.home-showcase__item,
.home-showcase__device,
.home-showcase__image {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-showcase__device--macbook::before,
.home-showcase__device--macbook::after {
  display: none;
}

.home-showcase--single .home-showcase__platform {
  bottom: 8%;
  width: 66%;
  height: 68px;
  opacity: 0.72;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.24)) drop-shadow(0 0 18px rgba(56, 189, 248, 0.12));
}

.home-section__head h2 {
  letter-spacing: 0;
}

.home-product-card,
.product-card--store,
.mini-related-product {
  border-color: rgba(59, 130, 246, 0.14);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(2, 12, 32, 0.05);
}

.home-product-card:hover,
.home-product-card:focus,
.product-card--store:hover,
.mini-related-product:hover {
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow: 0 15px 30px rgba(2, 12, 32, 0.09), 0 0 20px rgba(56, 189, 248, 0.1);
}

.home-product-card__media {
  min-height: 108px;
}

.home-product-card__img {
  max-height: 104px;
}

.home-product-card__body {
  gap: 0.32rem;
  padding: 0.6rem;
}

.home-product-card__title {
  -webkit-line-clamp: 2;
}

.pc-media {
  height: 126px;
  padding: 0.5rem;
}

.pc-body {
  padding: 0.62rem;
}

.pc-title {
  min-height: 2.28em;
  max-height: 2.28em;
  font-size: 0.82rem;
}

.pc-key-options {
  margin-top: 0.1rem;
}

.pc-badges {
  top: 0.55rem;
  left: 0.55rem;
  right: 0.55rem;
  gap: 0.42rem;
}

.pc-badge--deal,
.home-product-card__badge {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4444 0%, #1d4ed8 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.16);
}

.stock-badge {
  display: inline-flex !important;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 6px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #16a34a;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
  white-space: nowrap;
}

.stock-badge::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.45);
}

.stock-badge--low {
  padding: 4px 8px;
  border: 1px solid rgba(245, 158, 11, 0.16);
  background: rgba(245, 158, 11, 0.08);
  color: #d97706;
}

.stock-badge--low::before {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.45);
}

.stock-badge--out {
  padding: 4px 8px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(148, 163, 184, 0.09);
  color: #64748b;
}

.stock-badge--out::before {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.28);
}

.pc-stock-badge {
  margin-top: 0.12rem;
}

.home-stock-badge {
  margin-top: 0.02rem;
}

.compact-variant-stock {
  margin-top: 0.45rem !important;
}

.pc-badge--stock-in,
.pc-badge--stock-low,
.pc-badge--stock-out {
  box-shadow: none;
}

.shop-category-showcase,
.shop-toolbar-panel {
  margin-bottom: 1rem;
}

.shop-toolbar-panel {
  align-items: center;
}

.shop-results-count {
  font-size: 0.84rem;
}

@media (max-width: 1199.98px) {
  .home-tech-hero__grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(390px, 1.18fr);
    gap: 1.9rem 2.4rem;
  }

  .home-tech-hero__title {
    font-size: 4rem;
  }

  .home-tech-hero__visual,
  .home-showcase--single {
    min-height: 445px;
  }
}

@media (max-width: 991.98px) {
  .home-tech-hero {
    padding: 2.15rem 0 1.75rem;
  }

  .home-tech-hero__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "visual";
    gap: 1.15rem;
    text-align: center;
  }

  .home-tech-hero__content {
    max-width: 720px;
    margin: 0 auto;
  }

  .home-tech-hero__eyebrow {
    justify-content: center;
  }

  .home-tech-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .home-tech-hero__visual,
  .home-showcase--single {
    min-height: 360px;
  }

  .home-showcase__asset {
    max-height: 330px;
  }
}

@media (max-width: 767.98px) {
  .home-tech-hero {
    padding: 1.55rem 0 1.25rem;
  }

  .home-tech-hero__grid {
    text-align: left;
  }

  .home-tech-hero__content {
    margin: 0;
  }

  .home-tech-hero__eyebrow {
    justify-content: flex-start;
  }

  .home-tech-hero__title {
    font-size: 3rem;
  }

  .home-tech-hero__subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .home-tech-hero__visual,
  .home-showcase--single {
    min-height: 300px;
  }

  .home-showcase__asset-wrap {
    inset: 4% -3% 5%;
  }

  .home-showcase__asset {
    max-height: 280px;
  }

  .pc-media {
    height: 108px;
  }
}

@media (max-width: 575.98px) {
  .tech-header__row {
    min-height: 52px;
  }

  .home-tech-hero__title {
    font-size: 2.34rem;
  }

  .home-tech-hero__subtitle {
    font-size: 0.9rem;
  }

  .home-tech-hero__visual,
  .home-showcase--single {
    min-height: 238px;
  }

  .home-showcase--single::before {
    width: 86%;
  }

  .home-showcase__asset {
    max-height: 222px;
    filter: drop-shadow(0 14px 16px rgba(0, 0, 0, 0.2));
  }

  .home-showcase--single .home-showcase__platform {
    width: 76%;
    height: 46px;
  }

  .home-product-card__media {
    min-height: 92px;
  }

  .pc-media {
    height: 96px;
  }

  .stock-badge {
    font-size: 0.68rem;
  }
}

/* Guided showroom homepage layout. */
.home-section--guided {
  --home-section-bg:
    radial-gradient(circle at 10% 0%, rgba(126, 231, 255, 0.14), transparent 24rem),
    radial-gradient(circle at 88% 10%, rgba(37, 99, 235, 0.18), transparent 28rem),
    linear-gradient(135deg, #031024 0%, #071a33 54%, #06142f 100%);
  --home-section-detail:
    linear-gradient(rgba(125, 211, 252, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.032) 1px, transparent 1px);
  --home-section-detail-size: 54px 54px, 54px 54px;
  color: #ffffff;
  border-top: 1px solid rgba(126, 231, 255, 0.14);
  border-bottom: 1px solid rgba(126, 231, 255, 0.12);
}

.home-section--guided .home-section__eyebrow,
.home-section--discovery .home-section__eyebrow {
  color: #7ee7ff;
}

.home-section--guided .home-section__head h2,
.home-section--guided .home-section__link {
  color: #ffffff;
}

.home-section__head--guided {
  border-bottom: 1px solid rgba(226, 239, 255, 0.12);
}

.home-need-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.home-need-card {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 0.9rem;
  min-width: 0;
  min-height: 168px;
  padding: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(126, 231, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04)),
    rgba(2, 8, 23, 0.28);
  color: #ffffff;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 14px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.home-need-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -34% 34%;
  height: 72%;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.2), transparent 68%);
  opacity: 0;
  transition: opacity .18s ease;
}

.home-need-card:hover,
.home-need-card:focus {
  transform: translateY(-3px);
  border-color: rgba(126, 231, 255, 0.42);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 0 24px rgba(56, 189, 248, 0.12);
}

.home-need-card:hover::after,
.home-need-card:focus::after {
  opacity: 1;
}

.home-need-card__media {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  overflow: hidden;
  border: 1px solid rgba(226, 239, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.home-need-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.55rem;
  background: #ffffff;
}

.home-need-card__media i {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(3, 16, 36, 0.74);
  color: #7ee7ff;
  font-size: 1.24rem;
  box-shadow: 0 0 22px rgba(126, 231, 255, 0.18);
}

.home-need-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-need-card__title {
  color: #ffffff;
  font-size: 1.04rem;
  font-weight: 950;
  line-height: 1.15;
}

.home-need-card__description {
  display: -webkit-box;
  margin-top: 0.42rem;
  overflow: hidden;
  color: rgba(226, 239, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.42;
  overflow-wrap: anywhere;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.home-need-card__cta,
.home-discovery-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  margin-top: auto;
  padding-top: 0.75rem;
  color: #7ee7ff;
  font-size: 0.82rem;
  font-weight: 950;
}

.home-section--featured-row .home-product-slider {
  grid-auto-columns: minmax(172px, 210px);
}

.home-section--popular-strip {
  --home-section-bg: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
}

.home-popular-strip {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.1rem 0 0.35rem;
  scrollbar-width: thin;
}

.home-popular-chip {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.46rem;
  min-height: 42px;
  padding: 0 0.82rem;
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #0f2f5f;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 9px 20px rgba(2, 12, 32, 0.045);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.home-popular-chip i {
  color: #1d4ed8;
}

.home-popular-chip:hover,
.home-popular-chip:focus {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.34);
  background: #ffffff;
  color: #0f2f5f;
  box-shadow: 0 14px 28px rgba(2, 12, 32, 0.075), 0 0 18px rgba(56, 189, 248, 0.1);
}

.home-section--discovery {
  --home-section-bg:
    radial-gradient(circle at 12% 0%, rgba(56, 189, 248, 0.1), transparent 24rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.home-discovery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.home-discovery-card {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 0.8rem;
  min-height: 190px;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: #0f172a;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(2, 12, 32, 0.055);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.home-discovery-card::after {
  content: "";
  position: absolute;
  inset: auto -16% -38% 22%;
  height: 78%;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.17), transparent 68%);
}

.home-discovery-card--blue,
.home-discovery-card--navy {
  border-color: rgba(126, 231, 255, 0.14);
  background:
    radial-gradient(circle at 84% 10%, rgba(126, 231, 255, 0.14), transparent 18rem),
    linear-gradient(135deg, #06142f 0%, #071a33 100%);
  color: #ffffff;
}

.home-discovery-card--ice {
  background:
    radial-gradient(circle at 86% 14%, rgba(56, 189, 248, 0.12), transparent 14rem),
    linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
}

.home-discovery-card:hover,
.home-discovery-card:focus {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.34);
  color: inherit;
  box-shadow: 0 18px 34px rgba(2, 12, 32, 0.1), 0 0 20px rgba(56, 189, 248, 0.12);
}

.home-discovery-card--blue:hover,
.home-discovery-card--blue:focus,
.home-discovery-card--navy:hover,
.home-discovery-card--navy:focus {
  color: #ffffff;
}

.home-discovery-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: 8px;
  background: rgba(239, 246, 255, 0.86);
  color: #1d4ed8;
  font-size: 1.15rem;
}

.home-discovery-card--blue .home-discovery-card__icon,
.home-discovery-card--navy .home-discovery-card__icon {
  border-color: rgba(126, 231, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #7ee7ff;
}

.home-discovery-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-discovery-card__eyebrow {
  color: #1d4ed8;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.home-discovery-card--blue .home-discovery-card__eyebrow,
.home-discovery-card--navy .home-discovery-card__eyebrow {
  color: #7ee7ff;
}

.home-discovery-card__title {
  margin-top: 0.28rem;
  color: inherit;
  font-size: 1.16rem;
  font-weight: 950;
  line-height: 1.1;
}

.home-discovery-card__description {
  margin-top: 0.48rem;
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.46;
}

.home-discovery-card--blue .home-discovery-card__description,
.home-discovery-card--navy .home-discovery-card__description {
  color: rgba(226, 239, 255, 0.72);
}

.home-section--trust {
  padding-block: 1.35rem;
  background:
    radial-gradient(circle at 14% 0%, rgba(126, 231, 255, 0.12), transparent 18rem),
    linear-gradient(135deg, #031024 0%, #071a33 100%);
  color: #ffffff;
}

.home-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.home-trust-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 0.66rem;
  min-width: 0;
  padding: 0.82rem;
  border: 1px solid rgba(126, 231, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-trust-item > i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(126, 231, 255, 0.11);
  color: #7ee7ff;
}

.home-trust-item strong,
.home-trust-item small {
  display: block;
  min-width: 0;
}

.home-trust-item strong {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.15;
}

.home-trust-item small {
  margin-top: 0.18rem;
  color: rgba(226, 239, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 1199.98px) {
  .home-need-grid,
  .home-discovery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .home-need-grid,
  .home-discovery-grid,
  .home-trust-strip {
    grid-template-columns: 1fr;
  }

  .home-need-card {
    grid-template-columns: 82px minmax(0, 1fr);
    min-height: 146px;
  }

  .home-need-card__media {
    width: 82px;
    height: 82px;
  }

  .home-discovery-card {
    min-height: 164px;
  }

  .home-section--featured-row .home-product-slider {
    grid-auto-columns: minmax(146px, 54%);
  }
}

@media (max-width: 480px) {
  .home-need-card,
  .home-discovery-card {
    grid-template-columns: 1fr;
  }

  .home-need-card__media {
    width: 72px;
    height: 72px;
  }

  .home-popular-chip {
    min-height: 38px;
    padding-inline: 0.68rem;
    font-size: 0.78rem;
  }
}

/* Homepage category slider refinement: compact dark-tech tiles. */
.home-section--categories {
  --home-section-bg:
    radial-gradient(circle at 12% 0%, rgba(34, 211, 238, 0.15), transparent 25rem),
    radial-gradient(circle at 88% 18%, rgba(59, 130, 246, 0.16), transparent 28rem),
    linear-gradient(135deg, #10243a 0%, #14324a 45%, #0f1f33 100%);
  --home-section-detail:
    linear-gradient(rgba(125, 211, 252, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.032) 1px, transparent 1px);
  --home-section-detail-size: 54px 54px, 54px 54px;
  padding-block: 2.4rem;
}

.home-section--categories .category-slider-block {
  min-width: 0;
}

.home-section--categories .category-slider-head {
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(226, 239, 255, 0.12);
}

.home-section--categories .category-slider-head h2 {
  color: #ffffff;
}

.home-section--categories .home-section__link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.85rem;
  border: 1px solid rgba(126, 231, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #7ee7ff;
}

.home-section--categories .home-category-slider-shell {
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  gap: 0.65rem;
  align-items: center;
}

.home-section--categories .home-category-slider {
  grid-auto-columns: minmax(132px, 154px);
  gap: 0.66rem;
  padding: 0.18rem 0.05rem 0.38rem;
  scroll-padding-inline: 0.5rem;
}

.home-section--categories .home-category-slider-item {
  min-height: 132px;
  padding: 0.72rem 0.58rem;
  border: 1px solid rgba(126, 231, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.038)),
    rgba(2, 8, 23, 0.34);
  color: rgba(239, 246, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), 0 10px 22px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
}

.home-section--categories .home-category-slider-item:hover,
.home-section--categories .home-category-slider-item:focus-visible,
.home-section--categories .home-category-slider-item.is-parent-active {
  transform: translateY(-2px);
  border-color: rgba(126, 231, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(126, 231, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(4, 20, 45, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 14px 28px rgba(0, 0, 0, 0.18), 0 0 20px rgba(56, 189, 248, 0.1);
}

.home-section--categories .home-category-slider-item.is-active {
  color: #ffffff;
  border-color: rgba(126, 231, 255, 0.6);
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.96), rgba(56, 189, 248, 0.76));
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.22), 0 0 24px rgba(56, 189, 248, 0.18);
}

.home-section--categories .home-category-slider-media {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(226, 239, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: #1d4ed8;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16), 0 0 16px rgba(126, 231, 255, 0.08);
}

.home-section--categories .home-category-slider-media img {
  padding: 0.28rem;
  object-fit: contain;
}

.home-section--categories .home-category-slider-media i {
  font-size: 1.28rem;
}

.home-section--categories .home-category-slider-title {
  display: -webkit-box;
  min-height: 2.32em;
  overflow: hidden;
  color: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.16;
  overflow-wrap: anywhere;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-section--categories .home-category-slider-count {
  display: none;
}

.home-section--categories .home-category-slider-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(126, 231, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(239, 246, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-section--categories .home-category-slider-arrow:hover,
.home-section--categories .home-category-slider-arrow:focus {
  border-color: rgba(126, 231, 255, 0.42);
  background: rgba(126, 231, 255, 0.13);
  color: #ffffff;
  box-shadow: 0 0 0 3px rgba(126, 231, 255, 0.08);
}

.home-section--categories .home-category-slider-arrow:disabled {
  opacity: 0.34;
  box-shadow: none;
}

.home-section--categories .home-category-slider-progress {
  height: 3px;
  margin-top: 0.78rem;
  background: rgba(226, 239, 255, 0.12);
}

.home-section--categories .home-category-slider-progress-bar {
  background: linear-gradient(90deg, #1d4ed8, #7ee7ff);
  box-shadow: 0 0 14px rgba(126, 231, 255, 0.46);
}

@media (max-width: 767.98px) {
  .home-section--categories {
    padding-block: 1.75rem;
  }

  .home-section--categories .category-slider-head {
    gap: 0.75rem;
    align-items: flex-start;
  }

  .home-section--categories .home-category-slider-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-section--categories .home-category-slider-arrow {
    display: none;
  }

  .home-section--categories .home-category-slider {
    grid-auto-columns: minmax(118px, 38%);
    gap: 0.58rem;
    overflow-x: auto;
  }

  .home-section--categories .home-category-slider-item {
    min-height: 120px;
    padding: 0.62rem 0.5rem;
  }

  .home-section--categories .home-category-slider-media {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 430px) {
  .home-section--categories .home-category-slider {
    grid-auto-columns: minmax(108px, 44%);
  }

  .home-section--categories .home-category-slider-title {
    font-size: 0.78rem;
  }
}

/* Homepage product showroom sections: light premium break after the dark header/category area. */
.home-section--featured-products,
.home-section--new-arrivals {
  --home-section-bg:
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
  --home-section-detail:
    linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(120deg, rgba(255, 255, 255, 0.76), transparent 52%);
  --home-section-detail-size: 44px 44px, 44px 44px, auto;
  padding-block: clamp(2.3rem, 4.8vw, 4.25rem);
}

.home-section--new-arrivals {
  --home-section-bg:
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 52%, #edf6ff 100%);
  --home-section-detail:
    linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), transparent 64%);
  --home-section-detail-size: 42px 42px, 42px 42px, auto;
  border-top: 1px solid rgba(37, 99, 235, 0.08);
}

.home-section__head--showroom {
  align-items: flex-end;
  margin-bottom: clamp(1rem, 2vw, 1.55rem);
  padding-bottom: clamp(0.8rem, 1.5vw, 1rem);
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.home-section__head--showroom > div:first-child {
  position: relative;
  max-width: 42rem;
  padding-left: 0.92rem;
}

.home-section__head--showroom > div:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.14rem;
  width: 3px;
  height: calc(100% - 0.25rem);
  border-radius: 999px;
  background: linear-gradient(180deg, #1d4ed8, #7ee7ff);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.34);
}

.home-section__head--showroom .home-section__eyebrow {
  color: #1d4ed8;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.home-section__head--showroom h2 {
  margin-top: 0.18rem;
  color: #071a33;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1;
}

.home-section__subtitle {
  max-width: 34rem;
  margin: 0.48rem 0 0;
  color: #53657c;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 650;
  line-height: 1.5;
}

.home-section--featured-row .home-slider-actions {
  align-items: center;
  gap: 0.48rem;
}

.home-section--featured-row .home-section__link {
  gap: 0.44rem;
  min-height: 38px;
  padding: 0 0.95rem;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #1d4ed8;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}

.home-section--featured-row .home-section__link:hover,
.home-section--featured-row .home-section__link:focus {
  border-color: rgba(37, 99, 235, 0.28);
  background: #ffffff;
  color: #0f3ea8;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.13);
}

.home-section--featured-row .home-slider-btn {
  width: 36px;
  height: 36px;
  border-color: rgba(37, 99, 235, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: #1d4ed8;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.08);
}

.home-section--featured-row .home-slider-btn:hover,
.home-section--featured-row .home-slider-btn:focus {
  border-color: rgba(37, 99, 235, 0.34);
  background: #1d4ed8;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.18);
}

.home-section--featured-row .home-product-slider {
  grid-auto-columns: clamp(190px, 21vw, 238px);
  gap: clamp(0.78rem, 1.4vw, 1rem);
  padding: 0.1rem 0.2rem 0.7rem;
  scroll-padding-inline: 0.25rem;
}

.home-section--featured-row .home-product-card {
  min-height: 0;
  padding: 0.66rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  color: #071a33;
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.home-section--featured-row .home-product-card:hover,
.home-section--featured-row .home-product-card:focus {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow:
    0 22px 60px rgba(37, 99, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.home-section--featured-row .home-product-card__media {
  height: 128px;
  border: 0;
  border-radius: 17px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow:
    inset 0 0 0 1px rgba(37, 99, 235, 0.06),
    inset 0 -18px 32px rgba(37, 99, 235, 0.04);
}

.home-section--featured-row .home-product-card__img {
  width: 100%;
  height: 100%;
  max-height: 106px;
  object-fit: contain;
  padding: 0.5rem;
}

.home-section--featured-row .home-product-card:hover .home-product-card__img,
.home-section--featured-row .home-product-card:focus .home-product-card__img {
  transform: scale(1.035);
}

.home-section--featured-row .home-product-card__body {
  gap: 0.38rem;
  padding: 0.72rem 0.12rem 0.05rem;
}

.home-section--featured-row .home-product-card__meta {
  color: #2563eb;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-section--featured-row .home-product-card__title {
  display: -webkit-box;
  min-height: 2.36em;
  overflow: hidden;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.18;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-section--featured-row .home-stock-badge {
  width: fit-content;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.76rem;
  font-weight: 850;
}

.home-section--featured-row .home-stock-badge.stock-badge--in {
  color: #16a34a;
}

.home-section--featured-row .home-stock-badge.stock-badge--low {
  padding: 0.18rem 0.4rem;
  border: 1px solid rgba(245, 158, 11, 0.16);
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.07);
  color: #d97706;
}

.home-section--featured-row .home-stock-badge.stock-badge--out {
  padding: 0.18rem 0.4rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.08);
  color: #64748b;
}

.home-section--featured-row .home-product-card__price {
  margin-top: auto;
  gap: 0.12rem;
}

.home-section--featured-row .home-product-card__old {
  color: #94a3b8;
  font-size: 0.74rem;
  font-weight: 800;
}

.home-section--featured-row .home-product-card__now {
  color: #071a33;
  font-size: 1.04rem;
  font-weight: 950;
  letter-spacing: 0;
}

.home-section--featured-row .home-product-card__badge {
  top: 0.65rem;
  left: 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(37, 99, 235, 0.18);
}

@media (max-width: 991.98px) {
  .home-section__head--showroom {
    align-items: flex-start;
  }

  .home-section--featured-row .home-product-slider {
    grid-auto-columns: minmax(180px, 31%);
  }
}

@media (max-width: 767.98px) {
  .home-section--featured-products,
  .home-section--new-arrivals {
    padding-block: 2rem;
  }

  .home-section__head--showroom {
    gap: 0.85rem;
  }

  .home-section--featured-row .home-product-slider {
    grid-auto-columns: minmax(148px, 47%);
    gap: 0.65rem;
    padding-bottom: 0.55rem;
  }

  .home-section--featured-row .home-product-card {
    padding: 0.5rem;
    border-radius: 18px;
  }

  .home-section--featured-row .home-product-card__media {
    height: 112px;
    border-radius: 14px;
  }

  .home-section--featured-row .home-product-card__img {
    max-height: 92px;
    padding: 0.38rem;
  }

  .home-section--featured-row .home-product-card__title {
    font-size: 0.82rem;
  }

  .home-section--featured-row .home-product-card__now {
    font-size: 0.94rem;
  }
}

@media (max-width: 400px) {
  .home-section--featured-row .home-product-slider {
    grid-auto-columns: minmax(142px, 72%);
  }
}

/* Compact footer sizing only; preserves the current dark footer layout and content. */
.site-footer .footer-container {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

.site-footer .row.g-4.g-lg-5 {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 1.25rem;
}

.footer-brand {
  font-size: clamp(1.18rem, 1.7vw, 1.5rem);
}

.footer-text {
  max-width: 28rem;
  margin-bottom: 0.75rem !important;
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer-title {
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
}

.footer-link {
  min-height: 30px;
  padding: 0.2rem 0.4rem;
  font-size: 0.84rem;
}

.footer-track-card {
  max-width: 26rem;
  padding: 0.78rem;
  border-radius: 16px;
}

.footer-track-card__head {
  margin-bottom: 0.65rem !important;
}

.footer-track-card__head i {
  width: 30px;
  height: 30px;
  border-radius: 10px;
}

.footer-track-form .mb-2,
.footer-track-form .mb-3 {
  margin-bottom: 0.5rem !important;
}

.footer-track-input,
.footer-track-btn {
  min-height: 38px;
  font-size: 0.85rem;
}

.footer-track-btn {
  padding-inline: 0.82rem;
}

.footer-email-btn {
  min-height: 36px;
  padding: 0.38rem 0.66rem;
  font-size: 0.86rem;
}

.footer-collection-card {
  margin-top: 0.65rem;
  padding: 0.72rem;
  border-radius: 15px;
}

.footer-collection-card__text {
  font-size: 0.8rem;
  line-height: 1.38;
}

.footer-hr {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.footer-bottom {
  gap: 0.75rem !important;
}

.footer-copy {
  font-size: 0.84rem;
}

.footer-pill {
  min-height: 28px;
  padding: 0.22rem 0.5rem;
  font-size: 0.74rem;
}

@media (max-width: 991.98px) {
  .site-footer .footer-container {
    padding-top: 1.75rem;
    padding-bottom: 1.35rem;
  }
}

@media (max-width: 575.98px) {
  .site-footer .footer-container {
    padding-top: 1.5rem;
    padding-bottom: 1.2rem;
  }

  .footer-track-card,
  .footer-collection-card {
    border-radius: 14px;
  }
}

/* Additional homepage sections: curated, useful, and light enough to avoid catalogue clutter. */
.home-section--deals-light {
  --home-section-bg:
    radial-gradient(circle at 11% 12%, rgba(248, 113, 113, 0.12), transparent 25rem),
    radial-gradient(circle at 86% 10%, rgba(56, 189, 248, 0.11), transparent 27rem),
    linear-gradient(180deg, #fffaf7 0%, #f8fbff 52%, #eef6ff 100%);
  --home-section-detail:
    linear-gradient(rgba(248, 113, 113, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.028) 1px, transparent 1px);
  --home-section-detail-size: 44px 44px, 44px 44px;
  border-top: 1px solid rgba(248, 113, 113, 0.12);
}

.home-section--deals-light .home-section__eyebrow {
  color: #dc2626;
}

.home-section--deals-light .home-section__head h2 {
  color: #111827;
}

.home-section--deals-light .home-section__head--showroom > div:first-child::before {
  background: linear-gradient(180deg, #ef4444, #f59e0b 48%, #38bdf8);
  box-shadow: 0 0 16px rgba(248, 113, 113, 0.28);
}

.home-section--deals-light .home-section__link {
  border-color: rgba(248, 113, 113, 0.18);
  color: #b91c1c;
}

.home-section--deals-light .home-section__link:hover,
.home-section--deals-light .home-section__link:focus {
  border-color: rgba(248, 113, 113, 0.36);
  color: #991b1b;
  box-shadow: 0 14px 30px rgba(248, 113, 113, 0.13);
}

.home-section--deals-light .home-slider-btn:hover,
.home-section--deals-light .home-slider-btn:focus {
  border-color: rgba(248, 113, 113, 0.36);
  background: linear-gradient(135deg, #ef4444, #f97316);
}

.home-section--deals-light .home-product-card__badge {
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  box-shadow: 0 10px 18px rgba(239, 68, 68, 0.18);
}

.home-section--deals-light .home-product-card__old {
  color: #dc2626;
}

.home-section--top-categories {
  --home-section-bg:
    radial-gradient(circle at 88% 8%, rgba(56, 189, 248, 0.1), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  --home-section-detail:
    linear-gradient(rgba(37, 99, 235, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.024) 1px, transparent 1px);
  --home-section-detail-size: 46px 46px, 46px 46px;
  padding-block: clamp(2.2rem, 4.6vw, 4rem);
  border-top: 1px solid rgba(37, 99, 235, 0.08);
}

.home-section--top-categories .home-section__link,
.home-section--popular-picks .home-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  min-height: 38px;
  padding: 0 0.95rem;
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #1d4ed8;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}

.home-section--top-categories .home-section__link:hover,
.home-section--top-categories .home-section__link:focus,
.home-section--popular-picks .home-section__link:hover,
.home-section--popular-picks .home-section__link:focus {
  border-color: rgba(37, 99, 235, 0.28);
  background: #ffffff;
  color: #0f3ea8;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.13);
}

.home-top-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1rem);
}

.home-top-category-tile {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.72rem;
  min-height: 94px;
  padding: 0.78rem;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #071a33;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.home-top-category-tile::after {
  content: "";
  position: absolute;
  inset: auto 12% 0;
  height: 2px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.62), transparent);
  opacity: 0;
  transition: opacity .18s ease;
}

.home-top-category-tile:hover,
.home-top-category-tile:focus {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.28);
  background: #ffffff;
  color: #071a33;
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.13);
}

.home-top-category-tile:hover::after,
.home-top-category-tile:focus::after {
  opacity: 1;
}

.home-top-category-tile__media {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 18%, rgba(56, 189, 248, 0.12), transparent 42%),
    linear-gradient(180deg, #ffffff, #eef6ff);
  color: #1d4ed8;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.home-top-category-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.42rem;
}

.home-top-category-tile__media i {
  font-size: 1.34rem;
}

.home-top-category-tile__body {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.home-top-category-tile__title {
  overflow: hidden;
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-top-category-tile__subtitle {
  display: -webkit-box;
  overflow: hidden;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-top-category-tile__arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: #1d4ed8;
  font-size: 1.1rem;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

.home-top-category-tile:hover .home-top-category-tile__arrow,
.home-top-category-tile:focus .home-top-category-tile__arrow {
  transform: translateX(2px);
  background: #1d4ed8;
  color: #ffffff;
}

.home-section--popular-picks {
  --home-section-bg:
    radial-gradient(circle at 10% 12%, rgba(56, 189, 248, 0.12), transparent 27rem),
    radial-gradient(circle at 92% 70%, rgba(29, 78, 216, 0.08), transparent 25rem),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
  --home-section-detail:
    linear-gradient(rgba(37, 99, 235, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.026) 1px, transparent 1px);
  --home-section-detail-size: 48px 48px, 48px 48px;
  border-top: 1px solid rgba(37, 99, 235, 0.08);
}

.home-popular-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1rem);
  align-items: stretch;
}

.home-popular-showcase__item {
  display: flex;
  min-width: 0;
}

.home-popular-showcase__item .home-product-card {
  width: 100%;
}

.home-popular-showcase__item--lead {
  grid-column: span 2;
}

.home-popular-showcase__item--lead .home-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  gap: 0.75rem;
}

.home-popular-showcase__item--lead .home-product-card__media {
  height: clamp(150px, 15vw, 190px);
  min-height: clamp(150px, 15vw, 190px);
}

.home-popular-showcase__item--lead .home-product-card__img {
  max-height: 156px;
}

.home-popular-showcase__item--lead .home-product-card__body {
  padding: 0.8rem 0.2rem 0.2rem;
}

.home-popular-showcase__item--lead .home-product-card__title {
  font-size: 1rem;
}

@media (max-width: 1199.98px) {
  .home-top-category-grid,
  .home-popular-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-popular-showcase__item--lead {
    grid-column: span 3;
  }

  .home-popular-showcase__item--lead .home-product-card__media {
    min-height: 180px;
  }
}

@media (max-width: 767.98px) {
  .home-section--deals-light,
  .home-section--top-categories,
  .home-section--popular-picks {
    padding-block: 2rem;
  }

  .home-top-category-grid,
  .home-popular-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-top-category-tile {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.55rem;
    min-height: 86px;
    padding: 0.62rem;
    border-radius: 17px;
  }

  .home-top-category-tile__media {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .home-top-category-tile__arrow {
    display: none;
  }

  .home-popular-showcase__item--lead {
    grid-column: span 2;
  }

  .home-popular-showcase__item--lead .home-product-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-popular-showcase__item--lead .home-product-card__media {
    height: 132px;
    min-height: 132px;
  }

  .home-popular-showcase__item--lead .home-product-card__img {
    max-height: 108px;
  }
}

@media (max-width: 430px) {
  .home-top-category-grid,
  .home-popular-showcase {
    grid-template-columns: 1fr;
  }

  .home-popular-showcase__item--lead {
    grid-column: span 1;
  }
}

/* Final shared category runway + compact hero sizing. */
.home-tech-hero {
  padding: 2.75rem 0 2rem;
}

.home-tech-hero__grid {
  gap: 1.8rem 3rem;
}

.home-tech-hero__eyebrow {
  margin-bottom: 0.75rem;
}

.home-tech-hero__title {
  font-size: clamp(2.9rem, 5.8vw, 4.15rem);
  line-height: 0.92;
}

.home-tech-hero__subtitle {
  max-width: 500px;
  margin-top: 0.9rem;
  font-size: 1.02rem;
  line-height: 1.54;
}

.home-tech-hero__visual {
  min-height: 425px;
}

.home-showcase--single {
  width: min(100%, 660px);
  min-height: 425px;
}

.home-showcase__asset-wrap {
  inset: 7% 2% 9%;
}

.home-showcase__asset {
  width: min(100%, 625px);
  max-height: 365px;
}

.home-showcase--single .home-showcase__platform {
  height: 58px;
}

.home-section--categories,
.shop-category-showcase {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 9% 0%, rgba(34, 211, 238, 0.14), transparent 30rem),
    radial-gradient(circle at 92% 100%, rgba(37, 99, 235, 0.15), transparent 32rem),
    linear-gradient(135deg, #10283a 0%, #17384f 48%, #102236 100%);
}

.home-section--categories::after,
.shop-category-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(125, 211, 252, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.03) 1px, transparent 1px),
    linear-gradient(120deg, transparent 0 36%, rgba(255, 255, 255, 0.06) 36.5%, transparent 37.6% 100%);
  background-size: 56px 56px, 56px 56px, auto;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 96%);
}

.shop-category-showcase {
  margin-bottom: clamp(0.75rem, 1.6vw, 1.1rem);
  padding: clamp(1.05rem, 2.2vw, 1.45rem);
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 55px rgba(15, 23, 42, 0.13);
}

.home-section--categories .store-container,
.shop-category-showcase > * {
  position: relative;
  z-index: 1;
}

.ct-category-showcase {
  min-width: 0;
}

.ct-category-head {
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: clamp(0.9rem, 1.7vw, 1.2rem);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(226, 239, 255, 0.13);
}

.ct-category-head .home-section__eyebrow {
  color: #7dd3fc;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.ct-category-head h2 {
  color: #ffffff;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.ct-category-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 0.9rem;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: #b9efff;
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ct-category-link:hover,
.ct-category-link:focus {
  border-color: rgba(125, 211, 252, 0.42);
  background: rgba(125, 211, 252, 0.12);
  color: #ffffff;
  box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.08);
}

.ct-category-shell {
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: clamp(0.55rem, 1vw, 0.8rem);
  align-items: center;
}

.ct-category-track {
  grid-auto-columns: minmax(142px, 166px);
  gap: clamp(0.7rem, 1.2vw, 0.95rem);
  padding: 0.2rem 0.1rem 0.42rem;
  scroll-padding-inline: 0.55rem;
}

.ct-category-card {
  min-height: 150px;
  padding: 0.82rem 0.68rem;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.035);
  color: rgba(239, 246, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.ct-category-card:hover,
.ct-category-card:focus-visible,
.ct-category-card.is-parent-active {
  transform: translateY(-4px);
  border-color: rgba(125, 211, 252, 0.48);
  background:
    linear-gradient(145deg, rgba(125, 211, 252, 0.14), rgba(255, 255, 255, 0.07)),
    rgba(8, 47, 73, 0.38);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 24px 60px rgba(14, 165, 233, 0.22);
}

.ct-category-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, 0.72);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.42), rgba(14, 165, 233, 0.26));
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(125, 211, 252, 0.18),
    0 22px 55px rgba(14, 165, 233, 0.28);
}

.ct-category-card__media {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.95), rgba(226, 242, 255, 0.86));
  color: #1d4ed8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 10px 24px rgba(15, 23, 42, 0.18);
}

.ct-category-card:hover .ct-category-card__media,
.ct-category-card:focus-visible .ct-category-card__media,
.ct-category-card.is-active .ct-category-card__media {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 28px rgba(15, 23, 42, 0.22),
    0 0 20px rgba(125, 211, 252, 0.16);
}

.ct-category-card__media img {
  width: 100%;
  height: 100%;
  padding: 0.42rem;
  object-fit: contain;
}

.ct-category-card__media i {
  font-size: 1.45rem;
}

.ct-category-card__title {
  display: -webkit-box;
  min-height: 2.34em;
  overflow: hidden;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.17;
  text-align: center;
  text-shadow: 0 0 0 transparent;
  overflow-wrap: anywhere;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ct-category-card:hover .ct-category-card__title,
.ct-category-card:focus-visible .ct-category-card__title {
  text-shadow: 0 0 14px rgba(125, 211, 252, 0.24);
}

.ct-category-card__count {
  color: rgba(226, 239, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
}

.ct-category-card.is-active .ct-category-card__count,
.ct-category-card.is-active .ct-category-card__title {
  color: #ffffff;
}

.ct-category-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(239, 246, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 12px 24px rgba(0, 0, 0, 0.14);
}

.ct-category-arrow:hover,
.ct-category-arrow:focus {
  border-color: rgba(125, 211, 252, 0.5);
  background: rgba(125, 211, 252, 0.14);
  color: #ffffff;
  box-shadow:
    0 0 0 3px rgba(125, 211, 252, 0.08),
    0 16px 30px rgba(14, 165, 233, 0.16);
}

.ct-category-arrow:disabled,
.ct-category-arrow:disabled:hover,
.ct-category-arrow:disabled:focus {
  opacity: 0.38;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(239, 246, 255, 0.7);
  box-shadow: none;
}

.ct-category-progress {
  width: min(320px, 48%);
  height: 3px;
  margin: 0.9rem auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(226, 239, 255, 0.12);
}

.ct-category-progress__bar {
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.85), rgba(125, 211, 252, 0.9));
  box-shadow: 0 0 12px rgba(125, 211, 252, 0.34);
}

.home-section--categories .ct-category-card__count {
  display: none;
}

.shop-category-showcase .ct-category-head h2,
.shop-category-showcase .ct-category-head .home-section__eyebrow,
.shop-category-showcase .ct-category-link,
.shop-category-showcase .ct-category-card {
  color: rgba(239, 246, 255, 0.9);
}

.shop-category-showcase .ct-category-head h2 {
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .home-tech-hero {
    padding: 2.35rem 0 1.75rem;
  }

  .home-tech-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "content"
      "visual";
    gap: 1.35rem;
  }

  .home-tech-hero__visual {
    min-height: 340px;
  }

  .home-showcase--single {
    min-height: 340px;
  }

  .home-showcase__asset {
    max-height: 300px;
  }
}

@media (max-width: 767.98px) {
  .home-tech-hero {
    padding: 2rem 0 1.45rem;
  }

  .home-tech-hero__title {
    font-size: clamp(2.45rem, 13vw, 3.35rem);
  }

  .home-tech-hero__subtitle {
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .home-tech-hero__visual,
  .home-showcase--single {
    min-height: 285px;
  }

  .home-showcase__asset {
    max-height: 245px;
  }

  .shop-category-showcase {
    padding: 0.95rem;
    border-radius: 18px;
  }

  .ct-category-head {
    align-items: flex-start;
  }

  .ct-category-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .ct-category-arrow {
    display: none;
  }

  .ct-category-track {
    grid-auto-columns: minmax(126px, 40%);
    gap: 0.62rem;
    overflow-x: auto;
  }

  .ct-category-card {
    min-height: 130px;
    padding: 0.66rem 0.52rem;
    border-radius: 18px;
  }

  .ct-category-card__media {
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }

  .ct-category-card__title {
    font-size: 0.8rem;
  }

  .ct-category-progress {
    width: 58%;
    margin-top: 0.72rem;
  }
}

@media (max-width: 430px) {
  .ct-category-track {
    grid-auto-columns: minmax(116px, 45%);
  }

  .home-tech-hero__visual,
  .home-showcase--single {
    min-height: 245px;
  }

  .home-showcase__asset {
    max-height: 212px;
  }
}

/* Specificity bridge for legacy homepage/shop category slider rules. */
.home-section--categories .ct-category-track,
.shop-category-showcase .ct-category-track {
  grid-auto-columns: minmax(142px, 166px);
  gap: clamp(0.7rem, 1.2vw, 0.95rem);
  padding: 0.2rem 0.1rem 0.42rem;
}

.home-section--categories .ct-category-card,
.shop-category-showcase .ct-category-card {
  min-height: 150px;
  padding: 0.82rem 0.68rem;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.035);
  color: rgba(239, 246, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 45px rgba(0, 0, 0, 0.18);
}

.home-section--categories .ct-category-card:hover,
.home-section--categories .ct-category-card:focus-visible,
.home-section--categories .ct-category-card.is-parent-active,
.shop-category-showcase .ct-category-card:hover,
.shop-category-showcase .ct-category-card:focus-visible,
.shop-category-showcase .ct-category-card.is-parent-active {
  transform: translateY(-4px);
  border-color: rgba(125, 211, 252, 0.48);
  background:
    linear-gradient(145deg, rgba(125, 211, 252, 0.14), rgba(255, 255, 255, 0.07)),
    rgba(8, 47, 73, 0.38);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 24px 60px rgba(14, 165, 233, 0.22);
}

.home-section--categories .ct-category-card.is-active,
.shop-category-showcase .ct-category-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, 0.72);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.42), rgba(14, 165, 233, 0.26));
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(125, 211, 252, 0.18),
    0 22px 55px rgba(14, 165, 233, 0.28);
}

.home-section--categories .ct-category-card__media,
.shop-category-showcase .ct-category-card__media {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.95), rgba(226, 242, 255, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 10px 24px rgba(15, 23, 42, 0.18);
}

.home-section--categories .ct-category-card__title,
.shop-category-showcase .ct-category-card__title {
  color: inherit;
  font-size: 0.86rem;
}

.home-section--categories .ct-category-arrow,
.shop-category-showcase .ct-category-arrow {
  width: 36px;
  height: 36px;
  border-color: rgba(125, 211, 252, 0.18);
  background: rgba(255, 255, 255, 0.065);
  color: rgba(239, 246, 255, 0.9);
}

.home-section--categories .ct-category-progress,
.shop-category-showcase .ct-category-progress {
  width: min(320px, 48%);
  height: 3px;
  margin: 0.9rem auto 0;
  background: rgba(226, 239, 255, 0.12);
}

@media (max-width: 767.98px) {
  .home-section--categories .ct-category-track,
  .shop-category-showcase .ct-category-track {
    grid-auto-columns: minmax(126px, 40%);
    gap: 0.62rem;
  }

  .home-section--categories .ct-category-card,
  .shop-category-showcase .ct-category-card {
    min-height: 130px;
    padding: 0.66rem 0.52rem;
    border-radius: 18px;
  }

  .home-section--categories .ct-category-card__media,
  .shop-category-showcase .ct-category-card__media {
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }
}

@media (max-width: 430px) {
  .home-section--categories .ct-category-track,
  .shop-category-showcase .ct-category-track {
    grid-auto-columns: minmax(116px, 45%);
  }
}

/* Homepage hero/header polish: more breathing room, seamless visual asset, refined chrome. */
.store-page:has(.home-tech-hero) .tech-header {
  background:
    linear-gradient(180deg, rgba(5, 16, 38, 0.94), rgba(3, 13, 31, 0.86));
  border-bottom-color: rgba(125, 211, 252, 0.13);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 42px rgba(1, 7, 19, 0.24);
}

.store-page:has(.home-tech-hero) .tech-header__main {
  background:
    radial-gradient(circle at 12% 0%, rgba(125, 211, 252, 0.1), transparent 24rem),
    radial-gradient(circle at 88% 0%, rgba(37, 99, 235, 0.12), transparent 26rem),
    linear-gradient(90deg, rgba(3, 13, 31, 0.92), rgba(7, 27, 61, 0.86) 52%, rgba(3, 13, 31, 0.92));
  border-bottom-color: rgba(125, 211, 252, 0.12);
}

.store-page:has(.home-tech-hero) .tech-header__row {
  min-height: 60px;
  gap: 16px;
}

.store-page:has(.home-tech-hero) .tech-brand {
  gap: 0.7rem;
}

.store-page:has(.home-tech-hero) .tech-brand__logo-wrap {
  flex-basis: 40px;
  width: 40px;
  height: 40px;
  border-color: rgba(125, 211, 252, 0.18);
  background:
    radial-gradient(circle at 38% 22%, rgba(125, 211, 252, 0.18), transparent 48%),
    rgba(255, 255, 255, 0.065);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.14);
}

.store-page:has(.home-tech-hero) .tech-brand__logo {
  width: 34px;
  height: 34px;
}

.store-page:has(.home-tech-hero) .tech-search__input {
  min-height: 39px;
  height: 39px;
  border-color: rgba(125, 211, 252, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 255, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 12px 28px rgba(2, 8, 23, 0.14) !important;
}

.store-page:has(.home-tech-hero) .tech-search__input:focus {
  border-color: rgba(125, 211, 252, 0.52);
  box-shadow:
    0 0 0 3px rgba(125, 211, 252, 0.13),
    0 14px 30px rgba(2, 8, 23, 0.18) !important;
}

.store-page:has(.home-tech-hero) .tech-search__submit {
  background:
    linear-gradient(135deg, #0f3a78 0%, #1d4ed8 48%, #38bdf8 100%);
  box-shadow:
    0 8px 18px rgba(37, 99, 235, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.store-page:has(.home-tech-hero) .tech-header__menu,
.store-page:has(.home-tech-hero) .tech-icon-btn,
.store-page:has(.home-tech-hero) .tech-account-btn {
  width: 34px;
  height: 34px;
  border-color: rgba(125, 211, 252, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.store-page:has(.home-tech-hero) .tech-header__menu:hover,
.store-page:has(.home-tech-hero) .tech-header__menu:focus,
.store-page:has(.home-tech-hero) .tech-icon-btn:hover,
.store-page:has(.home-tech-hero) .tech-icon-btn:focus,
.store-page:has(.home-tech-hero) .tech-account-btn:hover,
.store-page:has(.home-tech-hero) .tech-account-btn:focus {
  border-color: rgba(125, 211, 252, 0.5);
  background: rgba(125, 211, 252, 0.13);
  color: #ffffff;
  box-shadow:
    0 0 0 3px rgba(125, 211, 252, 0.08),
    0 10px 22px rgba(14, 165, 233, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.store-page:has(.home-tech-hero) .tech-subnav {
  background:
    linear-gradient(90deg, rgba(5, 19, 43, 0.92), rgba(8, 30, 64, 0.86), rgba(5, 19, 43, 0.92));
  border-bottom-color: rgba(125, 211, 252, 0.14);
}

.store-page:has(.home-tech-hero) .tech-subnav__browse {
  min-height: 30px;
  padding: 0 12px;
  border-color: rgba(125, 211, 252, 0.3);
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(37, 99, 235, 0.1));
  color: #eaf6ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 18px rgba(56, 189, 248, 0.08);
}

.store-page:has(.home-tech-hero) .tech-subnav__browse:hover,
.store-page:has(.home-tech-hero) .tech-subnav__browse:focus {
  border-color: rgba(125, 211, 252, 0.52);
  background: rgba(125, 211, 252, 0.16);
}

.store-page:has(.home-tech-hero) .tech-subnav__link {
  min-height: 30px;
  border-radius: 999px;
  color: rgba(226, 239, 255, 0.76);
}

.store-page:has(.home-tech-hero) .tech-subnav__link:hover,
.store-page:has(.home-tech-hero) .tech-subnav__link:focus {
  background: rgba(125, 211, 252, 0.1);
  color: #ffffff;
}

.home-tech-hero {
  padding: 3.1rem 0 2.3rem;
}

.home-tech-hero__grid {
  gap: 2rem 3.2rem;
}

.home-tech-hero__title {
  font-size: clamp(3rem, 6vw, 4.35rem);
}

.home-tech-hero__subtitle {
  max-width: 520px;
}

.home-tech-hero__visual {
  min-height: 465px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.home-tech-hero__visual::before {
  left: 50%;
  top: 52%;
  right: auto;
  bottom: auto;
  width: min(540px, 86%);
  height: min(540px, 86%);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(56, 189, 248, 0.18), rgba(37, 99, 235, 0.08) 42%, transparent 68%);
  filter: blur(8px);
  transform: translate(-50%, -50%);
}

.home-showcase,
.home-showcase--single,
.home-showcase__asset-wrap {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.home-showcase--single {
  width: min(100%, 700px);
  min-height: 465px;
}

.home-showcase--single::before {
  width: 78%;
  opacity: 0.56;
  border-color: rgba(125, 211, 252, 0.16);
  background:
    radial-gradient(circle, rgba(14, 165, 233, 0.12), transparent 58%),
    conic-gradient(from 126deg, transparent 0 18%, rgba(126, 231, 255, 0.38) 24%, transparent 34% 58%, rgba(59, 130, 246, 0.26) 66%, transparent 76% 100%);
}

.home-showcase--single .home-showcase__ring--outer {
  opacity: 0.72;
}

.home-showcase--single .home-showcase__ring--inner {
  opacity: 0.48;
}

.home-showcase__asset-wrap {
  inset: 4% -2% 7%;
  filter: none !important;
}

.home-showcase__asset {
  width: min(100%, 675px);
  max-height: 400px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.22));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 66%, rgba(0, 0, 0, 0.82) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 0 66%, rgba(0, 0, 0, 0.82) 78%, transparent 100%);
}

.home-showcase--single .home-showcase__platform {
  bottom: 7%;
  height: 52px;
  opacity: 0.56;
  background:
    radial-gradient(ellipse at center, rgba(56, 189, 248, 0.2), rgba(37, 99, 235, 0.08) 44%, transparent 72%);
  box-shadow: none;
  filter: blur(1px);
}

@media (max-width: 991.98px) {
  .store-page:has(.home-tech-hero) .tech-header__row {
    min-height: 56px;
  }

  .home-tech-hero {
    padding: 2.55rem 0 1.9rem;
  }

  .home-tech-hero__visual,
  .home-showcase--single {
    min-height: 365px;
  }

  .home-showcase__asset {
    max-height: 318px;
  }
}

@media (max-width: 767.98px) {
  .home-tech-hero {
    padding: 2.15rem 0 1.55rem;
  }

  .home-tech-hero__grid {
    gap: 1.2rem;
  }

  .home-tech-hero__visual,
  .home-showcase--single {
    min-height: 300px;
  }

  .home-showcase__asset {
    max-height: 258px;
  }

  .home-showcase__asset-wrap {
    inset: 3% -5% 6%;
  }
}

@media (max-width: 430px) {
  .home-tech-hero {
    padding: 1.85rem 0 1.35rem;
  }

  .home-tech-hero__visual,
  .home-showcase--single {
    min-height: 258px;
  }

  .home-showcase__asset {
    max-height: 220px;
  }
}

/* Homepage hero/header final refinement: seamless logo and hero image treatment. */
.store-page:has(.home-tech-hero) .tech-header {
  background:
    linear-gradient(180deg, rgba(4, 14, 34, 0.96), rgba(3, 13, 31, 0.88));
  border-bottom-color: rgba(125, 211, 252, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.045),
    0 14px 34px rgba(1, 7, 19, 0.2);
}

.store-page:has(.home-tech-hero) .tech-header__main {
  background:
    radial-gradient(circle at 18% 0%, rgba(56, 189, 248, 0.07), transparent 24rem),
    linear-gradient(90deg, rgba(3, 13, 31, 0.92), rgba(6, 24, 52, 0.86) 54%, rgba(3, 13, 31, 0.92));
  border-bottom-color: rgba(125, 211, 252, 0.09);
}

.store-page:has(.home-tech-hero) .tech-header__row {
  min-height: 58px;
  gap: 14px;
}

.store-page:has(.home-tech-hero) .tech-brand {
  gap: 0.58rem;
}

.store-page:has(.home-tech-hero) .tech-brand__logo-wrap {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible;
}

.store-page:has(.home-tech-hero) .tech-brand__logo {
  width: auto;
  height: 42px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 0 12px rgba(125, 211, 252, 0.16));
}

.store-page:has(.home-tech-hero) .tech-search {
  max-width: 500px;
}

.store-page:has(.home-tech-hero) .tech-search__input {
  min-height: 38px;
  height: 38px;
  border-radius: 999px;
  border-color: rgba(125, 211, 252, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(237, 246, 255, 0.9));
  font-size: 0.9rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 10px 24px rgba(2, 8, 23, 0.12) !important;
}

.store-page:has(.home-tech-hero) .tech-search__submit {
  right: 0.28rem;
  width: 31px;
  height: 31px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f3a78 0%, #2563eb 58%, #38bdf8 100%);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

.store-page:has(.home-tech-hero) .tech-header__menu,
.store-page:has(.home-tech-hero) .tech-icon-btn,
.store-page:has(.home-tech-hero) .tech-account-btn {
  width: 33px;
  height: 33px;
  border-radius: 12px;
  border-color: rgba(125, 211, 252, 0.16);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.store-page:has(.home-tech-hero) .tech-header__menu:hover,
.store-page:has(.home-tech-hero) .tech-header__menu:focus,
.store-page:has(.home-tech-hero) .tech-icon-btn:hover,
.store-page:has(.home-tech-hero) .tech-icon-btn:focus,
.store-page:has(.home-tech-hero) .tech-account-btn:hover,
.store-page:has(.home-tech-hero) .tech-account-btn:focus {
  border-color: rgba(125, 211, 252, 0.46);
  background: rgba(125, 211, 252, 0.12);
  box-shadow:
    0 0 0 3px rgba(125, 211, 252, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.store-page:has(.home-tech-hero) .tech-subnav {
  background:
    linear-gradient(90deg, rgba(4, 16, 38, 0.9), rgba(7, 29, 61, 0.82), rgba(4, 16, 38, 0.9));
  border-bottom-color: rgba(125, 211, 252, 0.1);
}

.store-page:has(.home-tech-hero) .tech-subnav__row {
  min-height: 34px;
}

.store-page:has(.home-tech-hero) .tech-subnav__browse {
  min-height: 28px;
  height: 28px;
  border-color: rgba(125, 211, 252, 0.26);
  background: rgba(56, 189, 248, 0.09);
  box-shadow: none;
}

.store-page:has(.home-tech-hero) .tech-subnav__browse:hover,
.store-page:has(.home-tech-hero) .tech-subnav__browse:focus {
  border-color: rgba(125, 211, 252, 0.5);
  background: rgba(56, 189, 248, 0.14);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.12);
}

.home-tech-hero {
  padding: 3.45rem 0 2.65rem;
  background:
    radial-gradient(circle at 72% 42%, rgba(37, 99, 235, 0.24), transparent 34rem),
    radial-gradient(circle at 18% 72%, rgba(14, 165, 233, 0.12), transparent 28rem),
    linear-gradient(rgba(125, 211, 252, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #020817 0%, #071529 42%, #0a1f49 72%, #020817 100%);
  background-size: auto, auto, 84px 84px, 84px 84px, auto;
  background-repeat: no-repeat, no-repeat, repeat, repeat, no-repeat;
}

.home-tech-hero::before {
  background:
    linear-gradient(118deg, transparent 0 17%, rgba(125, 211, 252, 0.11) 18%, transparent 20% 64%, rgba(37, 99, 235, 0.08) 65%, transparent 67%),
    linear-gradient(154deg, transparent 0 34%, rgba(255, 255, 255, 0.055) 35%, transparent 37% 100%);
  opacity: 0.5;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 92%);
}

.home-tech-hero::after {
  background:
    radial-gradient(ellipse at 20% 32%, rgba(56, 189, 248, 0.12), transparent 34%),
    radial-gradient(ellipse at 84% 24%, rgba(37, 99, 235, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.02), rgba(2, 8, 23, 0.28));
  opacity: 0.68;
}

.home-tech-hero__grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: 2.9rem 4rem;
  align-items: center;
}

.home-tech-hero__content {
  max-width: 610px;
}

.home-tech-hero__eyebrow {
  margin-bottom: 1.05rem;
  color: #7dd3fc;
  font-size: 0.82rem;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-tech-hero__title {
  max-width: 10.5ch;
  color: #ffffff;
  font-size: 5.05rem;
  line-height: 0.94;
  font-weight: 950;
  letter-spacing: 0;
  text-wrap: balance;
}

.home-tech-hero__title .home-tech-hero__title-accent {
  color: #7dd3fc;
  text-shadow: 0 0 28px rgba(125, 211, 252, 0.34);
}

.home-tech-hero__subtitle {
  max-width: 640px;
  margin-top: 1.25rem;
  color: rgba(226, 232, 240, 0.86);
  font-size: 1.08rem;
  line-height: 1.68;
  text-wrap: pretty;
}

.home-tech-hero__visual,
.home-showcase,
.home-showcase--single,
.home-showcase__asset-wrap {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.home-tech-hero__visual {
  min-height: 500px;
  overflow: visible;
}

.home-tech-hero__visual::before {
  left: 51%;
  top: 52%;
  right: auto;
  bottom: auto;
  z-index: 0;
  width: min(520px, 74%);
  height: min(520px, 74%);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(56, 189, 248, 0.14), rgba(37, 99, 235, 0.055) 44%, transparent 70%);
  filter: blur(12px);
  opacity: 0.9;
  transform: translate(-50%, -50%);
}

.home-showcase--single {
  width: min(100%, 720px);
  min-height: 500px;
}

.home-showcase::before,
.home-showcase--single::before,
.home-showcase__ring,
.home-showcase__beam,
.home-showcase__platform {
  display: none !important;
}

.home-showcase__asset-wrap {
  inset: 2% -3% 3%;
  z-index: 2;
  filter: none !important;
}

.home-showcase__asset {
  width: min(106%, 720px);
  max-height: 430px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.18));
  -webkit-mask-image: radial-gradient(ellipse 82% 74% at 51% 55%, #000 0 50%, rgba(0, 0, 0, 0.82) 62%, rgba(0, 0, 0, 0.34) 74%, transparent 88%);
  mask-image: radial-gradient(ellipse 82% 74% at 51% 55%, #000 0 50%, rgba(0, 0, 0, 0.82) 62%, rgba(0, 0, 0, 0.34) 74%, transparent 88%);
}

@media (max-width: 1399.98px) {
  .home-tech-hero__title {
    font-size: 4.65rem;
  }
}

@media (max-width: 1199.98px) {
  .home-tech-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    gap: 2.35rem;
  }

  .home-tech-hero__title {
    font-size: 4.1rem;
  }

  .home-tech-hero__subtitle {
    max-width: 580px;
    font-size: 1.02rem;
  }
}

@media (max-width: 991.98px) {
  .store-page:has(.home-tech-hero) .tech-header__row {
    min-height: 54px;
  }

  .store-page:has(.home-tech-hero) .tech-brand__logo {
    height: 38px;
  }

  .home-tech-hero {
    padding: 2.65rem 0 1.95rem;
  }

  .home-tech-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.45rem;
  }

  .home-tech-hero__content {
    max-width: 680px;
  }

  .home-tech-hero__title {
    max-width: 11ch;
    font-size: 3.55rem;
  }

  .home-tech-hero__visual,
  .home-showcase--single {
    min-height: 350px;
  }

  .home-showcase__asset {
    width: min(100%, 620px);
    max-height: 310px;
  }
}

@media (max-width: 767.98px) {
  .store-page:has(.home-tech-hero) .tech-brand__logo {
    height: 34px;
  }

  .store-page:has(.home-tech-hero) .tech-search__input {
    min-height: 36px;
    height: 36px;
    font-size: 0.86rem;
  }

  .store-page:has(.home-tech-hero) .tech-search__submit {
    width: 29px;
    height: 29px;
  }

  .home-tech-hero {
    padding: 2.2rem 0 1.55rem;
  }

  .home-tech-hero__eyebrow {
    margin-bottom: 0.8rem;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .home-tech-hero__title {
    font-size: 2.85rem;
    line-height: 0.96;
  }

  .home-tech-hero__subtitle {
    max-width: 100%;
    margin-top: 0.95rem;
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .home-tech-hero__visual,
  .home-showcase--single {
    min-height: 278px;
  }

  .home-showcase__asset-wrap {
    inset: 0 -8% 2%;
  }

  .home-showcase__asset {
    max-height: 246px;
  }
}

@media (max-width: 430px) {
  .home-tech-hero {
    padding: 1.9rem 0 1.35rem;
  }

  .home-tech-hero__title {
    font-size: 2.45rem;
  }

  .home-tech-hero__visual,
  .home-showcase--single {
    min-height: 235px;
  }

  .home-showcase__asset {
    max-height: 208px;
  }
}

/* Premium shop category runway, product cards, and listing page polish. */
.home-section--categories,
.shop-category-showcase {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 10%, rgba(56, 189, 248, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(37, 99, 235, 0.16), transparent 30rem),
    radial-gradient(ellipse at 50% 100%, rgba(8, 47, 73, 0.58), transparent 54%),
    linear-gradient(135deg, #061326 0%, #0a203a 44%, #07172d 100%) !important;
  color: #ffffff;
}

.home-section--categories::before {
  opacity: 0;
}

.home-section--categories::after,
.shop-category-showcase::after {
  display: none !important;
}

.home-section--categories {
  padding-block: clamp(2rem, 4vw, 3.4rem);
}

.shop-category-showcase {
  margin-bottom: clamp(0.95rem, 1.8vw, 1.35rem);
  padding: clamp(1rem, 2.2vw, 1.55rem);
  border: 1px solid rgba(125, 211, 252, 0.14);
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 58px rgba(2, 8, 23, 0.18);
}

.home-section--categories .store-container,
.shop-category-showcase > * {
  position: relative;
  z-index: 1;
}

.ct-category-head {
  align-items: flex-end;
  margin-bottom: clamp(0.95rem, 1.8vw, 1.3rem);
  padding-bottom: 0;
  border-bottom: 0;
}

.ct-category-head .home-section__eyebrow {
  color: #7dd3fc;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ct-category-head h2 {
  margin-top: 0.24rem;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 950;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.ct-category-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 1rem;
  border: 1px solid rgba(125, 211, 252, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.34), rgba(14, 165, 233, 0.18));
  color: #ffffff !important;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 14px 30px rgba(14, 165, 233, 0.12);
}

.ct-category-link:hover,
.ct-category-link:focus {
  border-color: rgba(125, 211, 252, 0.58);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.48), rgba(14, 165, 233, 0.26));
  color: #ffffff !important;
  box-shadow:
    0 0 0 4px rgba(125, 211, 252, 0.08),
    0 18px 36px rgba(14, 165, 233, 0.16);
}

.ct-category-shell {
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: clamp(0.55rem, 1vw, 0.8rem);
}

.ct-category-track,
.home-section--categories .ct-category-track,
.shop-category-showcase .ct-category-track {
  grid-auto-columns: minmax(140px, 166px);
  gap: clamp(0.72rem, 1.15vw, 0.95rem);
  padding: 0.18rem 0.1rem 0.45rem;
  scroll-padding-inline: 0.55rem;
}

.ct-category-card,
.home-section--categories .ct-category-card,
.shop-category-showcase .ct-category-card,
.shop-index-page .home-category-slider-item {
  min-height: 148px;
  padding: 0.82rem 0.68rem;
  border: 1px solid rgba(125, 211, 252, 0.17);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.042)),
    rgba(255, 255, 255, 0.035);
  color: rgba(239, 246, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.ct-category-card:hover,
.ct-category-card:focus-visible,
.ct-category-card.is-parent-active,
.home-section--categories .ct-category-card:hover,
.home-section--categories .ct-category-card:focus-visible,
.home-section--categories .ct-category-card.is-parent-active,
.shop-category-showcase .ct-category-card:hover,
.shop-category-showcase .ct-category-card:focus-visible,
.shop-category-showcase .ct-category-card.is-parent-active,
.shop-index-page .home-category-slider-item:hover,
.shop-index-page .home-category-slider-item:focus-visible,
.shop-index-page .home-category-slider-item.is-parent-active {
  transform: translateY(-4px);
  border-color: rgba(125, 211, 252, 0.48);
  background:
    linear-gradient(145deg, rgba(125, 211, 252, 0.15), rgba(255, 255, 255, 0.07)),
    rgba(8, 47, 73, 0.32);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 22px 52px rgba(14, 165, 233, 0.2);
}

.ct-category-card.is-active,
.home-section--categories .ct-category-card.is-active,
.shop-category-showcase .ct-category-card.is-active,
.shop-index-page .home-category-slider-item.is-active {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, 0.72);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.48), rgba(14, 165, 233, 0.28));
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(125, 211, 252, 0.18),
    0 22px 55px rgba(14, 165, 233, 0.26);
}

.ct-category-card__media,
.home-section--categories .ct-category-card__media,
.shop-category-showcase .ct-category-card__media {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.98), rgba(232, 244, 255, 0.9) 72%),
    #ffffff;
  color: #1d4ed8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 22px rgba(2, 8, 23, 0.18);
}

.ct-category-card__media img {
  width: 100%;
  height: 100%;
  padding: 0.42rem;
  object-fit: contain;
}

.ct-category-card__title,
.home-section--categories .ct-category-card__title,
.shop-category-showcase .ct-category-card__title {
  display: -webkit-box;
  min-height: 2.32em;
  overflow: hidden;
  color: inherit;
  font-size: 0.85rem;
  font-weight: 950;
  line-height: 1.16;
  text-align: center;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ct-category-card__count {
  color: rgba(226, 239, 255, 0.66);
  font-size: 0.72rem;
  font-weight: 800;
}

.ct-category-arrow,
.home-section--categories .ct-category-arrow,
.shop-category-showcase .ct-category-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(239, 246, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 12px 24px rgba(0, 0, 0, 0.14);
}

.ct-category-arrow:hover,
.ct-category-arrow:focus {
  border-color: rgba(125, 211, 252, 0.52);
  background: rgba(125, 211, 252, 0.15);
  color: #ffffff;
  box-shadow:
    0 0 0 3px rgba(125, 211, 252, 0.08),
    0 16px 30px rgba(14, 165, 233, 0.16);
}

.ct-category-progress,
.home-section--categories .ct-category-progress,
.shop-category-showcase .ct-category-progress {
  width: min(330px, 46%);
  height: 3px;
  margin: 0.9rem auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(226, 239, 255, 0.12);
}

.ct-category-progress__bar {
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.86), rgba(125, 211, 252, 0.94));
  box-shadow: 0 0 12px rgba(125, 211, 252, 0.32);
}

.shop-index-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.1), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(37, 99, 235, 0.08), transparent 30rem),
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 48%, #ffffff 100%);
}

.shop-toolbar-panel {
  align-items: center;
  gap: 0.85rem;
  margin-bottom: clamp(1rem, 1.8vw, 1.35rem);
  padding: clamp(0.78rem, 1.35vw, 1rem);
  border: 1px solid rgba(37, 99, 235, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 255, 0.8));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 34px rgba(15, 23, 42, 0.07);
}

.shop-toolbar-panel .btn-soft {
  min-height: 38px;
  border-radius: 999px;
  border-color: rgba(37, 99, 235, 0.2);
  background: #071a33;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 900;
}

.shop-toolbar-panel .btn-soft:hover,
.shop-toolbar-panel .btn-soft:focus {
  background: #0f2f5f;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.shop-toolbar-panel .store-sort-select {
  min-height: 38px;
  border-color: rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  background-color: #ffffff;
  color: #071a33;
  font-size: 0.84rem;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.045);
}

.shop-results-count {
  color: #0f2f5f;
  font-size: 0.84rem;
  font-weight: 900;
}

.shop-active-filters .filter-chip {
  border-color: rgba(37, 99, 235, 0.2);
  background: rgba(239, 246, 255, 0.94);
  color: #1d4ed8;
}

.store-products-panel {
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36));
}

.home-product-card,
.product-card--store {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  color: #071a33;
  text-decoration: none;
  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.home-product-card:hover,
.home-product-card:focus-within,
.product-card--store:hover,
.product-card--store:focus-within {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow:
    0 22px 58px rgba(37, 99, 235, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.home-product-card__link,
.pc-media,
.pc-title-link,
.pc-details-link {
  color: inherit;
  text-decoration: none;
}

.home-product-card__media,
.pc-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  min-height: 130px;
  margin: 0.62rem 0.62rem 0;
  overflow: hidden;
  border: 0;
  border-radius: 17px;
  background:
    radial-gradient(circle at 50% 0%, rgba(239, 246, 255, 0.95), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow:
    inset 0 0 0 1px rgba(37, 99, 235, 0.055),
    inset 0 -18px 32px rgba(37, 99, 235, 0.04);
}

.home-product-card__img,
.pc-img {
  width: 100%;
  height: 100%;
  max-height: 108px;
  padding: 0.5rem;
  object-fit: contain;
  object-position: center;
  transition: transform .24s ease;
}

.home-product-card:hover .home-product-card__img,
.home-product-card:focus-within .home-product-card__img,
.product-card--store:hover .pc-img,
.product-card--store:focus-within .pc-img {
  transform: scale(1.035);
}

.home-product-card__body,
.pc-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.38rem;
  min-width: 0;
  padding: 0.72rem 0.74rem 0.74rem;
}

.home-product-card__meta,
.pc-meta {
  color: #2563eb;
  font-size: 0.71rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pc-meta {
  display: flex;
  gap: 0.25rem;
}

.home-product-card__title,
.pc-title {
  display: -webkit-box;
  min-height: 2.36em;
  max-height: 2.36em;
  margin: 0;
  overflow: hidden;
  color: #0f172a;
  font-size: 0.88rem;
  font-weight: 920;
  line-height: 1.18;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-product-card__title:hover,
.home-product-card__title:focus,
.pc-title-link:hover .pc-title,
.pc-title-link:focus .pc-title {
  color: #1d4ed8;
}

.pc-description,
.pc-key-options {
  display: none !important;
}

.home-product-card__price,
.pc-price {
  display: grid;
  gap: 0.08rem;
  margin-top: auto;
}

.home-product-card__old,
.pc-price-old {
  min-height: 1em;
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: line-through;
}

.pc-price-old--empty {
  display: none;
}

.home-product-card__now,
.pc-price-now {
  color: #071a33;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.1;
}

.home-product-card__actions,
.pc-view-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.55rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(37, 99, 235, 0.09);
}

.home-product-card__form,
.pc-add-form {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
}

.product-card-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  width: 100%;
  min-height: 34px;
  padding: 0 0.72rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.18);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

.product-card-add-btn:hover,
.product-card-add-btn:focus {
  color: #ffffff;
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow:
    0 14px 26px rgba(37, 99, 235, 0.24),
    0 0 0 4px rgba(56, 189, 248, 0.1);
}

.product-card-add-btn--ghost {
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(239, 246, 255, 0.86);
  color: #1d4ed8;
  box-shadow: none;
}

.product-card-add-btn--ghost:hover,
.product-card-add-btn--ghost:focus {
  color: #1d4ed8;
}

.mini-related-product__btn {
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(37, 99, 235, 0.18);
}

.mini-related-product__btn:hover,
.mini-related-product__btn:focus {
  color: #ffffff;
  box-shadow:
    0 14px 26px rgba(37, 99, 235, 0.24),
    0 0 0 4px rgba(56, 189, 248, 0.1);
}

.mini-related-product__btn--ghost {
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(239, 246, 255, 0.86);
  color: #1d4ed8;
  box-shadow: none;
}

.mini-related-product__btn--ghost:hover,
.mini-related-product__btn--ghost:focus {
  color: #1d4ed8;
}

.pc-details-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.32rem;
  color: #1d4ed8;
  font-size: 0.72rem;
  font-weight: 900;
}

.pc-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.12), rgba(56, 189, 248, 0.16));
  color: #1d4ed8;
}

.home-product-card__badge,
.pc-badge--deal {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #ef4444 0%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 0.66rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.16);
}

.pc-badges {
  top: 0.55rem;
  left: 0.55rem;
  right: 0.55rem;
}

.stock-badge,
.home-stock-badge,
.pc-stock-badge {
  display: inline-flex !important;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 6px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #16a34a;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: none;
  white-space: nowrap;
}

.stock-badge::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.45);
}

.stock-badge--low {
  padding: 4px 8px;
  border: 1px solid rgba(245, 158, 11, 0.16);
  background: rgba(245, 158, 11, 0.08);
  color: #d97706;
}

.stock-badge--low::before {
  background: #f59e0b;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.45);
}

.stock-badge--out {
  padding: 4px 8px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(148, 163, 184, 0.09);
  color: #64748b;
}

.stock-badge--out::before {
  background: #ef4444;
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.26);
}

.shop-product-grid {
  --bs-gutter-x: 0.7rem;
  --bs-gutter-y: 0.7rem;
}

@media (min-width: 1200px) {
  .shop-product-grid > [class*="col-"] {
    flex: 0 0 auto;
    width: 20%;
  }
}

@media (min-width: 1500px) {
  .shop-product-grid > [class*="col-"] {
    width: 16.6667%;
  }
}

@media (max-width: 767.98px) {
  .ct-category-head {
    align-items: flex-start;
  }

  .ct-category-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .ct-category-arrow {
    display: none;
  }

  .ct-category-track,
  .home-section--categories .ct-category-track,
  .shop-category-showcase .ct-category-track {
    grid-auto-columns: minmax(128px, 43%);
    gap: 0.65rem;
    overflow-x: auto;
  }

  .ct-category-card,
  .home-section--categories .ct-category-card,
  .shop-category-showcase .ct-category-card {
    min-height: 128px;
    padding: 0.64rem 0.52rem;
    border-radius: 18px;
  }

  .ct-category-card__media,
  .home-section--categories .ct-category-card__media,
  .shop-category-showcase .ct-category-card__media {
    width: 58px;
    height: 58px;
    border-radius: 15px;
  }

  .shop-toolbar-panel {
    align-items: stretch;
    gap: 0.65rem;
  }

  .shop-toolbar-panel__left,
  .shop-toolbar-panel__right,
  .shop-sort-form {
    width: 100%;
    flex-basis: 100%;
  }

  .shop-sort-form {
    justify-content: space-between;
  }

  .home-product-card__media,
  .pc-media {
    height: 112px;
    min-height: 112px;
    margin: 0.5rem 0.5rem 0;
    border-radius: 14px;
  }

  .home-product-card__img,
  .pc-img {
    max-height: 92px;
    padding: 0.38rem;
  }

  .home-product-card__body,
  .pc-body {
    padding: 0.58rem;
  }

  .home-product-card__title,
  .pc-title {
    font-size: 0.8rem;
  }

  .home-product-card__now,
  .pc-price-now {
    font-size: 0.92rem;
  }

  .product-card-add-btn {
    min-height: 36px;
    padding-inline: 0.56rem;
    font-size: 0.72rem;
  }

  .pc-details-link .pc-view-text {
    display: none;
  }
}

@media (max-width: 400px) {
  .ct-category-track,
  .home-section--categories .ct-category-track,
  .shop-category-showcase .ct-category-track {
    grid-auto-columns: minmax(118px, 46%);
  }
}

.ct-cart-toast-region {
  position: fixed;
  top: clamp(78px, 10vh, 112px);
  right: clamp(12px, 2vw, 24px);
  z-index: 1090;
  display: grid;
  gap: 0.6rem;
  width: min(360px, calc(100vw - 24px));
  pointer-events: none;
}

.ct-cart-toast {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 46px;
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 999px;
  background:
    radial-gradient(circle at 12% 0%, rgba(56, 189, 248, 0.18), transparent 7rem),
    rgba(5, 14, 28, 0.94);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(2, 8, 23, 0.26), 0 0 24px rgba(14, 165, 233, 0.16);
  backdrop-filter: blur(16px);
  pointer-events: auto;
  animation: ctCartToastIn 0.22s ease forwards;
}

.ct-cart-toast.is-leaving {
  animation: ctCartToastOut 0.18s ease forwards;
}

.ct-cart-toast--error {
  border-color: rgba(248, 113, 113, 0.28);
  background:
    radial-gradient(circle at 12% 0%, rgba(248, 113, 113, 0.18), transparent 7rem),
    rgba(28, 10, 16, 0.94);
}

.ct-cart-toast__icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.13);
  color: #86efac;
  flex: 0 0 auto;
}

.ct-cart-toast--error .ct-cart-toast__icon {
  background: rgba(248, 113, 113, 0.14);
  color: #fecaca;
}

.ct-cart-toast__text {
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.25;
}

.product-card-add-btn.is-loading,
.compact-add-btn.is-loading,
.mini-related-product__btn.is-loading {
  opacity: 0.72;
  cursor: progress;
}

.ct-cart-count-pulse {
  animation: ctCartCountPulse 0.56s ease;
}

@keyframes ctCartToastIn {
  from {
    opacity: 0;
    transform: translate3d(14px, -4px, 0) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes ctCartToastOut {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    opacity: 0;
    transform: translate3d(14px, -4px, 0) scale(0.98);
  }
}

@keyframes ctCartCountPulse {
  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.16);
  }
}

@media (max-width: 575.98px) {
  .ct-cart-toast-region {
    top: 72px;
    right: 10px;
    left: 10px;
    width: auto;
  }

  .ct-cart-toast {
    border-radius: 18px;
  }
}

/* Final product media containment guard for supplier images of unpredictable size. */
.home-product-card__media,
.pc-media,
.mini-related-product__media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.home-product-card__img,
.pc-img,
.mini-related-product__img {
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 86%;
  max-height: 108px;
  object-fit: contain;
  object-position: center;
  box-sizing: border-box;
}

.home-section--featured-row .home-product-card__img,
.home-popular-showcase .home-product-card__img {
  max-height: 108px;
}

.home-popular-showcase__item--lead .home-product-card__media {
  height: clamp(150px, 15vw, 190px);
  min-height: clamp(150px, 15vw, 190px);
}

.home-popular-showcase__item--lead .home-product-card__img {
  max-width: 82%;
  max-height: 156px;
}

.product-card--store .pc-media {
  height: clamp(116px, 10vw, 140px);
  min-height: clamp(116px, 10vw, 140px);
}

.mini-related-product__media {
  height: 120px;
  min-height: 120px;
}

.home-section--brand-runway {
  padding-block: clamp(2.25rem, 4vw, 3.4rem);
  background:
    radial-gradient(circle at 14% 8%, rgba(56, 189, 248, 0.09), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.ct-brand-showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(1.05rem, 2vw, 1.45rem);
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 12%, rgba(34, 211, 238, 0.16), transparent 30%),
    radial-gradient(circle at 90% 85%, rgba(37, 99, 235, 0.18), transparent 32%),
    linear-gradient(135deg, #10283a 0%, #17384f 48%, #102236 100%);
  color: rgba(239, 246, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 44px rgba(15, 23, 42, 0.14);
}

.ct-brand-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(125, 211, 252, 0.08) 42%, transparent 64%);
  opacity: 0.72;
}

.ct-brand-head,
.ct-brand-shell,
.ct-brand-progress {
  position: relative;
  z-index: 1;
}

.ct-brand-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ct-brand-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
  color: #7dd3fc;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ct-brand-eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38bdf8, rgba(37, 99, 235, 0.1));
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.5);
}

.ct-brand-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 950;
  letter-spacing: 0;
}

.ct-brand-subtitle {
  max-width: 560px;
  margin: 0.35rem 0 0;
  color: rgba(226, 239, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.ct-brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.48rem 0.82rem;
  border: 1px solid rgba(125, 211, 252, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e0f2fe;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.ct-brand-link:hover,
.ct-brand-link:focus {
  border-color: rgba(125, 211, 252, 0.48);
  background: rgba(125, 211, 252, 0.14);
  color: #ffffff;
}

.ct-brand-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
}

.ct-brand-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(126px, 142px);
  gap: 0.72rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.18rem 0.08rem 0.42rem;
}

.ct-brand-track::-webkit-scrollbar {
  display: none;
}

.ct-brand-card {
  display: grid;
  gap: 0.48rem;
  min-width: 0;
  min-height: 118px;
  padding: 0.66rem 0.56rem;
  border: 1px solid rgba(125, 211, 252, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.035);
  color: rgba(239, 246, 255, 0.94);
  text-align: center;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 14px 34px rgba(0, 0, 0, 0.14);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.ct-brand-card:hover,
.ct-brand-card:focus-visible,
.ct-brand-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(125, 211, 252, 0.56);
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.28), rgba(14, 165, 233, 0.16)),
    rgba(255, 255, 255, 0.06);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 44px rgba(14, 165, 233, 0.2);
}

.ct-brand-card__media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 88px;
  height: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 15px;
  background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
  color: #1d4ed8;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 22px rgba(15, 23, 42, 0.16);
}

.ct-brand-card__media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 82%;
  max-height: 34px;
  object-fit: contain;
}

.ct-brand-card__media img + .ct-brand-card__fallback {
  display: none;
}

.ct-brand-card__fallback {
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.ct-brand-card__name {
  display: -webkit-box;
  min-height: 2.2em;
  overflow: hidden;
  color: inherit;
  font-size: 0.8rem;
  font-weight: 950;
  line-height: 1.1;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ct-brand-card__count {
  color: rgba(226, 239, 255, 0.62);
  font-size: 0.69rem;
  font-weight: 800;
}

.ct-brand-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(239, 246, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 12px 24px rgba(0, 0, 0, 0.14);
}

.ct-brand-arrow:hover,
.ct-brand-arrow:focus {
  border-color: rgba(125, 211, 252, 0.5);
  background: rgba(125, 211, 252, 0.14);
  color: #ffffff;
}

.ct-brand-arrow:disabled {
  opacity: 0.36;
  box-shadow: none;
}

.ct-brand-progress {
  width: min(260px, 46%);
  height: 3px;
  margin: 0.72rem auto 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(226, 239, 255, 0.12);
}

.ct-brand-progress__bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.85), rgba(125, 211, 252, 0.9));
  box-shadow: 0 0 12px rgba(125, 211, 252, 0.34);
}

.shop-brand-showcase {
  margin: 1rem 0 0.9rem;
}

@media (max-width: 767.98px) {
  .ct-brand-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ct-brand-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .ct-brand-arrow {
    display: none;
  }

  .ct-brand-track {
    grid-auto-columns: minmax(116px, 42%);
    gap: 0.62rem;
  }

  .ct-brand-card {
    min-height: 110px;
    padding: 0.58rem 0.48rem;
    border-radius: 16px;
  }

  .ct-brand-card__media {
    width: 78px;
    height: 48px;
    border-radius: 13px;
  }

  .ct-brand-progress {
    width: 58%;
  }
}

@media (max-width: 767.98px) {
  .home-product-card__img,
  .pc-img,
  .mini-related-product__img,
  .home-section--featured-row .home-product-card__img,
  .home-popular-showcase .home-product-card__img {
    max-height: 92px;
  }

  .home-popular-showcase__item--lead .home-product-card__media {
    height: 132px;
    min-height: 132px;
  }

  .home-popular-showcase__item--lead .home-product-card__img {
    max-height: 108px;
  }
}

/* Logo-only brand runway */
.home-section--brand-runway {
  width: 100%;
  padding-block: clamp(2.75rem, 5vw, 4rem);
  background:
    radial-gradient(circle at 12% 8%, rgba(56, 189, 248, 0.1), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(37, 99, 235, 0.08), transparent 26rem),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.shop-brand-showcase {
  width: 100vw;
  margin: clamp(1.4rem, 3vw, 2.2rem) calc(50% - 50vw) clamp(1.2rem, 2.4vw, 1.8rem);
  padding: clamp(2.2rem, 4.5vw, 3.4rem) 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(56, 189, 248, 0.1), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(37, 99, 235, 0.08), transparent 26rem),
    linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
}

.shop-brand-showcase .ct-brand-showcase {
  width: min(100%, 1240px);
  margin-inline: auto;
  padding-inline: calc(var(--store-content-gutter, 1rem) + env(safe-area-inset-left));
}

.ct-brand-showcase {
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #0f172a;
  box-shadow: none;
}

.ct-brand-showcase::before {
  display: none;
}

.ct-brand-head {
  margin-bottom: clamp(1rem, 2vw, 1.35rem);
}

.ct-brand-eyebrow {
  color: #2563eb;
}

.ct-brand-head h2 {
  color: #0f172a;
}

.ct-brand-subtitle {
  color: #526174;
}

.ct-brand-link {
  border-color: rgba(37, 99, 235, 0.14);
  background: rgba(255, 255, 255, 0.82);
  color: #1d4ed8;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
}

.ct-brand-link:hover,
.ct-brand-link:focus {
  border-color: rgba(37, 99, 235, 0.32);
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.14);
}

.ct-brand-track {
  grid-auto-columns: minmax(150px, 176px);
  gap: 0.85rem;
  padding: 0.24rem 0.1rem 0.54rem;
}

.ct-brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 1.05rem 1.25rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.ct-brand-card:hover,
.ct-brand-card:focus-visible,
.ct-brand-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.34);
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(37, 99, 235, 0.16);
}

.ct-brand-card__media {
  width: auto;
  height: auto;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ct-brand-card__media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 140px;
  max-height: 52px;
  object-fit: contain;
}

.ct-brand-card__fallback,
.ct-brand-card__name,
.ct-brand-card__count {
  display: none !important;
}

.ct-brand-arrow {
  border-color: rgba(37, 99, 235, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: #1d4ed8;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
}

.ct-brand-arrow:hover,
.ct-brand-arrow:focus {
  border-color: rgba(37, 99, 235, 0.34);
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.16);
}

.ct-brand-progress {
  background: rgba(37, 99, 235, 0.1);
}

.ct-brand-progress__bar {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.85), rgba(56, 189, 248, 0.86));
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.22);
}

@media (max-width: 767.98px) {
  .home-section--brand-runway,
  .shop-brand-showcase {
    padding-block: 2.2rem;
  }

  .shop-brand-showcase .ct-brand-showcase {
    padding-inline: calc(var(--store-content-gutter, 1rem) + env(safe-area-inset-left));
  }

  .ct-brand-track {
    grid-auto-columns: minmax(136px, 46%);
    gap: 0.68rem;
  }

  .ct-brand-card {
    min-height: 82px;
    padding: 0.9rem 1rem;
    border-radius: 16px;
  }

  .ct-brand-card__media {
    width: auto;
    height: auto;
    border-radius: 0;
  }

  .ct-brand-card__media img {
    max-width: 118px;
    max-height: 44px;
  }
}

/* Scoped homepage hero text refinement. */
.home-tech-hero__content {
  position: relative;
  max-width: min(100%, 580px);
  padding-left: clamp(1.25rem, 3.4vw, 4.5rem);
  box-sizing: border-box;
  isolation: isolate;
  transform: translateX(clamp(0.35rem, 1.15vw, 1.25rem));
}

.home-tech-hero__content::before {
  content: "";
  position: absolute;
  inset: -16% -8% -12% -14%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 42% 46%, rgba(56, 189, 248, 0.12), rgba(37, 99, 235, 0.055) 42%, transparent 72%);
  filter: blur(10px);
  opacity: 0.58;
  pointer-events: none;
}

.home-tech-hero__eyebrow {
  margin: 0 0 0.9rem;
  color: #7dd3fc;
  font-size: 0.78rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-tech-hero__eyebrow:empty {
  display: none;
  margin: 0;
}

.home-tech-hero__eyebrow:empty::before {
  display: none;
}

.home-tech-hero__title {
  max-width: 16ch;
  margin: 0;
  color: #f8fbff;
  font-size: clamp(1.95rem, 3.15vw, 3.25rem);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
  text-shadow:
    0 12px 30px rgba(2, 8, 23, 0.46),
    0 0 12px rgba(148, 163, 184, 0.06);
}

.home-tech-hero__title span {
  display: block;
  margin-top: 0.035em;
  color: rgba(235, 245, 255, 0.92);
}

.home-tech-hero__title .home-tech-hero__title-accent {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  color: #8be8ff;
  text-shadow:
    0 0 18px rgba(56, 189, 248, 0.36),
    0 0 34px rgba(37, 99, 235, 0.18),
    0 12px 30px rgba(2, 8, 23, 0.38);
}

.home-tech-hero__title .home-tech-hero__title-accent::after {
  content: "";
  position: absolute;
  left: 0.03em;
  right: 0.02em;
  bottom: -0.065em;
  height: 0.052em;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(125, 211, 252, 0.82), rgba(56, 189, 248, 0.36) 54%, rgba(37, 99, 235, 0.08));
  box-shadow:
    0 0 10px rgba(56, 189, 248, 0.26),
    0 0 20px rgba(37, 99, 235, 0.12);
  opacity: 0.78;
}

@media (max-width: 991.98px) {
  .home-tech-hero__content {
    max-width: 520px;
    padding-left: clamp(0.85rem, 2vw, 1.5rem);
    transform: translateX(0);
  }

  .home-tech-hero__title {
    max-width: 16ch;
    font-size: clamp(1.9rem, 5.6vw, 3rem);
    line-height: 1.04;
  }
}

@media (max-width: 767.98px) {
  .home-tech-hero__content {
    max-width: 100%;
    padding-left: 0;
  }

  .home-tech-hero__title {
    max-width: 16ch;
    font-size: clamp(1.95rem, 8vw, 2.35rem);
    line-height: 1.08;
    text-shadow: 0 10px 24px rgba(2, 8, 23, 0.42);
  }

  .home-tech-hero__title span {
    margin-top: 0;
  }

  .home-tech-hero__title .home-tech-hero__title-accent::after {
    bottom: -0.04em;
    height: 0.048em;
  }
}

@media (max-width: 430px) {
  .home-tech-hero__title {
    max-width: 15.5ch;
    font-size: clamp(1.82rem, 8.3vw, 2.08rem);
    line-height: 1.1;
  }
}

/* Production mobile storefront and footer polish. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

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

.store-page,
.store-main,
.site-footer {
  max-width: 100%;
  overflow-x: clip;
}

img,
picture,
svg,
video,
canvas {
  max-width: 100%;
}

.home-product-card__link,
.pc-title-link,
.pc-details-link,
.footer-link {
  text-decoration: none !important;
}

.site-footer {
  border-top: 1px solid rgba(125, 211, 252, 0.12);
  background:
    radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.16), transparent 27rem),
    radial-gradient(circle at 88% 8%, rgba(37, 99, 235, 0.14), transparent 28rem),
    linear-gradient(135deg, #020817 0%, #06142f 48%, #020817 100%);
}

.site-footer .footer-container {
  padding-top: clamp(2.15rem, 4vw, 3.25rem);
  padding-bottom: clamp(1.7rem, 3vw, 2.65rem);
}

.footer-shell {
  max-width: 1240px;
  margin-inline: auto;
}

.footer-brand-wrap {
  max-width: 31rem;
}

.footer-brand {
  color: #ffffff;
  font-size: clamp(1.18rem, 1.6vw, 1.48rem);
  letter-spacing: 0;
}

.footer-text {
  max-width: 28rem;
  color: rgba(226, 239, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-title {
  margin-bottom: 0.64rem;
  color: rgba(239, 246, 255, 0.94);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.footer-link {
  min-height: 34px;
  width: 100%;
  padding: 0.34rem 0.48rem;
  border-radius: 12px;
  color: rgba(226, 239, 255, 0.76);
  font-size: 0.85rem;
  font-weight: 800;
}

.footer-link:hover,
.footer-link:focus {
  background: rgba(125, 211, 252, 0.09);
  color: #ffffff;
  transform: translateX(2px);
}

.footer-track-card,
.footer-collection-card {
  border-color: rgba(125, 211, 252, 0.13);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 18px 42px rgba(0, 0, 0, 0.18);
}

.footer-track-card {
  max-width: 27rem;
  padding: 0.9rem;
  border-radius: 18px;
}

.footer-track-input {
  min-height: 40px;
  border-radius: 12px;
  font-size: 0.86rem;
}

.footer-track-btn,
.footer-email-btn {
  min-height: 40px;
  font-size: 0.85rem;
}

.footer-bottom {
  align-items: center;
}

.footer-pill {
  min-height: 30px;
  color: rgba(226, 239, 255, 0.8);
  font-size: 0.75rem;
}

@supports not (overflow: clip) {
  .store-page,
  .store-main,
  .site-footer {
    overflow-x: hidden;
  }
}

@media (max-width: 991.98px) {
  .tech-header__main > .store-container,
  .home-tech-hero > .store-container,
  .home-section > .store-container,
  .shop-index-page > .store-container,
  .store-main > .store-container,
  .site-footer .footer-container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .tech-header__row,
  .store-page:has(.home-tech-hero) .tech-header__row {
    min-height: 58px;
    gap: 0.55rem;
    padding-block: 0.42rem;
  }

  .tech-header__left {
    flex: 1 1 auto;
    max-width: calc(100% - 92px);
    gap: 0.52rem;
  }

  .tech-header__right {
    flex: 0 0 auto;
    gap: 0.42rem;
  }

  .tech-brand {
    min-width: 0;
  }

  .tech-brand__logo-wrap,
  .store-page:has(.home-tech-hero) .tech-brand__logo-wrap {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .tech-brand__logo,
  .store-page:has(.home-tech-hero) .tech-brand__logo {
    width: 36px;
    height: 36px;
  }

  .tech-header__menu,
  .tech-icon-btn,
  .tech-account-btn,
  .store-page:has(.home-tech-hero) .tech-header__menu,
  .store-page:has(.home-tech-hero) .tech-icon-btn,
  .store-page:has(.home-tech-hero) .tech-account-btn {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .home-tech-hero {
    padding-top: clamp(2.85rem, 8vw, 3.45rem);
    padding-bottom: clamp(1.3rem, 4.5vw, 1.95rem);
  }

  .home-tech-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: clamp(0.85rem, 2.6vw, 1.25rem);
  }

  .home-tech-hero__content {
    max-width: 100%;
    padding-left: 0;
    transform: none;
  }

  .home-tech-hero__content::before {
    inset: -12% -12% -8%;
    opacity: 0.4;
  }

  .home-tech-hero__visual,
  .home-showcase,
  .home-showcase--single,
  .home-showcase__asset-wrap {
    width: 100%;
    max-width: 100%;
  }

  .home-showcase__asset-wrap {
    inset-inline: 0;
  }

  .home-showcase__asset {
    object-fit: contain;
  }

  .home-section__head,
  .home-section__head--showroom,
  .ct-category-head {
    align-items: flex-start;
  }

  .footer-shell > .row {
    row-gap: 1.2rem;
  }

  .footer-track-card {
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .tech-header__main > .store-container {
    padding-left: max(0.86rem, env(safe-area-inset-left));
    padding-right: max(0.86rem, env(safe-area-inset-right));
  }

  .tech-header__row,
  .store-page:has(.home-tech-hero) .tech-header__row {
    min-height: 56px;
  }

  .tech-brand__name,
  .tech-brand__name--neon {
    max-width: min(32vw, 126px);
    font-size: 0.72rem;
  }

  .store-main {
    overflow-x: clip;
  }

  .home-tech-hero {
    padding-top: clamp(3.1rem, 11.5vw, 3.7rem);
    padding-bottom: clamp(1.05rem, 4vw, 1.45rem);
    overflow: hidden;
  }

  .home-tech-hero__grid {
    gap: 0.56rem;
  }

  .home-tech-hero__title {
    max-width: 15.6ch;
    font-size: clamp(1.58rem, 7vw, 2.05rem);
    line-height: 1.12;
    text-shadow: 0 9px 22px rgba(2, 8, 23, 0.38);
  }

  .home-tech-hero__title span {
    margin-top: 0.01em;
  }

  .home-tech-hero__title .home-tech-hero__title-accent::after {
    bottom: -0.035em;
    height: 0.042em;
  }

  .home-tech-hero__visual,
  .home-showcase--single {
    min-height: clamp(178px, 50vw, 240px);
  }

  .home-tech-hero__visual::before {
    width: min(74vw, 285px);
    height: min(74vw, 285px);
    filter: blur(10px);
  }

  .home-showcase__asset-wrap {
    inset: 0;
    display: grid;
    place-items: center;
  }

  .home-showcase__asset {
    width: min(91vw, 390px);
    max-height: clamp(158px, 45vw, 218px);
  }

  .home-section,
  .home-section--featured-products,
  .home-section--new-arrivals,
  .home-section--deals-light,
  .home-section--top-categories,
  .home-section--popular-picks,
  .home-section--categories,
  .home-section--brand-runway {
    padding-block: clamp(1.35rem, 5vw, 1.9rem);
  }

  .home-section__head,
  .home-section__head--showroom,
  .ct-category-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.68rem;
    margin-bottom: 0.9rem;
    padding-bottom: 0.68rem;
  }

  .home-section__head--showroom > div:first-child {
    padding-left: 0.68rem;
  }

  .home-section__head--showroom > div:first-child::before {
    top: 0.18rem;
    width: 2px;
    height: min(2.4rem, calc(100% - 0.32rem));
  }

  .home-section__head--showroom .home-section__eyebrow,
  .ct-category-head .home-section__eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.075em;
  }

  .home-section__head--showroom h2,
  .home-section__head h2,
  .ct-category-head h2 {
    font-size: clamp(1.28rem, 5.5vw, 1.62rem);
    line-height: 1.08;
  }

  .home-section__subtitle {
    margin-top: 0.34rem;
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .home-slider-actions,
  .home-section--featured-row .home-slider-actions {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    gap: 0.4rem;
  }

  .home-section__link,
  .home-section--featured-row .home-section__link,
  .ct-category-link {
    min-height: 34px;
    max-width: 100%;
    padding: 0 0.72rem;
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .home-slider-btn,
  .home-section--featured-row .home-slider-btn,
  .ct-category-arrow,
  .home-section--categories .ct-category-arrow,
  .shop-category-showcase .ct-category-arrow {
    display: none;
  }

  .home-product-slider,
  .home-section--featured-row .home-product-slider,
  .home-popular-showcase {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(230px, 76vw, 300px);
    grid-template-columns: none;
    gap: 0.82rem;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding: 0.16rem max(1rem, env(safe-area-inset-right)) 0.85rem max(1rem, env(safe-area-inset-left));
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: max(1rem, env(safe-area-inset-left));
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .home-product-slider::-webkit-scrollbar,
  .home-popular-showcase::-webkit-scrollbar,
  .ct-category-track::-webkit-scrollbar {
    display: none;
  }

  .home-product-slider,
  .home-popular-showcase,
  .ct-category-track {
    scrollbar-width: none;
  }

  .home-product-slider > *,
  .home-section--featured-row .home-product-slider > *,
  .home-popular-showcase__item,
  .home-popular-showcase__item--lead {
    width: clamp(230px, 76vw, 300px);
    max-width: clamp(230px, 76vw, 300px);
    scroll-margin-inline: 1rem;
    scroll-snap-align: start;
  }

  .home-product-card,
  .home-section--featured-row .home-product-card,
  .product-card--store {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    border-radius: 18px;
  }

  .home-section--featured-row .home-product-card {
    padding: 0.58rem;
  }

  .home-product-card__media,
  .home-section--featured-row .home-product-card__media,
  .pc-media,
  .shop-index-page .product-card--store .pc-media {
    height: 128px;
    min-height: 128px;
    margin: 0.52rem 0.52rem 0;
    border-radius: 15px;
  }

  .home-product-card__img,
  .home-section--featured-row .home-product-card__img,
  .home-popular-showcase .home-product-card__img,
  .pc-img,
  .shop-index-page .product-card--store .pc-img {
    width: 100%;
    height: 100%;
    max-height: 106px;
    padding: 0.42rem;
    object-fit: contain;
    object-position: center;
  }

  .home-product-card__body,
  .home-section--featured-row .home-product-card__body,
  .pc-body,
  .shop-index-page .product-card--store .pc-body {
    gap: 0.34rem;
    padding: 0.62rem;
  }

  .home-product-card__meta,
  .pc-meta,
  .shop-index-page .product-card--store .pc-meta {
    font-size: 0.7rem;
  }

  .home-product-card__title,
  .home-section--featured-row .home-product-card__title,
  .pc-title,
  .shop-index-page .product-card--store .pc-title {
    display: -webkit-box;
    min-height: 2.32em;
    max-height: 2.32em;
    overflow: hidden;
    font-size: 0.86rem;
    line-height: 1.16;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .stock-badge,
  .home-stock-badge,
  .pc-stock-badge {
    font-size: 0.7rem;
  }

  .home-product-card__now,
  .home-section--featured-row .home-product-card__now,
  .pc-price-now,
  .shop-index-page .product-card--store .pc-price-now {
    font-size: 1rem;
  }

  .home-product-card__actions,
  .pc-view-row,
  .shop-index-page .product-card--store .pc-view-row {
    gap: 0.4rem;
    margin-top: 0.5rem;
    padding-top: 0.46rem;
  }

  .product-card-add-btn {
    min-height: 40px;
    padding-inline: 0.68rem;
    font-size: 0.74rem;
  }

  .pc-details-link .pc-view-text {
    display: none;
  }

  .home-popular-showcase__item--lead {
    grid-column: auto;
  }

  .home-popular-showcase__item--lead .home-product-card {
    display: flex;
    grid-template-columns: none;
    gap: 0;
  }

  .home-popular-showcase__item--lead .home-product-card__media {
    height: 128px;
    min-height: 128px;
  }

  .home-popular-showcase__item--lead .home-product-card__img {
    max-height: 106px;
  }

  .home-top-category-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .home-top-category-tile {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 76px;
    padding: 0.6rem;
    border-radius: 16px;
  }

  .home-top-category-tile__media {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }

  .home-top-category-tile__title {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .ct-category-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .ct-category-track,
  .home-section--categories .ct-category-track,
  .shop-category-showcase .ct-category-track {
    grid-auto-columns: clamp(148px, 48vw, 210px);
    gap: 0.72rem;
    width: 100%;
    max-width: 100%;
    padding: 0.18rem max(1rem, env(safe-area-inset-right)) 0.8rem max(1rem, env(safe-area-inset-left));
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: max(1rem, env(safe-area-inset-left));
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .ct-category-card,
  .home-section--categories .ct-category-card,
  .shop-category-showcase .ct-category-card {
    min-height: 126px;
    padding: 0.62rem 0.54rem;
    border-radius: 17px;
    scroll-margin-inline: 1rem;
    scroll-snap-align: start;
  }

  .ct-category-card.is-active,
  .ct-category-card.is-parent-active,
  .home-section--categories .ct-category-card.is-active,
  .home-section--categories .ct-category-card.is-parent-active,
  .shop-category-showcase .ct-category-card.is-active,
  .shop-category-showcase .ct-category-card.is-parent-active {
    transform: none;
    outline: 2px solid rgba(125, 211, 252, 0.32);
    outline-offset: 2px;
  }

  .ct-category-card__media,
  .home-section--categories .ct-category-card__media,
  .shop-category-showcase .ct-category-card__media {
    width: 56px;
    height: 56px;
    border-radius: 15px;
  }

  .ct-category-card__media img {
    object-fit: contain;
  }

  .ct-category-card__title,
  .home-section--categories .ct-category-card__title,
  .shop-category-showcase .ct-category-card__title {
    font-size: 0.8rem;
  }

  .ct-category-progress,
  .home-section--categories .ct-category-progress,
  .shop-category-showcase .ct-category-progress {
    width: min(210px, 58%);
    margin-top: 0.5rem;
  }

  .shop-product-grid {
    --bs-gutter-x: 0.62rem;
    --bs-gutter-y: 0.72rem;
  }

  .shop-toolbar-panel {
    border-radius: 18px;
  }

  .site-footer .footer-container {
    padding-top: 1.85rem;
    padding-bottom: max(1.4rem, env(safe-area-inset-bottom));
  }

  .footer-shell > .row {
    --bs-gutter-y: 0.95rem;
  }

  .footer-brand-wrap,
  .footer-track-card,
  .footer-contact-block,
  .footer-collection-card {
    max-width: 100%;
  }

  .footer-brand {
    font-size: 1.18rem;
  }

  .footer-text {
    margin-bottom: 0.72rem !important;
    font-size: 0.84rem;
  }

  .footer-title {
    margin-bottom: 0.45rem;
    font-size: 0.68rem;
  }

  .footer-link {
    min-height: 36px;
    padding: 0.34rem 0.42rem;
    font-size: 0.82rem;
  }

  .footer-track-card {
    padding: 0.78rem;
    border-radius: 15px;
  }

  .footer-track-card__head {
    margin-bottom: 0.56rem !important;
  }

  .footer-track-card__head i {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .footer-track-form .mb-2,
  .footer-track-form .mb-3 {
    margin-bottom: 0.52rem !important;
  }

  .footer-track-input,
  .footer-track-btn,
  .footer-email-btn {
    min-height: 38px;
  }

  .footer-track-btn,
  .footer-email-btn {
    width: 100%;
    justify-content: center !important;
  }

  .footer-collection-card {
    margin-top: 0.62rem;
    padding: 0.72rem;
    border-radius: 15px;
  }

  .footer-collection-card__text {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .footer-hr {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .footer-bottom {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 0.72rem !important;
    text-align: center;
  }

  .footer-bottom > .d-flex {
    justify-content: center;
  }

  .footer-copy {
    font-size: 0.82rem;
  }

  .footer-pill {
    min-height: 28px;
    padding: 0.22rem 0.48rem;
    font-size: 0.72rem;
  }
}

@media (max-width: 480px) {
  .tech-brand__name,
  .tech-brand__name--neon {
    display: none;
  }

  .tech-header__left {
    max-width: calc(100% - 84px);
  }

  .home-tech-hero {
    padding-top: clamp(3.2rem, 15vw, 3.85rem);
    padding-bottom: 1.05rem;
  }

  .home-tech-hero__title {
    max-width: 15.4ch;
    font-size: clamp(1.48rem, 7.2vw, 1.86rem);
    line-height: 1.13;
  }

  .home-tech-hero__visual,
  .home-showcase--single {
    min-height: clamp(168px, 48vw, 210px);
  }

  .home-showcase__asset {
    width: min(90vw, 345px);
    max-height: clamp(148px, 43vw, 190px);
  }

  .home-product-slider,
  .home-section--featured-row .home-product-slider,
  .home-popular-showcase {
    grid-auto-columns: clamp(224px, 78vw, 292px);
    gap: 0.76rem;
  }

  .home-product-slider > *,
  .home-section--featured-row .home-product-slider > *,
  .home-popular-showcase__item,
  .home-popular-showcase__item--lead {
    width: clamp(224px, 78vw, 292px);
    max-width: clamp(224px, 78vw, 292px);
  }

  .home-product-card__media,
  .home-section--featured-row .home-product-card__media,
  .pc-media,
  .shop-index-page .product-card--store .pc-media {
    height: 120px;
    min-height: 120px;
  }

  .home-product-card__img,
  .home-section--featured-row .home-product-card__img,
  .home-popular-showcase .home-product-card__img,
  .pc-img,
  .shop-index-page .product-card--store .pc-img {
    max-height: 98px;
  }

  .ct-category-track,
  .home-section--categories .ct-category-track,
  .shop-category-showcase .ct-category-track {
    grid-auto-columns: clamp(142px, 58vw, 198px);
  }

  .ct-category-card,
  .home-section--categories .ct-category-card,
  .shop-category-showcase .ct-category-card {
    min-height: 118px;
  }

  .product-card-add-btn {
    min-height: 38px;
  }
}

@media (max-width: 379.98px) {
  .shop-product-grid > [class*="col-"] {
    flex: 0 0 auto;
    width: 100%;
  }

  .shop-index-page .product-card--store .pc-media {
    height: 132px;
    min-height: 132px;
  }
}

/* Mobile top experience alignment polish. */
@media (max-width: 991.98px) {
  .tech-header__row,
  .store-page:has(.home-tech-hero) .tech-header__row {
    display: grid;
    grid-template-columns: minmax(86px, 1fr) auto minmax(86px, 1fr);
    align-items: center;
    min-height: 58px;
    column-gap: 0;
    padding-block: 0.42rem;
  }

  .tech-header__left {
    display: contents;
    max-width: none;
  }

  .tech-header__menu,
  .store-page:has(.home-tech-hero) .tech-header__menu {
    grid-column: 1;
    justify-self: start;
  }

  .tech-brand,
  .store-page:has(.home-tech-hero) .tech-brand {
    grid-column: 2;
    justify-self: center;
    min-width: 0;
    max-width: min(44vw, 224px);
    gap: 0.48rem;
  }

  .tech-header__right {
    grid-column: 3;
    justify-self: end;
    justify-content: flex-end;
    gap: 0.42rem;
    min-width: 0;
  }

  .tech-header__menu,
  .tech-icon-btn,
  .tech-account-btn,
  .store-page:has(.home-tech-hero) .tech-header__menu,
  .store-page:has(.home-tech-hero) .tech-icon-btn,
  .store-page:has(.home-tech-hero) .tech-account-btn {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    font-size: 1.02rem;
  }

  .tech-icon-btn__badge {
    right: -0.28rem;
    top: -0.28rem;
  }

  .store-page:has(.home-tech-hero) .tech-brand__logo {
    height: 38px;
    filter:
      drop-shadow(0 0 10px rgba(125, 211, 252, 0.2))
      drop-shadow(0 8px 18px rgba(2, 8, 23, 0.26));
  }
}

@media (max-width: 767.98px) {
  .store-page:has(.home-tech-hero) .tech-header__main {
    background:
      radial-gradient(circle at 50% -18%, rgba(125, 211, 252, 0.16), transparent 15rem),
      linear-gradient(90deg, rgba(2, 8, 23, 0.98), rgba(5, 22, 48, 0.96) 50%, rgba(2, 8, 23, 0.98));
  }

  .tech-header__row,
  .store-page:has(.home-tech-hero) .tech-header__row {
    grid-template-columns: minmax(78px, 1fr) auto minmax(78px, 1fr);
    min-height: 56px;
  }

  .tech-brand__name,
  .tech-brand__name--neon {
    display: none;
  }

  .tech-brand,
  .store-page:has(.home-tech-hero) .tech-brand {
    max-width: 40vw;
  }

  .store-page:has(.home-tech-hero) .tech-brand__logo {
    height: 37px;
  }

  .home-tech-hero {
    padding-top: clamp(2.75rem, 10vw, 3.4rem);
    padding-bottom: clamp(1.05rem, 4vw, 1.35rem);
    background:
      radial-gradient(circle at 50% 8%, rgba(56, 189, 248, 0.18), transparent 18rem),
      radial-gradient(circle at 74% 54%, rgba(37, 99, 235, 0.2), transparent 19rem),
      linear-gradient(135deg, #020817 0%, #071a34 48%, #06142f 100%);
  }

  .home-tech-hero::before {
    opacity: 0.36;
  }

  .home-tech-hero__grid {
    justify-items: center;
    gap: clamp(0.7rem, 2.8vw, 1rem);
  }

  .home-tech-hero__content {
    width: min(100%, 22.5rem);
    max-width: min(100%, 22.5rem);
    margin-inline: auto;
    padding: 0.16rem 0 0.18rem clamp(0.78rem, 3vw, 0.95rem);
    border-left: 2px solid rgba(125, 211, 252, 0.5);
    text-align: left;
  }

  .home-tech-hero__content::before {
    inset: -26% -12% -18% -15%;
    background:
      radial-gradient(ellipse at 30% 42%, rgba(56, 189, 248, 0.18), rgba(37, 99, 235, 0.08) 44%, transparent 72%);
    filter: blur(12px);
    opacity: 0.72;
  }

  .home-tech-hero__title {
    max-width: 16ch;
    font-size: clamp(1.96rem, 8.1vw, 2.4rem);
    line-height: 1.035;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow:
      0 14px 28px rgba(2, 8, 23, 0.48),
      0 0 18px rgba(125, 211, 252, 0.08);
  }

  .home-tech-hero__title span {
    margin-top: 0.015em;
  }

  .home-tech-hero__title .home-tech-hero__title-accent {
    color: #8be8ff;
    background: linear-gradient(92deg, #e0fbff 0%, #8be8ff 42%, #38bdf8 72%, #93c5fd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 13px rgba(56, 189, 248, 0.24));
  }

  .home-tech-hero__title .home-tech-hero__title-accent::after {
    left: 0;
    right: 0.14em;
    bottom: -0.075em;
    height: 3px;
    background:
      linear-gradient(90deg, rgba(125, 211, 252, 0.9), rgba(56, 189, 248, 0.42) 58%, transparent);
    box-shadow:
      0 0 12px rgba(56, 189, 248, 0.34),
      0 0 26px rgba(37, 99, 235, 0.16);
  }

  .home-tech-hero__visual,
  .home-showcase--single {
    justify-self: center;
    width: min(100%, 23rem);
    min-height: clamp(190px, 51vw, 238px);
    margin-inline: auto;
  }

  .home-tech-hero__visual::before {
    left: 50%;
    top: 52%;
    width: min(84vw, 320px);
    height: min(84vw, 320px);
    background:
      radial-gradient(circle, rgba(56, 189, 248, 0.18), rgba(37, 99, 235, 0.07) 47%, transparent 70%);
    opacity: 0.84;
  }

  .home-showcase__asset-wrap {
    inset: 0;
    display: grid;
    place-items: center;
  }

  .home-showcase__asset {
    width: min(91vw, 350px);
    max-height: clamp(168px, 45vw, 212px);
    object-fit: contain;
    -webkit-mask-image: none;
    mask-image: none;
    filter:
      drop-shadow(0 18px 24px rgba(0, 0, 0, 0.24))
      drop-shadow(0 0 20px rgba(56, 189, 248, 0.08));
  }

  .home-section__head,
  .home-section__head--showroom,
  .ct-category-head {
    justify-items: stretch;
    align-items: start;
    gap: 0.58rem;
    margin-bottom: 0.82rem;
    padding-bottom: 0.62rem;
  }

  .home-section__head--showroom > div:first-child,
  .ct-category-head > div:first-child {
    width: min(100%, 30rem);
    padding-left: 0.78rem;
  }

  .home-section__head--showroom > div:first-child::before {
    left: 0;
    top: 0.16rem;
    width: 2px;
    height: min(2.25rem, calc(100% - 0.3rem));
  }

  .home-section__head h2,
  .home-section__head--showroom h2,
  .ct-category-head h2 {
    max-width: 20ch;
    letter-spacing: 0;
  }

  .home-section__subtitle {
    max-width: 28rem;
  }

  .home-slider-actions,
  .home-section--featured-row .home-slider-actions {
    width: auto;
    margin-left: 0.78rem;
    align-items: center;
  }

  .home-section__head > .home-section__link,
  .ct-category-head > .home-section__link {
    justify-self: start;
    margin-left: 0.78rem;
  }
}

@media (max-width: 480px) {
  .tech-header__row,
  .store-page:has(.home-tech-hero) .tech-header__row {
    grid-template-columns: minmax(74px, 1fr) auto minmax(74px, 1fr);
  }

  .tech-header__menu,
  .tech-icon-btn,
  .tech-account-btn,
  .store-page:has(.home-tech-hero) .tech-header__menu,
  .store-page:has(.home-tech-hero) .tech-icon-btn,
  .store-page:has(.home-tech-hero) .tech-account-btn {
    width: 37px;
    height: 37px;
    border-radius: 12px;
  }

  .store-page:has(.home-tech-hero) .tech-brand__logo {
    height: 36px;
  }

  .home-tech-hero {
    padding-top: clamp(2.55rem, 11vw, 3.1rem);
  }

  .home-tech-hero__content {
    width: min(100%, 21.25rem);
    max-width: min(100%, 21.25rem);
  }

  .home-tech-hero__title {
    max-width: 16.1ch;
    font-size: clamp(1.86rem, 8.05vw, 2.12rem);
    line-height: 1.065;
  }

  .home-tech-hero__visual,
  .home-showcase--single {
    width: min(100%, 21.5rem);
    min-height: clamp(182px, 50vw, 218px);
  }

  .home-showcase__asset {
    width: min(90vw, 330px);
    max-height: clamp(160px, 44vw, 198px);
  }
}

@media (max-width: 379.98px) {
  .tech-header__row,
  .store-page:has(.home-tech-hero) .tech-header__row {
    grid-template-columns: minmax(70px, 1fr) auto minmax(70px, 1fr);
  }

  .store-page:has(.home-tech-hero) .tech-brand__logo {
    height: 34px;
  }

  .home-tech-hero__content {
    padding-left: 0.72rem;
  }

  .home-tech-hero__title {
    font-size: clamp(1.78rem, 7.9vw, 1.94rem);
  }
}

/* Premium storefront depth pass. */
.home-product-card__media,
.pc-media,
.mini-related-product__media {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 0 0 1px rgba(37, 99, 235, 0.035),
    0 10px 24px rgba(15, 23, 42, 0.045);
}

.pc-media::before,
.pc-media::after {
  opacity: 0 !important;
}

.home-product-card__img,
.pc-img,
.mini-related-product__img {
  object-fit: contain;
  object-position: center;
}

.home-section--top-categories {
  --home-section-bg:
    radial-gradient(circle at 12% 4%, rgba(125, 211, 252, 0.12), transparent 24rem),
    radial-gradient(circle at 86% 18%, rgba(37, 99, 235, 0.1), transparent 26rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 58%, #f2f7ff 100%);
  --home-section-detail: none;
  padding-block: clamp(2.35rem, 4.4vw, 4.25rem);
}

.home-section--top-categories .home-section__head--showroom {
  border-bottom-color: rgba(37, 99, 235, 0.08);
}

.home-section--top-categories .home-section__head--showroom > div:first-child::before {
  background: linear-gradient(180deg, #38bdf8, #1d4ed8);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.22);
}

.home-top-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.82rem, 1.4vw, 1.12rem);
}

.home-top-category-tile {
  position: relative;
  display: flex;
  min-height: 222px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.78rem;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(0.95rem, 1.45vw, 1.18rem);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.9)),
    #ffffff;
  color: #071a33;
  text-decoration: none;
  box-shadow:
    0 20px 46px rgba(15, 23, 42, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    background-color .2s ease;
}

.home-top-category-tile::before {
  content: "";
  position: absolute;
  inset: auto -24% -34% 24%;
  z-index: -1;
  height: 68%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.15), transparent 70%);
  opacity: 0.84;
}

.home-top-category-tile::after {
  inset: 0;
  height: auto;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(125, 211, 252, 0.18), transparent 34%, rgba(37, 99, 235, 0.08));
  opacity: 0;
  pointer-events: none;
}

.home-top-category-tile:hover,
.home-top-category-tile:focus {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, 0.22);
  background: #ffffff;
  box-shadow:
    0 26px 62px rgba(37, 99, 235, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.home-top-category-tile:hover::after,
.home-top-category-tile:focus::after {
  opacity: 1;
}

.home-top-category-tile__media {
  width: 88px;
  height: 88px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 28px;
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 30px rgba(37, 99, 235, 0.08);
}

.home-top-category-tile__media img {
  padding: 0.56rem;
  object-fit: contain;
}

.home-top-category-tile__media i {
  color: #1d4ed8;
  font-size: 1.7rem;
}

.home-top-category-tile__body {
  display: grid;
  gap: 0.3rem;
  width: 100%;
  min-width: 0;
}

.home-top-category-tile__title {
  display: -webkit-box;
  min-height: 2.38em;
  max-height: 2.38em;
  color: #081529;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  font-weight: 950;
  line-height: 1.19;
  white-space: normal;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-top-category-tile__subtitle {
  color: #5f6f86;
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.38;
}

.home-top-category-tile__arrow {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 32px;
  height: 32px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(56, 189, 248, 0.14));
}

.home-top-category-tile:hover .home-top-category-tile__arrow,
.home-top-category-tile:focus .home-top-category-tile__arrow {
  transform: translate(2px, -2px);
}

@media (max-width: 991.98px) {
  .tech-header__row,
  .store-page:has(.home-tech-hero) .tech-header__row {
    grid-template-columns: minmax(100px, 1fr) auto minmax(100px, 1fr);
    min-height: 64px;
    padding-block: 0.5rem;
  }

  .tech-header__main,
  .store-page:has(.home-tech-hero) .tech-header__main {
    background:
      radial-gradient(circle at 50% -18%, rgba(125, 211, 252, 0.18), transparent 16rem),
      linear-gradient(90deg, rgba(2, 8, 23, 0.98), rgba(6, 23, 50, 0.96) 50%, rgba(2, 8, 23, 0.98));
    border-bottom-color: rgba(125, 211, 252, 0.14);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.05),
      0 12px 28px rgba(2, 8, 23, 0.22);
  }

  .tech-header__menu,
  .tech-icon-btn,
  .tech-account-btn,
  .store-page:has(.home-tech-hero) .tech-header__menu,
  .store-page:has(.home-tech-hero) .tech-icon-btn,
  .store-page:has(.home-tech-hero) .tech-account-btn {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    border-color: rgba(125, 211, 252, 0.2);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055));
    font-size: 1.12rem;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 8px 18px rgba(2, 8, 23, 0.14);
  }

  .tech-header__right {
    gap: 0.48rem;
  }

  .tech-brand,
  .store-page:has(.home-tech-hero) .tech-brand {
    max-width: min(43vw, 250px);
  }

  .store-page:has(.home-tech-hero) .tech-brand__logo,
  .tech-brand__logo {
    height: 46px;
    max-width: min(43vw, 210px);
    object-fit: contain;
    filter:
      drop-shadow(0 0 13px rgba(125, 211, 252, 0.26))
      drop-shadow(0 9px 18px rgba(2, 8, 23, 0.28));
  }

  .home-top-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .tech-header__row,
  .store-page:has(.home-tech-hero) .tech-header__row {
    grid-template-columns: minmax(96px, 1fr) auto minmax(96px, 1fr);
    min-height: 62px;
  }

  .tech-header__menu,
  .tech-icon-btn,
  .tech-account-btn,
  .store-page:has(.home-tech-hero) .tech-header__menu,
  .store-page:has(.home-tech-hero) .tech-icon-btn,
  .store-page:has(.home-tech-hero) .tech-account-btn {
    width: 42px;
    height: 42px;
  }

  .store-page:has(.home-tech-hero) .tech-brand__logo,
  .tech-brand__logo {
    height: 45px;
  }

  .home-tech-hero {
    padding-top: clamp(2.95rem, 10.8vw, 3.45rem);
    padding-bottom: clamp(0.95rem, 3.8vw, 1.28rem);
    background:
      radial-gradient(circle at 50% 2%, rgba(125, 211, 252, 0.22), transparent 17rem),
      radial-gradient(circle at 78% 54%, rgba(37, 99, 235, 0.22), transparent 18rem),
      radial-gradient(circle at 6% 82%, rgba(14, 165, 233, 0.12), transparent 15rem),
      linear-gradient(145deg, #020817 0%, #061a35 52%, #041024 100%);
  }

  .home-tech-hero__grid {
    gap: clamp(0.58rem, 2.2vw, 0.86rem);
  }

  .home-tech-hero__content {
    width: min(100%, 21.8rem);
    max-width: min(100%, 21.8rem);
    padding: 0.18rem 0 0.2rem clamp(0.82rem, 3vw, 1rem);
    border-left: 3px solid rgba(125, 211, 252, 0.62);
  }

  .home-tech-hero__content::before {
    opacity: 0.82;
    background:
      radial-gradient(ellipse at 28% 42%, rgba(56, 189, 248, 0.2), rgba(37, 99, 235, 0.09) 42%, transparent 74%);
  }

  .home-tech-hero__content::after {
    content: "";
    position: absolute;
    left: 0.82rem;
    right: 18%;
    top: -0.34rem;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(125, 211, 252, 0.66), transparent);
    opacity: 0.58;
  }

  .home-tech-hero__title {
    font-size: clamp(1.94rem, 7.7vw, 2.28rem);
    line-height: 1.045;
    text-shadow:
      0 15px 30px rgba(2, 8, 23, 0.52),
      0 0 22px rgba(125, 211, 252, 0.08);
  }

  .home-tech-hero__title .home-tech-hero__title-accent::after {
    bottom: -0.08em;
    height: 2px;
  }

  .home-tech-hero__visual,
  .home-showcase--single {
    width: min(100%, 22.5rem);
    min-height: clamp(178px, 48vw, 220px);
  }

  .home-showcase__asset {
    width: min(90vw, 338px);
    max-height: clamp(158px, 43vw, 202px);
  }

  .home-section,
  .home-section--featured-products,
  .home-section--new-arrivals,
  .home-section--deals-light,
  .home-section--top-categories,
  .home-section--popular-picks,
  .home-section--categories,
  .home-section--brand-runway {
    padding-block: clamp(1.18rem, 4.4vw, 1.65rem);
  }

  .home-section__head,
  .home-section__head--showroom,
  .ct-category-head {
    gap: 0.5rem;
    margin-bottom: 0.72rem;
    padding-bottom: 0.5rem;
  }

  .home-section__head--showroom > div:first-child,
  .ct-category-head > div:first-child {
    padding-left: 0.68rem;
  }

  .home-section__head--showroom > div:first-child::before {
    width: 2px;
    height: 2rem;
  }

  .home-section__head--showroom .home-section__eyebrow,
  .ct-category-head .home-section__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.07em;
  }

  .home-section__head h2,
  .home-section__head--showroom h2,
  .ct-category-head h2 {
    font-size: clamp(1.18rem, 4.8vw, 1.48rem);
  }

  .home-section__subtitle {
    margin-top: 0.25rem;
    font-size: 0.8rem;
  }

  .home-section__link,
  .home-section--featured-row .home-section__link,
  .ct-category-link {
    min-height: 32px;
    padding-inline: 0.66rem;
    font-size: 0.72rem;
  }

  .home-section--categories,
  .shop-category-showcase {
    overflow: hidden;
  }

  .ct-category-shell {
    overflow: visible;
  }

  .ct-category-track,
  .home-section--categories .ct-category-track,
  .shop-category-showcase .ct-category-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(92px, 25vw, 118px) !important;
    gap: 0.58rem;
    width: 100%;
    max-width: 100%;
    padding: 0.32rem max(1.25rem, env(safe-area-inset-right)) 0.72rem max(1.25rem, env(safe-area-inset-left));
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: max(1.25rem, env(safe-area-inset-left));
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .ct-category-card,
  .home-section--categories .ct-category-card,
  .shop-category-showcase .ct-category-card {
    display: flex;
    min-height: 108px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.44rem;
    padding: 0.18rem 0.16rem 0.42rem;
    border: 0;
    border-radius: 26px;
    background: transparent;
    color: rgba(239, 246, 255, 0.92);
    box-shadow: none;
    backdrop-filter: none;
    scroll-margin-inline: 1.25rem;
    scroll-snap-align: start;
  }

  .ct-category-card:hover,
  .ct-category-card:focus-visible,
  .ct-category-card.is-parent-active,
  .ct-category-card.is-active,
  .home-section--categories .ct-category-card:hover,
  .home-section--categories .ct-category-card:focus-visible,
  .home-section--categories .ct-category-card.is-parent-active,
  .home-section--categories .ct-category-card.is-active,
  .shop-category-showcase .ct-category-card:hover,
  .shop-category-showcase .ct-category-card:focus-visible,
  .shop-category-showcase .ct-category-card.is-parent-active,
  .shop-category-showcase .ct-category-card.is-active {
    transform: none;
    border: 0;
    background: transparent;
    box-shadow: none;
    outline: 0;
  }

  .ct-category-card__media,
  .home-section--categories .ct-category-card__media,
  .shop-category-showcase .ct-category-card__media {
    width: 66px;
    height: 66px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 23px;
    background: #ffffff;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.95),
      0 10px 20px rgba(2, 8, 23, 0.13);
  }

  .ct-category-card:hover .ct-category-card__media,
  .ct-category-card:focus-visible .ct-category-card__media,
  .ct-category-card.is-active .ct-category-card__media,
  .ct-category-card.is-parent-active .ct-category-card__media {
    transform: translateY(-1px);
    border-color: rgba(125, 211, 252, 0.86);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.96),
      0 12px 24px rgba(14, 165, 233, 0.17),
      0 0 0 3px rgba(125, 211, 252, 0.13);
  }

  .ct-category-card__media img {
    padding: 0.42rem;
    object-fit: contain;
  }

  .ct-category-card__title,
  .home-section--categories .ct-category-card__title,
  .shop-category-showcase .ct-category-card__title {
    min-height: 2.35em;
    max-height: 2.35em;
    color: inherit;
    font-size: 0.73rem;
    font-weight: 850;
    line-height: 1.18;
    text-align: center;
    text-shadow: none;
  }

  .ct-category-card__count {
    display: none !important;
  }

  .ct-category-progress,
  .home-section--categories .ct-category-progress,
  .shop-category-showcase .ct-category-progress {
    width: 68px;
    height: 4px;
    margin-top: 0.24rem;
    background: rgba(226, 239, 255, 0.16);
  }

  .ct-category-progress__bar {
    min-width: 16px;
    background: linear-gradient(90deg, #7dd3fc, #2563eb);
  }

  .home-section--top-categories .store-container {
    padding-right: 0;
  }

  .home-top-category-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(128px, 35vw, 158px);
    grid-template-columns: none;
    gap: 0.68rem;
    width: 100%;
    max-width: 100%;
    padding: 0.1rem max(1rem, env(safe-area-inset-right)) 0.78rem 0;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: max(1rem, env(safe-area-inset-left));
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .home-top-category-grid::-webkit-scrollbar {
    display: none;
  }

  .home-top-category-tile {
    min-height: 158px;
    padding: 0.68rem;
    border-radius: 22px;
    scroll-snap-align: start;
  }

  .home-top-category-tile__media {
    width: 62px;
    height: 62px;
    border-radius: 21px;
  }

  .home-top-category-tile__media img {
    padding: 0.42rem;
  }

  .home-top-category-tile__title {
    min-height: 2.34em;
    max-height: 2.34em;
    font-size: 0.82rem;
    line-height: 1.17;
  }

  .home-top-category-tile__subtitle {
    font-size: 0.69rem;
    line-height: 1.25;
    -webkit-line-clamp: 2;
  }

  .home-top-category-tile__arrow {
    top: 0.56rem;
    right: 0.56rem;
    width: 25px;
    height: 25px;
    font-size: 0.95rem;
  }

  .home-product-slider,
  .home-section--featured-row .home-product-slider,
  .home-popular-showcase {
    grid-auto-columns: clamp(210px, 68vw, 285px);
    gap: 0.68rem;
    padding-bottom: 0.68rem;
  }

  .home-product-slider > *,
  .home-section--featured-row .home-product-slider > *,
  .home-popular-showcase__item,
  .home-popular-showcase__item--lead {
    width: clamp(210px, 68vw, 285px);
    max-width: clamp(210px, 68vw, 285px);
  }

  .home-product-card,
  .home-section--featured-row .home-product-card,
  .product-card--store {
    border-radius: 20px;
    box-shadow:
      0 12px 28px rgba(15, 23, 42, 0.065),
      inset 0 1px 0 rgba(255, 255, 255, 0.96);
  }

  .home-section--featured-row .home-product-card {
    padding: 0.44rem;
  }

  .home-product-card__media,
  .home-section--featured-row .home-product-card__media,
  .pc-media,
  .shop-index-page .product-card--store .pc-media {
    height: 112px;
    min-height: 112px;
    margin: 0.42rem 0.42rem 0;
    border-radius: 15px;
    background: #ffffff !important;
  }

  .home-product-card__img,
  .home-section--featured-row .home-product-card__img,
  .home-popular-showcase .home-product-card__img,
  .pc-img,
  .shop-index-page .product-card--store .pc-img {
    max-height: 92px;
    padding: 0.34rem;
  }

  .home-product-card__body,
  .home-section--featured-row .home-product-card__body,
  .pc-body,
  .shop-index-page .product-card--store .pc-body {
    gap: 0.28rem;
    padding: 0.5rem 0.54rem 0.56rem;
  }

  .home-product-card__meta,
  .pc-meta,
  .shop-index-page .product-card--store .pc-meta {
    font-size: 0.65rem;
  }

  .home-product-card__title,
  .home-section--featured-row .home-product-card__title,
  .pc-title,
  .shop-index-page .product-card--store .pc-title {
    min-height: 3.42em;
    max-height: 3.42em;
    font-size: 0.8rem;
    line-height: 1.14;
    -webkit-line-clamp: 3;
  }

  .stock-badge,
  .home-stock-badge,
  .pc-stock-badge {
    font-size: 0.66rem;
  }

  .home-product-card__now,
  .home-section--featured-row .home-product-card__now,
  .pc-price-now,
  .shop-index-page .product-card--store .pc-price-now {
    font-size: 0.95rem;
  }

  .home-product-card__actions,
  .pc-view-row,
  .shop-index-page .product-card--store .pc-view-row {
    gap: 0.34rem;
    margin-top: 0.38rem;
    padding-top: 0.4rem;
  }

  .product-card-add-btn {
    min-height: 36px;
    padding-inline: 0.56rem;
    font-size: 0.68rem;
  }

  .pc-arrow {
    width: 26px;
    height: 26px;
  }

  .shop-product-grid {
    --bs-gutter-x: 0.5rem;
    --bs-gutter-y: 0.58rem;
  }

  .shop-product-grid > [class*="col-"] {
    flex: 0 0 auto;
    width: 50%;
  }

  .site-footer .footer-container {
    padding-top: 1.55rem;
    padding-bottom: max(1.2rem, env(safe-area-inset-bottom));
  }

  .site-footer .row.g-4.g-lg-5 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem 0.72rem;
  }

  .site-footer .row.g-4.g-lg-5 > .col-lg-4,
  .site-footer .row.g-4.g-lg-5 > .col-lg-3:not(.col-6) {
    grid-column: 1 / -1;
  }

  .footer-brand-wrap {
    display: grid;
    gap: 0.65rem;
  }

  .footer-brand-wrap .d-flex {
    margin-bottom: 0 !important;
  }

  .footer-text {
    max-width: 22rem;
    margin-bottom: 0 !important;
    font-size: 0.82rem;
  }

  .footer-track-card {
    margin-top: 0.15rem;
    padding: 0.78rem;
    border-radius: 18px;
  }

  .footer-track-card__head {
    margin-bottom: 0.52rem !important;
  }

  .footer-track-input,
  .footer-track-btn,
  .footer-email-btn {
    min-height: 38px;
    border-radius: 12px;
    font-size: 0.8rem;
  }

  .footer-track-form .mb-2,
  .footer-track-form .mb-3 {
    margin-bottom: 0.45rem !important;
  }

  .footer-title {
    margin-bottom: 0.38rem;
    font-size: 0.66rem;
  }

  .footer-link {
    min-height: 34px;
    padding: 0.32rem 0.38rem;
    border-radius: 11px;
    font-size: 0.78rem;
  }

  .footer-contact-block {
    display: grid;
    gap: 0.62rem;
  }

  .footer-collection-card {
    margin-top: 0;
    padding: 0.68rem;
    border-radius: 16px;
  }

  .footer-hr {
    margin-block: 0.95rem !important;
  }

  .footer-bottom {
    gap: 0.58rem !important;
  }

  .footer-bottom > .d-flex {
    gap: 0.38rem !important;
  }

  .footer-pill {
    min-height: 27px;
    border-radius: 999px;
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  .tech-header__row,
  .store-page:has(.home-tech-hero) .tech-header__row {
    grid-template-columns: minmax(90px, 1fr) auto minmax(90px, 1fr);
  }

  .tech-header__menu,
  .tech-icon-btn,
  .tech-account-btn,
  .store-page:has(.home-tech-hero) .tech-header__menu,
  .store-page:has(.home-tech-hero) .tech-icon-btn,
  .store-page:has(.home-tech-hero) .tech-account-btn {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .store-page:has(.home-tech-hero) .tech-brand__logo,
  .tech-brand__logo {
    height: 42px;
  }

  .home-tech-hero {
    padding-top: clamp(2.72rem, 11.5vw, 3.18rem);
  }

  .home-tech-hero__content {
    width: min(100%, 20.7rem);
  }

  .home-tech-hero__title {
    font-size: clamp(1.82rem, 7.65vw, 2.06rem);
  }

  .ct-category-track,
  .home-section--categories .ct-category-track,
  .shop-category-showcase .ct-category-track {
    grid-auto-columns: clamp(90px, 28vw, 112px) !important;
    gap: 0.52rem;
  }

  .ct-category-card__media,
  .home-section--categories .ct-category-card__media,
  .shop-category-showcase .ct-category-card__media {
    width: 62px;
    height: 62px;
    border-radius: 21px;
  }

  .home-product-slider,
  .home-section--featured-row .home-product-slider,
  .home-popular-showcase {
    grid-auto-columns: clamp(204px, 66vw, 270px);
  }

  .home-product-slider > *,
  .home-section--featured-row .home-product-slider > *,
  .home-popular-showcase__item,
  .home-popular-showcase__item--lead {
    width: clamp(204px, 66vw, 270px);
    max-width: clamp(204px, 66vw, 270px);
  }

  .home-product-card__media,
  .home-section--featured-row .home-product-card__media,
  .pc-media,
  .shop-index-page .product-card--store .pc-media {
    height: 106px;
    min-height: 106px;
  }

  .home-product-card__img,
  .home-section--featured-row .home-product-card__img,
  .home-popular-showcase .home-product-card__img,
  .pc-img,
  .shop-index-page .product-card--store .pc-img {
    max-height: 86px;
  }

  .home-top-category-grid {
    grid-auto-columns: clamp(122px, 35vw, 146px);
  }

  .home-top-category-tile {
    min-height: 150px;
  }
}

@media (max-width: 379.98px) {
  .shop-product-grid > [class*="col-"] {
    width: 50%;
  }
}

@media (max-width: 349.98px) {
  .shop-product-grid > [class*="col-"] {
    width: 100%;
  }
}

/* Products by Request storefront page */
.request-products-page {
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 34rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 48%, #f6f8fc 100%);
}

.request-products-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.38fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  margin-bottom: clamp(1rem, 3vw, 1.8rem);
  padding: clamp(1.2rem, 3.5vw, 2rem);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(12, 29, 52, 0.94)),
    #07111f;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.16);
  color: #ffffff;
  overflow: hidden;
  position: relative;
}

.request-products-hero::before {
  content: "";
  position: absolute;
  inset: -30% 45% auto auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.24), transparent 68%);
  pointer-events: none;
}

.request-products-hero__content,
.request-products-hero__note {
  position: relative;
  z-index: 1;
}

.request-products-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.72rem;
  color: #7dd3fc;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-products-hero h1 {
  margin: 0;
  max-width: 14ch;
  color: #ffffff;
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 950;
  line-height: 0.96;
}

.request-products-hero p {
  max-width: 42rem;
  margin: 0.9rem 0 0;
  color: rgba(226, 242, 255, 0.88);
  font-size: clamp(0.95rem, 1.2vw, 1.06rem);
  line-height: 1.65;
}

.request-products-hero__note {
  align-self: end;
  display: flex;
  gap: 0.72rem;
  align-items: flex-start;
  padding: 1rem;
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(239, 246, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
  backdrop-filter: blur(16px);
}

.request-products-hero__note i {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.16);
  color: #7dd3fc;
}

.request-products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.95rem 1.05rem;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

.request-products-toolbar__title {
  color: #0f172a;
  font-size: 0.92rem;
  font-weight: 900;
}

.request-products-toolbar__text {
  margin-top: 0.12rem;
  color: #64748b;
  font-size: 0.84rem;
  font-weight: 700;
}

.request-products-toolbar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.44rem;
  min-height: 2.35rem;
  padding: 0.48rem 0.78rem;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: #1d4ed8;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.request-products-toolbar__link:hover,
.request-products-toolbar__link:focus {
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.14);
}

.request-products-panel {
  border-radius: 24px;
}

.request-product-card {
  border-color: rgba(37, 99, 235, 0.12);
}

.request-product-card__media,
.request-product-card .pc-media {
  background: #ffffff;
}

.request-product-card__media::before,
.request-product-card__media::after {
  opacity: 0.42;
}

.request-product-card__img {
  object-fit: contain;
}

.request-product-card__badge {
  border: 1px solid rgba(14, 165, 233, 0.24);
  background: rgba(224, 242, 254, 0.96);
  color: #075985;
}

.request-product-card__title {
  display: -webkit-box;
  min-height: 2.65em;
  max-height: 3.9em;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.request-product-card__stock {
  width: fit-content;
}

.request-product-card__footer {
  gap: 0.7rem;
}

.request-product-card__button {
  width: 100%;
  min-height: 42px;
}

.request-product-card__button-short {
  display: none;
}

.request-products-empty {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.request-products-empty__icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 1.4rem;
}

.request-products-empty h2 {
  margin: 0 0 0.35rem;
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 900;
}

.request-products-empty p {
  margin: 0 0 0.9rem;
  color: #64748b;
}

.product-request-modal__content {
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
}

.product-request-modal__header {
  align-items: flex-start;
  border: 0;
  padding: 1.35rem 1.35rem 0.5rem;
  background: linear-gradient(135deg, #07111f, #0f2540);
  color: #ffffff;
}

.product-request-modal__header .btn-close {
  filter: invert(1) grayscale(1);
  opacity: 0.8;
}

.product-request-modal__eyebrow {
  margin-bottom: 0.25rem;
  color: #7dd3fc;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-request-modal__header .modal-title {
  color: #ffffff;
  font-size: 1.32rem;
  font-weight: 900;
}

.product-request-modal__body {
  padding: 1.15rem 1.35rem;
}

.product-request-modal__product {
  display: flex;
  gap: 0.76rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.78rem;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 18px;
  background: #f8fbff;
}

.product-request-modal__product-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 14px;
  background: #e0f2fe;
  color: #0284c7;
}

.product-request-modal__product-name {
  color: #0f172a;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.25;
}

.product-request-modal__product-sku {
  margin-top: 0.1rem;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
}

.product-request-modal .form-label {
  color: #334155;
  font-size: 0.78rem;
  font-weight: 900;
}

.product-request-modal .form-label span {
  color: #94a3b8;
  font-weight: 800;
}

.product-request-modal .form-control {
  min-height: 44px;
  border-color: rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  font-size: 0.92rem;
}

.product-request-modal textarea.form-control {
  min-height: 108px;
}

.product-request-modal__footer {
  display: flex;
  gap: 0.62rem;
  border: 0;
  padding: 0 1.35rem 1.35rem;
}

.product-request-modal__secondary {
  min-height: 42px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: #334155;
  font-weight: 900;
}

.product-request-modal__submit {
  width: auto;
  min-width: 10rem;
  min-height: 42px;
}

.product-request-modal__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 768px) {
  .request-products-page {
    padding-top: 1.1rem;
  }

  .request-products-hero {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 1.05rem;
    border-radius: 22px;
  }

  .request-products-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .request-products-hero p {
    margin-top: 0.68rem;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .request-products-hero__note {
    align-self: stretch;
    padding: 0.78rem;
    border-radius: 17px;
    font-size: 0.82rem;
  }

  .request-products-toolbar {
    align-items: flex-start;
    padding: 0.78rem;
    border-radius: 18px;
  }

  .request-products-toolbar__link {
    min-height: 2.1rem;
    padding-inline: 0.62rem;
    font-size: 0.76rem;
  }

  .request-products-grid {
    --bs-gutter-x: 0.58rem;
    --bs-gutter-y: 0.7rem;
  }

  .request-products-grid > [class*="col-"] {
    flex: 0 0 auto;
    width: 50%;
  }

  .request-product-card .pc-media {
    height: 112px;
    min-height: 112px;
  }

  .request-product-card .pc-img {
    max-height: 90px;
  }

  .request-product-card .pc-body {
    padding: 0.56rem;
  }

  .request-product-card .pc-title {
    min-height: 3.36em;
    max-height: 3.36em;
    font-size: 0.8rem;
    line-height: 1.12;
    -webkit-line-clamp: 3;
  }

  .request-product-card .pc-price-now {
    font-size: 0.95rem;
  }

  .request-product-card__button {
    min-height: 38px;
    padding-inline: 0.5rem;
    font-size: 0.68rem;
  }

  .request-product-card__button-full {
    display: none;
  }

  .request-product-card__button-short {
    display: inline;
  }

  .product-request-modal .modal-dialog {
    margin: 0.75rem;
  }

  .product-request-modal__header,
  .product-request-modal__body,
  .product-request-modal__footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .product-request-modal__footer {
    flex-wrap: nowrap;
  }

  .product-request-modal__secondary,
  .product-request-modal__submit {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 349.98px) {
  .request-products-grid > [class*="col-"] {
    width: 100%;
  }
}

/* Mobile homepage content parity guard. */
@media (max-width: 768px) {
  html,
  body,
  .store-page,
  .store-main {
    max-width: 100%;
    overflow-x: clip;
  }

  .store-page:has(.home-tech-hero) .home-tech-hero,
  .store-page:has(.home-tech-hero) .home-section--categories,
  .store-page:has(.home-tech-hero) .home-section--featured-products,
  .store-page:has(.home-tech-hero) .home-section--new-arrivals,
  .store-page:has(.home-tech-hero) .home-section--deals-light,
  .store-page:has(.home-tech-hero) .home-section--top-categories,
  .store-page:has(.home-tech-hero) .home-section--brand-runway,
  .store-page:has(.home-tech-hero) .home-section--popular-picks {
    display: block !important;
    max-width: 100%;
    visibility: visible !important;
  }

  .store-page:has(.home-tech-hero) [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .store-page:has(.home-tech-hero) .home-tech-hero,
  .store-page:has(.home-tech-hero) .home-tech-hero__grid,
  .store-page:has(.home-tech-hero) .home-tech-hero__content,
  .store-page:has(.home-tech-hero) .home-tech-hero__visual,
  .store-page:has(.home-tech-hero) .home-showcase--single,
  .store-page:has(.home-tech-hero) .home-showcase__asset-wrap {
    overflow: visible;
  }

  .store-page:has(.home-tech-hero) .home-tech-hero {
    min-height: auto;
    padding-top: clamp(3rem, 11vw, 3.8rem);
    padding-bottom: clamp(1.05rem, 4vw, 1.55rem);
  }

  .store-page:has(.home-tech-hero) .home-tech-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
  }

  .store-page:has(.home-tech-hero) .home-tech-hero__content {
    transform: none;
  }

  .store-page:has(.home-tech-hero) .home-tech-hero__title {
    overflow: visible;
    max-height: none;
  }

  .store-page:has(.home-tech-hero) .home-showcase__asset {
    display: block;
    width: min(90vw, 350px);
    max-width: 100%;
    object-fit: contain;
  }

  .store-page:has(.home-tech-hero) .home-section--categories,
  .store-page:has(.home-tech-hero) .shop-category-showcase,
  .store-page:has(.home-tech-hero) .ct-category-shell,
  .store-page:has(.home-tech-hero) .home-section--top-categories,
  .store-page:has(.home-tech-hero) .home-section--brand-runway,
  .store-page:has(.home-tech-hero) .shop-brand-showcase {
    overflow: visible;
  }

  .store-page:has(.home-tech-hero) .home-section--top-categories .store-container {
    padding-left: max(1rem, env(safe-area-inset-left)) !important;
    padding-right: max(1rem, env(safe-area-inset-right)) !important;
  }

  .store-page:has(.home-tech-hero) .shop-brand-showcase {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .store-page:has(.home-tech-hero) .home-product-slider,
  .store-page:has(.home-tech-hero) .home-section--featured-row .home-product-slider,
  .store-page:has(.home-tech-hero) .home-popular-showcase,
  .store-page:has(.home-tech-hero) .ct-category-track,
  .store-page:has(.home-tech-hero) .home-section--categories .ct-category-track,
  .store-page:has(.home-tech-hero) .home-top-category-grid,
  .store-page:has(.home-tech-hero) .ct-brand-track {
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .store-page:has(.home-tech-hero) .home-product-slider,
  .store-page:has(.home-tech-hero) .home-section--featured-row .home-product-slider,
  .store-page:has(.home-tech-hero) .home-popular-showcase {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    scroll-padding-left: max(1rem, env(safe-area-inset-left));
    scroll-padding-right: max(1rem, env(safe-area-inset-right));
  }

  .store-page:has(.home-tech-hero) .ct-category-track,
  .store-page:has(.home-tech-hero) .home-section--categories .ct-category-track {
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
    scroll-padding-left: max(1.25rem, env(safe-area-inset-left));
    scroll-padding-right: max(1.25rem, env(safe-area-inset-right));
  }

  .store-page:has(.home-tech-hero) .home-top-category-grid {
    padding-left: 0.15rem;
    padding-right: max(1rem, env(safe-area-inset-right));
    scroll-padding-left: max(1rem, env(safe-area-inset-left));
    scroll-padding-right: max(1rem, env(safe-area-inset-right));
  }

  .store-page:has(.home-tech-hero) .ct-brand-track {
    padding-left: 0.15rem;
    padding-right: max(1rem, env(safe-area-inset-right));
    scroll-padding-left: max(1rem, env(safe-area-inset-left));
    scroll-padding-right: max(1rem, env(safe-area-inset-right));
  }

  .store-page:has(.home-tech-hero) .home-product-slider > *,
  .store-page:has(.home-tech-hero) .home-section--featured-row .home-product-slider > *,
  .store-page:has(.home-tech-hero) .home-popular-showcase__item,
  .store-page:has(.home-tech-hero) .home-popular-showcase__item--lead,
  .store-page:has(.home-tech-hero) .ct-category-card,
  .store-page:has(.home-tech-hero) .home-top-category-tile,
  .store-page:has(.home-tech-hero) .ct-brand-card {
    scroll-snap-align: start;
    scroll-margin-inline: max(0.8rem, env(safe-area-inset-left));
  }

  .store-page:has(.home-tech-hero) .home-product-card,
  .store-page:has(.home-tech-hero) .home-product-card__media,
  .store-page:has(.home-tech-hero) .ct-category-card,
  .store-page:has(.home-tech-hero) .home-top-category-tile,
  .store-page:has(.home-tech-hero) .ct-brand-card {
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .store-page:has(.home-tech-hero) .home-tech-hero {
    padding-top: clamp(2.85rem, 12vw, 3.3rem);
  }

  .store-page:has(.home-tech-hero) .home-tech-hero__title {
    font-size: clamp(1.78rem, 7.45vw, 2.04rem);
    line-height: 1.075;
  }

  .store-page:has(.home-tech-hero) .home-tech-hero__visual,
  .store-page:has(.home-tech-hero) .home-showcase--single {
    min-height: clamp(176px, 49vw, 218px);
  }
}

/* Scoped mobile footer centering pass. */
@media (max-width: 768px) {
  .site-footer {
    overflow-x: clip;
  }

  .site-footer .footer-container {
    width: 100%;
    max-width: 100%;
    padding-left: max(clamp(1rem, 5vw, 1.5rem), env(safe-area-inset-left));
    padding-right: max(clamp(1rem, 5vw, 1.5rem), env(safe-area-inset-right));
  }

  .footer-shell {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }

  .site-footer .row.g-4.g-lg-5 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 370px;
    margin-inline: auto;
    row-gap: 1rem;
    column-gap: clamp(0.85rem, 5vw, 1.45rem);
    justify-content: center;
    align-items: start;
  }

  .site-footer .row.g-4.g-lg-5 > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .site-footer .row.g-4.g-lg-5 > .col-lg-4,
  .site-footer .row.g-4.g-lg-5 > .col-lg-3:not(.col-6) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .footer-brand-wrap,
  .footer-contact-block {
    width: min(100%, 350px);
    max-width: 350px;
    margin-inline: auto;
    text-align: center;
  }

  .footer-brand-wrap {
    justify-items: center;
  }

  .footer-brand-wrap > .d-flex {
    justify-content: center;
  }

  .footer-brand {
    font-size: clamp(1.15rem, 5vw, 1.32rem);
  }

  .footer-text {
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
    color: rgba(226, 239, 255, 0.76);
  }

  .footer-track-card {
    width: min(100%, 340px);
    max-width: 340px;
    margin: 0.2rem auto 0;
    padding: 0.88rem;
    text-align: left;
  }

  .footer-track-card__head {
    justify-content: center;
    text-align: center;
  }

  .footer-track-form {
    width: 100%;
  }

  .footer-track-input,
  .footer-track-btn {
    width: 100%;
  }

  .footer-title {
    text-align: center;
  }

  .site-footer .col-6 .d-grid {
    justify-items: center;
  }

  .footer-link {
    justify-content: center;
    text-align: center;
    gap: 0.38rem;
  }

  .footer-link i {
    flex: 0 0 auto;
  }

  .footer-contact-block {
    display: grid;
    justify-items: center;
    gap: 0.7rem;
  }

  .footer-email-btn {
    width: min(100%, 280px);
    justify-content: center !important;
    margin-inline: auto;
  }

  .footer-collection-card {
    width: min(100%, 340px);
    max-width: 340px;
    margin: 0 auto;
    text-align: left;
  }

  .footer-hr {
    width: min(100%, 360px);
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-bottom {
    width: min(100%, 360px);
    margin-inline: auto;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom > .d-flex {
    justify-content: center;
    max-width: 100%;
  }

  .footer-pill {
    justify-content: center;
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .footer-shell {
    max-width: 400px;
  }

  .site-footer .row.g-4.g-lg-5 {
    max-width: 350px;
    row-gap: 0.9rem;
    column-gap: clamp(0.72rem, 4vw, 1rem);
  }

  .footer-track-card,
  .footer-collection-card {
    width: min(100%, 330px);
  }

  .footer-link {
    min-height: 33px;
    padding-inline: 0.3rem;
    font-size: 0.76rem;
  }

  .footer-bottom > .d-flex {
    row-gap: 0.42rem;
  }
}

@media (max-width: 349.98px) {
  .site-footer .row.g-4.g-lg-5 {
    grid-template-columns: minmax(0, 1fr);
    max-width: 300px;
  }

  .site-footer .row.g-4.g-lg-5 > .col-6 {
    grid-column: 1 / -1;
    max-width: 250px;
    justify-self: center;
  }
}
