@font-face{
  font-family: "PANNETJE";
  src: url("fonts/PANNETJE.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: "Serpentine";
  src: url("fonts/Serpentine.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root{
  --ui-font: "Inter", sans-serif;
  --aero-blue-light: rgb(220, 235, 255);
  --aero-blue-mid: rgb(170, 200, 230);
  --aero-blue-dark: rgb(120, 160, 200);
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scrollbar-gutter: stable;
  background:
    radial-gradient(
      ellipse at top center,
      #3a414a 0%,
      #2b3139 35%,
      #1e2329 65%,
      #161a1f 100%
    );
}

body{
  background: transparent;
  font-family: var(--ui-font);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

h1{
  font-family: "Serpentine", sans-serif;
}

.logo,
button,
.ui-text{
  font-family: "Inter", system-ui, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

nav a{
  font-family: "PANNETJE", sans-serif;
  letter-spacing: 0.08em;
  margin-left: 25px;
  text-decoration: none;
  color: #fff;
  font-weight: 400;
  opacity: 0.8;
  transition: opacity 0.2s;
}

nav a:hover{
  opacity: 1;
}

header{
  width: 100%;
  margin: 0;
  padding: 18px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(40, 78, 120, 0.70),
    rgba(12, 26, 44, 0.55)
  );
  backdrop-filter: blur(7px) saturate(165%);
  -webkit-backdrop-filter: blur(7px) saturate(165%);
  border: 1px solid rgba(0,0,0,0.55);
  border-radius: 10px;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.45),
    inset 0 8px 18px -12px rgba(0,0,0,0.45),
    inset 8px 0 18px -12px rgba(0,0,0,0.35),
    inset -8px 0 18px -12px rgba(0,0,0,0.35),
    inset 0 -8px 18px -12px rgba(0,0,0,0.55);
  position: sticky;
  top: 0;
  z-index: 10;
  overflow: hidden;
}

header::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      120% 80% at 50% 0%,
      rgba(255,255,255,0.35) 0%,
      rgba(255,255,255,0.12) 35%,
      rgba(255,255,255,0.00) 70%
    );
  opacity: 0.9;
}

.logo{
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.content-plate{
  position: relative;
  max-width: 1100px;
  margin: 70px auto 90px auto;
  padding: 60px 70px;
  background:
    linear-gradient(
      to bottom,
      #fdfdfd 0%,
      #f2f4f7 40%,
      #e4e8ee 100%
    );
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.55);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.60),
    0 0 0 1px rgba(255,255,255,0.6),
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -25px 40px rgba(0,0,0,0.10);
}

.hero{
  width: 100%;
  max-width: 1100px;
  text-align: center;
  padding: 120px 20px 40px;
}

.hero h1{
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  background: linear-gradient(90deg, #ff3d7a, #7a5bff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p{
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.8;
}

.hero button{
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.center-box{
  position: relative;
  max-width: 1180px;
  width: 1180px;
  flex: none;
  align-self: stretch;
  min-height: 80vh;
  margin: 40px auto 60px;
  padding: 40px 44px;
  background: linear-gradient(
    to bottom,
    #1e3653 0%,
    #12263d 40%,
    #0b1624 100%
  );
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 100% 100vh;
  background-color: #0b1624;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 30px 70px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -28px 40px rgba(0,0,0,0.35);
}

.center-box::before{
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 14px;
  background: linear-gradient(
    to bottom,
    #1e3653 0%,
    #12263d 40%,
    #0b1624 100%
  );
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: 100% 100vh;
  background-color: #0b1624;
  border: 1px solid rgba(0,0,0,0.70);
  box-shadow:
    0 35px 80px rgba(0,0,0,0.65),
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -10px 18px rgba(0,0,0,0.60);
}

.center-box::after{
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 6px;
  pointer-events: none;
  border-top: 1px solid rgba(255,255,255,0.20);
  border-left: 1px solid rgba(255,255,255,0.10);
  border-right: 1px solid rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(0,0,0,0.45);
  opacity: 0.9;
}

.inventory-marquee{
  width: calc(100% + 48px);
  margin-left: -24px;
  margin-right: -24px;
  margin-top: 28px;
  margin-bottom: 50px;
  padding: 8px 1px 8px 2px;

  background: rgba(10,26,42,.28);

  border-top:1px solid rgba(0,0,0,.35);
  border-left:1px solid rgba(0,0,0,.30);
  border-right:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.10);

  border-radius:4px;

  position:relative;
  overflow:hidden;
}

.inventory-window{
  overflow:hidden;
  width: 100%;
}

.inventory-track{
  display: flex;
  gap: 24px;
  width: max-content;
  animation: inventoryScroll 100s linear infinite;
}

.inventory-poster{
  flex: 0 0 auto;
  width: auto;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inventory-poster img{
  width: auto;
  height: auto;
  max-width: 280px;
  max-height: 260px;
  object-fit: contain;
  display: block;

  padding: 5px;
  background:
    linear-gradient(
      to bottom,
      #e9edf2 0%,
      #c9d0d8 45%,
      #9ea8b4 100%
    );

  border: 1px solid rgba(255,255,255,.35);

  box-shadow:
    0 0 0 1px rgba(0,0,0,.65),
    inset 0 1px 0 rgba(255,255,255,.65),
    inset 0 -1px 0 rgba(0,0,0,.25),
    0 8px 18px rgba(0,0,0,.45);

  border-radius: 3px;
}

@keyframes inventoryScroll{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-50%);
  }
}

.grid{
  width: 100%;
  max-width: 1100px;
  padding: 40px 20px 120px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.poster-card{
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.poster-card:hover,
.product-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.poster-card img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.poster-title{
  padding: 12px;
  font-weight: 600;
}

.small-hero{
  padding: 70px 20px 30px;
  text-align: left;
}

.small-hero h1{
  color: #ffffff;
}

.hero.small-hero h1{
  font-family: "Inter", sans-serif;
  font-size: 40px;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.hero.small-hero p{
  font-size: 18px;
  margin: 5px 0 20px 0;
  max-width: none;
  text-align: left;
}

.shop-grid{
  align-items: start;
}

.price-number{
  opacity:0;
}

.prices-ready .price-number{
  opacity:1;
}

.product-card{
  overflow: hidden;
  background: transparent;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.product-media{
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-media img{
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-body{
  width: 100%;
  flex: 1 1 auto;
  padding: 14px 14px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  justify-content: center;
}

.product-title{
  font-weight: 600;
  line-height: 1.25;
  min-height: calc(1.25em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price{
  color: #fff;
  font-weight: 600;
  opacity: 0.9;
}

.price-number{
  color: #00d9ff;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.price-amount{
  color: #00d5ff;
  font-weight: 700;
}

.product-btn{
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.product-btn-ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
}

.product-page{
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
}

.product-detail-grid{
  align-items: start;
}

.product-detail-card{
  grid-column: 1 / -1;
  background: transparent;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(240px, 300px);
  align-items: center;
  justify-content: center;
  column-gap: 50px;
}

.product-detail-card .product-media{
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

.product-detail-media{
  background: #0f0f12;
}

.product-detail-media img,
.product-detail-card .product-media img{
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-detail-card .product-body{
  margin: 10px;
  width: auto;
  flex: none;
}

.product-detail-body{
  height: 100%;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

#product-title{
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 0 0 8px;
  font-weight: 700;
}

.product-detail-card #product-title{
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 0 0 6px;
}

#product-price{
  font-size: 1rem;
  margin-bottom: 14px;
}

.product-subline{
  opacity: 0.85;
}

.product-back{
  color: #fff;
  opacity: 0.85;
  text-decoration: none;
}

.product-back:hover{
  opacity: 1;
  text-decoration: underline;
}

.product-detail-note{
  font-size: 0.95rem;
  opacity: 0.7;
  line-height: 1.4;
}

.product-missing{
  padding: 18px;
  opacity: 0.85;
}

.add-to-cart-btn{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  margin-bottom: 12px;
}

.add-to-cart-btn:hover{
  border-color: #00d9ff;
  color: #00d9ff;
}

.size-select{
  width: 100%;
  max-width: 340px;
  height: 34px;
  padding: 0 12px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 0;
  font-size: 0.9rem;
  text-align: center;
  text-align-last: center;
}

.size-select option,
.product-detail-card .size-select option{
  text-align: center;
  background: #111;
  color: #fff;
}

.size-btn:hover{
  background: rgba(140,90,255,0.25);
}

.size-dropdown{
  width: 100%;
  position: relative;
}

.size-trigger{
  width: 100%;
  height: 33px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
}

.size-trigger:focus{
  outline: none;
}

.size-dropdown.open .size-trigger{
  box-shadow:
    inset 0 3px 8px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.size-caret{
  position: absolute;
  right: 12px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.size-menu{
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  width: 100%;
  background: rgba(10, 10, 10, 0.92);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0;
  overflow: hidden;
  display: none;
  z-index: 50;
}

.size-dropdown.open .size-menu{
  display: block;
}

.size-option{
  width: 100%;
  background: transparent;
  color: #fff;
  border: 0;
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  text-align: center;
  font-size: 0.85rem;
}

.size-label{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.size-price{
  margin-right: 3px;
  margin-left: auto;
}

.size-price-amount{
  color: #00d5ff;
  font-weight: 500;
}

.cart-page{
  width: 100%;
  max-width: 1100px;
  padding: 40px 16px 80px;
}

.cart-title{
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.cart-empty{
  opacity: 0.85;
  padding: 18px 0;
}

.cart-items{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-item{
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 12px;
}

.cart-thumb{
  width: 115px;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.cart-meta{
  flex: 1 1 auto;
  min-width: 0;
}

.cart-name{
  font-weight: 700;
  margin-bottom: 4px;
}

.cart-sub{
  opacity: 0.8;
  font-size: 0.95rem;
}

.cart-right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-summary{
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 24px;
}

.cart-total{
  font-size: 1.1rem;
  font-weight: 600;
}

.free-shipping-message{
  margin-top: 12px;

  font-size: 0.9rem;
  font-weight: 600;

  text-align: right;

  color: #00d5ff;
}

.cart-badge[data-cart-count]{
  display: none;
}

.cart-badge{
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: 6px;
  border-radius: 999px;
  background: rgba(0,213,255,0.18);
  border: 1px solid rgba(0,213,255,0.35);
  color: rgba(0,213,255,0.9);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-0.5px);
}

.cart-qty{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.cart-qty-btn{
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.cart-qty-num{
  min-width: 22px;
  text-align: center;
  font-weight: 700;
}

.cart-qty-label{
  opacity: 0.8;
  font-size: 0.85rem;
}

.cart-qty-input,
.qty-input{
  width: 64px;
  text-align: center;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 0;
}

.cart-qty-input{
  height: 30px;
}

.qty-input{
  height: 33px;
  margin-top: 5px;
}

.qty-row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.qty-label{
  margin-top: 5px;
  opacity: 0.85;
  font-size: 0.9rem;
}

.cart-totals{
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
  text-align: right;
}

.cart-total-row{
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.95rem;
}

.cart-grand-total{
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 1.08rem;
  font-weight: 700;
}

#cartShippingRow, #cartTotalRow {
  display: none;
}

.nav-cart{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  left: 9px;
}

.cart-icon{
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.80;
  transform: translateY(1px);
}

.cart-badge{
  position: absolute;
  top: -10px;
  right: -3px;
  margin: 0;
}

.cart-added-pulse{
  transition: none !important;

  color: #00d5ff !important;
  border-color: rgba(0,213,255,0.75) !important;
  box-shadow:
    0 0 0 1px rgba(0,213,255,0.45),
    0 0 18px rgba(0,213,255,0.55),
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(0,0,0,0.75) !important;
}

#addToCartBtn{
  position: relative;
  transition: none !important;
}

#addToCartBtn.cart-added-pulse{
  color: transparent !important;
  transition: none !important;
}

#addToCartBtn.cart-added-pulse::before{
  content: "✓ Added to Cart";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d5ff;
  pointer-events: none;
}

.cart-badge-pop{
  animation: cartBadgePop 0.38s ease;
}

@keyframes cartBadgePop{
  0%{
    transform: scale(1) translateY(-0.5px);
  }
  45%{
    transform: scale(1.45) translateY(-0.5px);
    box-shadow: 0 0 14px rgba(0,213,255,0.65);
  }
  100%{
    transform: scale(1) translateY(-0.5px);
  }
}

.size-trigger.size-warning{
  color: #ff6b6b !important;
  border-color: rgba(255, 80, 80, 0.8) !important;
  box-shadow:
    0 0 0 1px rgba(255,80,80,0.45),
    0 0 14px rgba(255,80,80,0.45),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(0,0,0,.65) !important;
}

.size-trigger.size-warning #sizeTriggerText{
  color: #ff6b6b;
}

.launch-notice{
  margin-top: 14px;
  padding: 12px 14px;

  font-size: 0.85rem;
  line-height: 1.5;
  text-align: center;

  color: rgba(255,255,255,0.82);

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04);
  }

  .grand-opening-banner{
  width: 100%;

  margin: 0 0 -18px;
  padding: 8px 20px;

  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  color: #fff;

  background: #a84bc7;

  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(0,0,0,.35);

  box-shadow:
    0 6px 18px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.product-btn,
.hero button,
.buy-btn,
.add-to-cart-btn,
a.product-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 12px 26px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .4px;
  color: #dfe6ee;
  text-decoration: none;
  border-radius: 6px;
  background:
    linear-gradient(
      to bottom,
      #2e343b 0%,
      #242a30 50%,
      #1a1f24 100%
    );
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 2px 3px rgba(0,0,0,.35),
    0 0 0 1px rgba(0,0,0,.65),
    0 1px 0 rgba(255,255,255,.05),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(0,0,0,.6);
  cursor: pointer;
  transition: all .18s ease;
}

.product-btn:hover,
.hero button:hover,
.buy-btn:hover,
.add-to-cart-btn:hover,
a.product-btn:hover{
  background:
    linear-gradient(
      to bottom,
      #35414b 0%,
      #2a323a 50%,
      #20262c 100%
    );
  box-shadow:
    0 2px 3px rgba(0,0,0,.35),
    0 0 0 1px rgba(0,0,0,.8),
    inset 0 1px 0 rgba(255,255,255,.05),
    inset 0 -1px 0 rgba(0,0,0,.7);
}

button:active,
.product-btn:active,
.hero button:active,
.buy-btn:active,
.add-to-cart-btn:active{
  transform: translateY(0);
  box-shadow:
    inset 0 3px 8px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.qty-input,
.cart-qty-input{
  background:
    linear-gradient(
      to top,
      #2b3138 0%,
      #22282e 50%,
      #191e23 100%
    );
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 1px 2px rgba(0,0,0,.28),
    0 0 0 1px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.04),
    inset 0 -1px 0 rgba(0,0,0,.65);
  color: #dfe6ee;
}

.size-trigger{
  background:
    linear-gradient(
      to bottom,
      #2b3138 0%,
      #22282e 50%,
      #191e23 100%
    );
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 1px 2px rgba(0,0,0,.28),
    0 0 0 1px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.04),
    inset 0 -1px 0 rgba(0,0,0,.65);
  color: #dfe6ee;
}

.qty-input:focus,
.cart-qty-input:focus,
.size-trigger:focus{
  outline: none;
  box-shadow:
    0 1px 2px rgba(0,0,0,.28),
    0 0 0 1px rgba(50,90,135,.75),
    inset 0 1px 0 rgba(170,200,230,.06),
    inset 0 -1px 0 rgba(0,0,0,.7);
}

.size-trigger:active{
  transform: none;
  box-shadow: inherit;
}

.size-menu{
  background:
    linear-gradient(
      to bottom,
      #2a3138 0%,
      #20262c 100%
    );
  box-shadow:
    0 4px 10px rgba(0,0,0,.28),
    0 0 0 1px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.size-option{
  color: #dfe6ee;
}

.size-option:hover{
  background:
    linear-gradient(
      to bottom,
      rgba(70, 95, 125, .22),
      rgba(35, 45, 55, .18)
    );
}

.hero button,
#buyBtn,
#checkoutBtn{
  background:
    linear-gradient(
      to bottom,
      #334252 0%,
      #26313d 50%,
      #1b232c 100%
    );
}

.hero button:hover,
#buyBtn:hover,
#checkoutBtn:hover{
  background:
    linear-gradient(
      to bottom,
      #3b5168 0%,
      #2b3c4d 50%,
      #1e2a36 100%
    );
  box-shadow:
    0 2px 4px rgba(0,0,0,.35),
    0 0 0 1px rgba(55,95,140,.45),
    inset 0 1px 0 rgba(190,220,245,.10),
    inset 0 -1px 0 rgba(0,0,0,.75);
}

#checkoutBtn:active{
  transform: translateY(1px);
  box-shadow:
    inset 0 3px 8px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.hero button{
  min-width: 240px;
  padding: 17px 42px;
  font-size: 17px;
}

.cart-item .remove-btn,
.cart-item button.remove,
.cart-remove{
  min-width: auto;
  padding: 11px 44px;
  font-size: 13.5px;
  letter-spacing: .3px;
}

.left-panel-nav{
  position: fixed;
  left: 30px;
  top: 200px;
  width: 220px;
  z-index: 30;
}

.lpn-shell{
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.30));
}

.lpn-content{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 26px 18px 22px 56px;
  box-sizing: border-box;
}

.lpn-title{
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(120,165,205,0.95);
  text-shadow: 0 1px 0 rgba(255,255,255,0.70);
  margin-bottom: 10px;
}

.lpn-links a{
  display: block;
  position: relative;
  margin: 8px 0;
  padding: 12px 12px 12px 42px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  font-size: 12px;
  color: rgba(0,0,0,0.70);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.14);
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.90),
    rgba(228,235,243,0.88)
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -14px 18px rgba(0,0,0,0.06);
}

.lpn-links a::before{
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 12px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 6px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.80),
    rgba(200,210,220,0.85)
  );
  border: 1px solid rgba(0,0,0,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 -6px 10px rgba(0,0,0,0.10);
}

.lpn-links a:hover{
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.95),
    rgba(214,232,252,0.90)
  );
}

.lpn-links a:active{
  transform: translateY(1px);
}

.shop-layout{
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
  align-items: flex-start;
}

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

.filter-panel{
  flex: 0 0 260px;
  position: fixed;
  margin-top: 20px;
  top: 110px;
  transform: translateX(-790px);
  width: 260px;
  padding: 26px 22px;
  background:
    linear-gradient(
      to bottom,
      #1e3653 0%,
      #12263d 40%,
      #0b1624 100%
    );
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 25px 60px rgba(0,0,0,0.60),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -22px 35px rgba(0,0,0,0.35);
}

.filter-panel::after{
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 6px;
  pointer-events: none;
  border-top: 1px solid rgba(255,255,255,0.20);
  border-left: 1px solid rgba(255,255,255,0.10);
  border-right: 1px solid rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(0,0,0,0.45);
}

.filter-group{
  margin-bottom: 28px;
}

.filter-title{
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  opacity: .9;
}

.filter-link{
  display: block;
  padding: 6px 0;
  text-decoration: none;
  color: #dfe6ee;
  opacity: .75;
  font-size: 14px;
}

.filter-link:hover{
  opacity: 1;
  color: #00d5ff;
}

.filter-link.active,
.shape-row.active{
  opacity: 1;
  color: #fff;
}

.filter-link:visited{
  color: #dfe6ee;
  text-decoration: none;
}

.shape-row{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: #dfe6ee;
  text-decoration: none;
  font-size: 14px;
  opacity: .75;
}

.shape-row:hover{
  color: #ffffff;
}

.shape-icon{
  position: relative;
  display: block;
  border: 2px solid rgba(210,220,235,0.65);
  background: rgba(255,255,255,0.03);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 1px 2px rgba(0,0,0,0.30);
}

.shape-portrait{ width: 18px; height: 26px; }
.shape-landscape{ width: 26px; height: 18px; }
.shape-square{ width: 22px; height: 22px; }

.filter-panel .filter-group:first-of-type .filter-link:first-of-type{
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-page{
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 16px 80px;
}

.contact-title{
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-sub{
  opacity: 0.8;
  margin-bottom: 24px;
}

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-status{
  min-height: 1.2em;
  font-size: 0.9rem;
  opacity: 0.85;
}

.contact-row{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-row label{
  font-size: 0.9rem;
  opacity: 0.85;
}

.contact-row input,
.contact-row textarea{
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 10px;
  font-family: inherit;
}

.contact-row textarea{
  resize: vertical;
}

.checkout-page{
  width: 100%;
  max-width: 1100px;
  padding: 40px 16px 80px;
  margin: 0 auto;
}

.checkout-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.checkout-title{
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.checkout-sub{
  opacity: 0.82;
  margin-bottom: 22px;
}

.checkout-form{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.checkout-section{
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  background: rgba(255,255,255,0.02);
}

.checkout-section-title{
  font-size: 1rem;
  margin-bottom: 14px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.checkout-row{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.checkout-row:last-child{
  margin-bottom: 0;
}

.checkout-row label{
  font-size: 0.9rem;
  opacity: 0.88;
}

.checkout-row input{
  height: 38px;
  padding: 0 10px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  border-radius: 0;
  font-family: inherit;
}

.checkout-optional{
  opacity: 0.6;
}

.checkout-two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.checkout-three-col-mobile{
  grid-template-columns: 1fr 1fr 1fr;
}

.checkout-delivery-box{
  padding: 12px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
  opacity: 0.9;
}

.checkout-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
}

.checkout-back-link{
  color: #fff;
  text-decoration: none;
  opacity: 0.82;
}

.checkout-back-link:hover{
  opacity: 1;
}

.checkout-summary{
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  background: rgba(255,255,255,0.03);
  position: sticky;
  top: 95px;
}

.checkout-summary-title{
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.checkout-empty{
  opacity: 0.82;
}

.checkout-items{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-item{
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.checkout-item-thumb{
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.checkout-item-thumb img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkout-item-meta{
  min-width: 0;
}

.checkout-item-title{
  font-weight: 700;
  margin-bottom: 4px;
}

.checkout-item-sub{
  font-size: 0.9rem;
  opacity: 0.78;
}

.checkout-item-price{
  white-space: nowrap;
  text-align: right;
}

.checkout-summary-totals{
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-total-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.checkout-muted{
  opacity: 0.65;
}

.checkout-grand-total{
  position: relative;
  margin-top: 14px;
  padding-top: 18px;
  font-weight: 700;
  border-top: none;
}

.checkout-grand-total::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255,255,255,0.16);
}

.checkout-three-col-mobile{
  grid-template-columns: minmax(0, 1fr) minmax(90px, .7fr) minmax(90px, .7fr);
}

footer{
  width: 100%;
  padding: 30px;
  text-align: center;
  opacity: 0.5;
  font-size: 0.9rem;
}

.menu-toggle{
  display: none;
  width: 42px;
  height: 42px;
  min-width: 42px;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 30;
  cursor: pointer;
}

.menu-toggle span{
  position: absolute;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  transition:
    transform 0.28s ease,
    opacity 0.2s ease,
    top 0.28s ease;
}

.menu-toggle span:nth-child(1){ top: 13px; }
.menu-toggle span:nth-child(2){ top: 20px; }
.menu-toggle span:nth-child(3){ top: 27px; }

.menu-toggle.open span:nth-child(1){
  top: 20px;
  transform: rotate(45deg);
}

.menu-toggle.open span:nth-child(2){
  opacity: 0;
}

.menu-toggle.open span:nth-child(3){
  top: 20px;
  transform: rotate(-45deg);
}

.site-nav{
  display: flex;
  align-items: center;
}

.toolbar-actions,
.view-toggle{
  display:none;
}

@media (max-width: 1900px) and (min-width: 901px){
  .page-scale{
    zoom: .94;
    margin-bottom: 0;
  }
  .filter-panel{
    position: fixed;
    top: 89px;
    left: calc(50% - 872px);
    transform: scale(.94);
  }
}
@media (max-width: 1900px){
  header{
    padding: 17px 26px;
  }
  .logo{
    font-size: 1.5rem;
  }
  .site-nav a{
    font-size: .94em;
    margin-left: 23px;
  }
  .cart-icon{
    width: 21px;
    height: 21px;
  }
  .cart-badge{
    min-width: 17px;
    height: 17px;
    font-size: 11px;
    top: -9px;
    right: -2px;
  }
}

@media (max-width: 1800px) and (min-width: 901px){
  .page-scale{
    zoom: .88;
    margin-bottom: 0;
  }
  .filter-panel{
    position: fixed;
    top: 69px;
    left: calc(50% - 824px);
    transform: scale(.88);
  }
}
@media (max-width: 1800px){
  header{
    padding: 16px 24px;
  }
  .logo{
    font-size: 1.4rem;
  }
  .site-nav a{
    font-size: .88em;
    margin-left: 21px;
  }
  .cart-icon{
    width: 19px;
    height: 19px;
  }
  .cart-badge{
    min-width: 16px;
    height: 16px;
    font-size: 10px;
    top: -8px;
    right: 0.5px;
  }
}

@media (max-width: 1700px) and (min-width: 901px){
  .page-scale{
    zoom: .82;
    margin-bottom: 0;
  }
  .filter-panel{
    position: fixed;
    top: 48px;
    left: calc(50% - 778px);
    transform: scale(.82);
  }
}
@media (max-width: 1700px){
  header{
    padding: 15px 22px;
  }
  .logo{
    font-size: 1.31rem;
  }
  .site-nav a{
    font-size: .82em;
    margin-left: 19px;
  }
  .cart-icon{
    width: 18px;
    height: 18px;
  }
  .cart-badge{
    min-width: 15px;
    height: 15px;
    font-size: 9px;
    top: -8px;
    right: 1px;
  }
}

@media (max-width: 1600px) and (min-width: 901px){
  .page-scale{
    zoom: .76;
    margin-bottom: 0;
  }
  .filter-panel{
    position: fixed;
    top: 27px;
    left: calc(50% - 732px);
    transform: scale(.76);
  }
}
@media (max-width: 1600px){
  header{
    padding: 14px 20px;
  }
  .logo{
    font-size: 1.23rem;
  }
  .site-nav a{
    font-size: .76em;
    margin-left: 17px;
  }
  .cart-icon{
    width: 17px;
    height: 17px;
  }
  .cart-badge{
    min-width: 14px;
    height: 14px;
    font-size: 9px;
    top: -7px;
    right: 1.5px;
  }
}

@media (max-width: 1500px) and (min-width: 901px){
  .page-scale{
    zoom: .70;
    margin-bottom: 0;
  }
  .filter-panel{
    position: fixed;
    top: 7px;
    left: calc(50% - 685px);
    transform: scale(.70);
  }
}
@media (max-width: 1500px){
  header{
    padding: 13px 18px;
  }
  .logo{
    font-size: 1.16rem;
  }
  .site-nav a{
    font-size: .70em;
    margin-left: 15px;
  }
  .cart-icon{
    width: 16px;
    height: 16px;
  }
  .cart-badge{
    width: 12px;
    height: 13px;
    font-size: 8px;
    top: -7.5px;
    right: 3.5px;
  }
}

@media (max-width: 1100px){
  .left-panel-nav{
    display: none;
  }
}

@media (max-width: 980px){
  .checkout-grid{
    grid-template-columns: 1fr;
  }

  .checkout-summary{
    position: static;
  }
}

.browse-toolbar{
  display: block;
}

.filter-toggle,
.mobile-filter-drawer{
  display: none !important;
}

@media (max-width: 900px){

  .page-scale{
  width: 100%;
  zoom: 1;
  }

  .inventory-marquee{
    width: calc(100% + 12px);
    margin-left: -6px;
    margin-right: -6px;
    margin-top: 20px;
    margin-bottom: 12px;
  }

  .inventory-poster{
    height: auto;
  }

  .inventory-poster img{
    max-width: 220px;
    max-height: 200px;
    padding: 5px;
  }

  .inventory-track{
    gap: 20px;
  }

  .product-detail-card{
    grid-template-columns: 1fr;
    row-gap: 18px;
    overflow: visible;
  }

  .product-detail-card .product-media{
    max-width: 100%;
    max-height: 55vh;
  }

  .product-page,
  .contact-page,
  .checkout-page,
  .cart-page{
    padding: 18px 0 30px;
  }

  .product-detail-card .product-body{
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .product-detail-card #product-title,
  #product-title{
    font-size: 1.5rem;
    text-align: center;
  }

  #product-price{
    text-align: center;
    margin-bottom: 10px;
  }

  .qty-row{
    justify-content: center;
  }

  .grand-opening-banner{
  width: 100%;

  margin: 0 0 -6px;
  padding: 5px 20px;

  text-align: center;
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.8px;
}

  .size-dropdown,
  .qty-row,
  #addToCartBtn,
  #buyBtn{
    width: 100%;
  }

  #addToCartBtn,
  #buyBtn,
  .checkout-actions .product-btn,
  .cart-actions .product-btn,
  .contact-form .product-btn{
    min-width: 0;
    width: 100%;
  }

  .cart-icon{
  width: 22px;
  height: 22px;
  }

  .cart-badge{
    min-width: 18px;
    height: 18px;
    font-size: 12px;
    top: -10px;
    right: -1px;
  }

  .cart-item{
    align-items: flex-start;
  }

  .cart-summary{
    flex-direction: column;
    align-items: stretch;
  }

  .cart-actions{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .checkout-grid{
    gap: 18px;
  }

  .checkout-section,
  .checkout-summary{
    padding: 16px;
  }

  .checkout-two-col{
    margin-bottom: 14px;
  }

  .center-box{
    min-height: 0;
    width: calc(100% - 20px);
    margin: 18px auto 30px;
    padding: 22px 16px;
    border-radius: 8px;
  }

  .center-box::before{
    inset: -6px;
    border-radius: 12px;
  }

  .center-box::after{
    inset: 6px;
  }

  .hero{
    padding: 34px 0 12px;
  }

  .hero h1{
    font-size: 1.5rem;
    line-height: 1.02;
  }

  .hero p{
    font-size: 0.9rem;
    padding: 0 20px;
    margin-bottom: 22px;
  }

  .hero button{
    width: calc(100% - 178px);
    min-width: 0;
    margin: 0 auto;
    padding: 11px 12px;
    font-size: 0.75rem;
  }

  .center-box > .hero:not(.small-hero) button{
  width: 140px;
  padding: 12px;
  white-space: nowrap;
}

.center-box > .hero:not(.small-hero) button a{
  white-space: nowrap;
}

  .grid{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 0 34px;
  }

  .small-hero{
    padding: 10px 0 16px;
  }

  .hero.small-hero h1{
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .hero.small-hero p{
    font-size: 0.88rem;
    line-height: 1.4;
    margin-bottom: 0;
    padding: 0;
  }

  .shop-layout{
    padding: 0;
    gap: 16px;
  }

  .filter-panel{
    padding: 18px 16px;
    border-radius: 8px;
  }

  .filter-group{
    margin-bottom: 18px;
  }

  .filter-title{
    margin-bottom: 8px;
  }

  .filter-link,
  .shape-row{
    padding: 9px 0;
    font-size: 0.95rem;
  }

  .browse-toolbar{
    width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.filter-toggle{
  margin-top: -5px !important;
  margin-right: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  aspect-ratio: 1 / 1;
  padding: 0;
  line-height: 1;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  background:
    linear-gradient(
      to bottom,
      #334252 0%,
      #26313d 50%,
      #1b232c 100%
    );
  box-shadow:
    0 2px 4px rgba(0,0,0,.35),
    0 0 0 1px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.08);
  -webkit-tap-highlight-color: transparent;
}

.filter-toggle:active{
  transform:none;
  box-shadow:
    inset 0 3px 8px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.05);
}

.filter-toggle-icon{
  position: relative;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-5.8px);
}

.filter-toggle-icon span{
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
}

.filter-toggle-icon span:nth-child(1){ top: 1px; }
.filter-toggle-icon span:nth-child(2){ top: 7px; }
.filter-toggle-icon span:nth-child(3){ top: 13px; }

.filter-toggle-icon span:nth-child(1)::after,
.filter-toggle-icon span:nth-child(2)::after,
.filter-toggle-icon span:nth-child(3)::after{
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dfe6ee;
  transform: translateY(-50%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.35);
}

.filter-toggle-icon span:nth-child(1)::after{ right: 1px; }
.filter-toggle-icon span:nth-child(2)::after{ left: 5px; }
.filter-toggle-icon span:nth-child(3)::after{ right: 5px; }

.filter-panel{
  display: none;
}

.mobile-filter-drawer{
  position: fixed;
  inset: 0;
  z-index: 60;

  display: flex !important;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.45);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.22s ease,
    visibility 0.22s ease;
}

.mobile-filter-drawer.open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-filter-inner{
  width: min(320px, calc(100vw - 32px));
  max-height: 80vh;
  overflow-y: auto;

  padding: 18px 18px 14px;
  margin-top: -24px;

  background:
    linear-gradient(
      to bottom,
      #1e3653 0%,
      #12263d 40%,
      #0b1624 100%
    );

  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;

  box-shadow:
    0 22px 48px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.10);

  transform: translateY(8px) scale(0.98);
  transition: transform 0.22s ease;
}

.mobile-filter-drawer.open .mobile-filter-inner{
  transform: translateY(0) scale(1);
}

.mobile-filter-inner .filter-group{
  margin-bottom: 16px;
}

.mobile-filter-inner .filter-group:last-child{
  margin-bottom: 0;
}

.mobile-filter-inner .filter-link,
.mobile-filter-inner .shape-row{
  padding: 8px 0;
}

.browse-toolbar h1{
  margin: 0;
}

  .product-title{
    min-height: auto;
    font-size: 0.95rem;
  }

  .product-body{
    padding: 12px 10px 16px;
  }

  .product-price{
    font-size: 0.95rem;
  }

  header{
    position: sticky;
    top: 0;
    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    overflow: visible;
    z-index: 50;
  }

  .menu-toggle{
    display: inline-flex;
    justify-self: start;
  }

  .menu-toggle:active,
  .menu-toggle.open,
  .menu-toggle.open:active{
    box-shadow: none;
    transform: none;
  }

  .logo{
    font-size: 1.2rem;
    line-height: 1.1;
    text-align: center;
  }

  .site-nav{
    position: fixed;
    top: 71px;
    left: 0;
    width: min(320px, 84vw);
    height: calc(100vh - 73px);

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    padding: 7px 0 24px;
    margin: 0;

    background: linear-gradient(
      to bottom,
      rgba(24, 52, 84, 0.96),
      rgba(12, 26, 44, 0.98) 40%,
      rgba(6, 14, 24, 0.99) 100%
    );
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);

    border-right: 1px solid rgba(255,255,255,0.12);
    border-top: none;

    box-shadow:
      12px 0 28px rgba(0,0,0,0.40),
      0 16px 24px -12px rgba(0,0,0,0.55),
      inset 0 10px 18px -10px rgba(0,0,0,0.85);

      clip-path: inset(0 -40px -40px 0);

    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition:
      transform 0.32s ease,
      opacity 0.22s ease,
      visibility 0.22s ease;

    z-index: 20;
    overflow-y: auto;
  }

  .site-nav.open{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .site-nav a{
    margin-left: 0;
    padding: 18px 22px;
    text-align: left;
    font-size: 1rem;
    opacity: 0.95;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .site-nav a:first-child{
    border-top: 0;
  }

  .site-nav a:hover,
  .site-nav a.active{
    opacity: 1;
    background: rgba(255,255,255,0.06);
  }

  .nav-cart{
    width: 48px;
    min-width: 48px;
    margin-left: 0;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-cart .cart-badge{
    right: -1px;
  }

  .toolbar-actions{
  display:flex;
  gap:8px;
  align-items:flex-start;
}

.view-toggle{
  display:inline-flex !important;
  align-items:center;
  justify-content:center;

  width:32px;
  height:32px;
  flex:0 0 32px;
  padding:0;
  margin-top: -5px !important;

  border:1px solid rgba(255,255,255,.12);
  border-radius:6px;

  background:
   linear-gradient(
    to bottom,
    #334252 0%,
    #26313d 50%,
    #1b232c 100%
   );

  box-shadow:
   0 2px 4px rgba(0,0,0,.35),
   0 0 0 1px rgba(0,0,0,.5),
   inset 0 1px 0 rgba(255,255,255,.08);
}

/* tiny "grid" icon */
.view-icon{
  width: 16px;
  height: 16px;
  display: grid;
  grid-template-columns: 6px 6px;
  grid-template-rows: 6px 6px;
  gap: 3px;
  align-content: center;
  justify-content: center;
}

.view-icon span{
  display: block;
  width: 6px !important;
  height: 6px !important;
  min-width: 6px;
  min-height: 6px;
  border: none;
  background: rgba(255,255,255,.92);
}

/* when two-column mode is active */
.view-toggle:active{
 box-shadow:
   inset 0 3px 8px rgba(0,0,0,.55);
}

.shop-grid.two-col{
  grid-template-columns:repeat(2,1fr) !important;
  gap:14px;
}

  footer{
    padding: 22px 14px 28px;
    font-size: 0.82rem;
  }
}

@media (max-width: 640px){
  .center-box{
    width: calc(100% - 12px);
    padding: 22px 16px;
  }

  .grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .poster-title,
  .product-title{
    font-size: 0.95rem;
  }

  .nav-cart {
    left: 0px;
  }

  .cart-item{
    flex-direction: column;
    gap: 12px;
  }

  .cart-thumb{
    width: 100%;
    height: auto;
    max-height: 220px;
  }

  .cart-thumb img{
    max-height: 220px;
  }

  .cart-right{
    width: 100%;
    align-items: stretch;
  }

  .cart-qty{
    justify-content: space-between;
  }

  .cart-qty-input{
    width: 72px;
  }

  .checkout-two-col .checkout-row{
  margin-bottom: 0;
}

  .checkout-two-col,
  .checkout-three-col-mobile{
    grid-template-columns: 1fr;
  }

  .checkout-item{
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .checkout-item-price{
    grid-column: 2;
    text-align: left;
  }

  .checkout-actions{
    flex-direction: column;
    align-items: stretch;
  }

  .checkout-title,
  .cart-title,
  .contact-title{
    font-size: 1.7rem;
  }

  .shape-row{
    justify-content: space-between;
  }
}

@media (min-width: 901px){
  .site-nav{
    position: static;
    flex-direction: row;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }

  header{
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .menu-toggle{
    display: none !important;
  }

  .logo{
    flex: 0 0 auto;
  }

  .site-nav{
    margin-left: auto;
    gap: 0;
  }

  .site-nav a{
    margin-left: 25px;
  }

  .nav-cart{
    width: 48px;
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }
}

/* SEO product-card links */
a.product-card{
  display: block;
  color: inherit;
  text-decoration: none;
}
a.product-card:hover{
  color: inherit;
  text-decoration: none;
}

/* Product SEO text */
.product-seo-copy{
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: center;
  color: rgba(255,255,255,0.78);
}

.product-seo-copy h2{
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  color: #fff;
}
