

: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;
}

.pc-media::before{
  content:"";
  position:absolute;
  inset:10px;
  border-radius:20px;
  background: rgba(255,255,255,.55);
  pointer-events:none;
}



html,
body{
  height: 100%;
  margin: 0;
  padding: 0;
}

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{
  max-width: 100%;
  display: block;
}
.logotech-brand__name {
  font-size: clamp(0.9rem, 4vw, 1.5rem);
  line-height: 1.1;
}

a{
  color: inherit;
}

.store-page{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.store-main{
  flex: 1 0 auto;
  width: 100%;
}

.store-container{
  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(22,32,51,.07);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(248,250,253,.98) 100%);
  box-shadow:
    0 10px 24px rgba(22,32,51,.05),
    0 2px 8px rgba(22,32,51,.03);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.product-card--store:hover{
  transform: translateY(-6px);
  border-color: rgba(79,110,247,.16);
  box-shadow:
    0 20px 42px rgba(22,32,51,.10),
    0 6px 18px rgba(22,32,51,.05);
}



.pc-media::before{
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(22,32,51,.04);
  pointer-events: none;
}

.pc-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 65%, rgba(22,32,51,.02) 100%);
  pointer-events: none;
}

.pc-media{
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background:
    radial-gradient(circle at top right, rgba(79,110,247,.08), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
  border-bottom: 1px solid rgba(22,32,51,.05);
}

.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:
    radial-gradient(circle at top right, rgba(79,110,247,.08), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
}

.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{
  background: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(22, 32, 51, 0.703);
}

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

.footer-link{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--store-muted);
  text-decoration: none;
  font-weight: 700;
  padding: .25rem 0;
}

.footer-link:hover{
  color: var(--store-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================
   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;
}

.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: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(247,249,252,.98) 100%);
  box-shadow: 0 16px 34px rgba(22,32,51,.07);
}



.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:
    radial-gradient(circle at top right, rgba(79,110,247,.08), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
}

.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: #f3f5f9;
  overflow: hidden;
}

.store-runway--deals .store-runway-card__media{
  background: linear-gradient(180deg, #fff7f8 0%, #f3f5f9 100%);
}

.store-runway--arrivals .store-runway-card__media{
  background: linear-gradient(180deg, #f8fbff 0%, #f3f5f9 100%);
}

.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:
    radial-gradient(circle at top right, rgba(239,68,68,.08), transparent 34%),
    linear-gradient(180deg, rgba(247,249,252,1), rgba(240,244,250,1));
}

.store-feature-band--arrivals .store-runway-card__media{
  background:
    radial-gradient(circle at top right, rgba(79,110,247,.10), transparent 34%),
    linear-gradient(180deg, rgba(248,251,255,1), rgba(239,246,255,1));
}

.store-feature-band--deals .store-runway-card__img,
.store-feature-band--arrivals .store-runway-card__img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  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;
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.18));
}

.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{
  transform: scale(0.5);
  transform-origin: top left;
  width: 200%;
}
/* =========================
   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(100vh - 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(100vh - 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: linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
  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-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;
  background: #fff;
  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: linear-gradient(180deg, #f8fbff 0%, #eef3f9 100%);
  border-bottom: 1px solid rgba(22,32,51,.06);
  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-sku {
    font-size: 0.74rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.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(100vw - 380px));
  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: 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: 6.45rem;
  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: 15.5rem;
    padding: 14px 14px 13px;
  }

  .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.55rem;
    max-height: 1.55rem;
  }

  .product-card--store .pc-footer {
    min-height: 6.25rem;
  }
}

/* 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;
  }
}
