html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  touch-action: pan-y;
}

body.info-open {
  overflow-x: clip;
}

.storefront-bg {
  background-color: #0a0a0a;
  background-image:
    radial-gradient(circle at 8% 4%, rgba(184, 212, 227, 0.1), transparent 27rem),
    radial-gradient(circle at 88% 26%, rgba(232, 232, 232, 0.045), transparent 30rem),
    linear-gradient(180deg, rgba(20, 20, 20, 0.4), transparent 22rem);
  background-attachment: fixed;
}

.storefront-bg::before {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  opacity: 0.02;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0.55px, transparent 0.7px);
  background-size: 7px 7px;
}

[hidden] {
  display: none !important;
}

::selection {
  color: #0a0a0a;
  background: #b8d4e3;
}

.announcement-track {
  display: inline-flex;
  width: max-content;
  max-width: none;
  will-change: transform;
  animation: marquee 18s linear infinite;
}

.announcement-copy {
  flex: none;
}

.announcement-bar,
.category-bar {
  background: rgba(10, 10, 10, 0.72);
}

.brand-logo {
  display: block;
  width: min(32vw, 132px);
  max-height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(232, 232, 232, 0.16));
}

.brand-logo-footer {
  display: block;
  width: min(64vw, 210px);
  margin: 0 auto 1.75rem;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(232, 232, 232, 0.14));
}

.header-action {
  display: flex;
  height: 42px;
  width: 42px;
  align-items: center;
  justify-content: center;
  color: #e8e8e8;
  transition: color 150ms ease;
}

.header-action:hover {
  color: #b8d4e3;
}

.overlay-panel {
  background: rgba(10, 10, 10, 0.98);
}

.floating-panel {
  position: absolute;
  top: 72px;
  border: 1px solid #1f1f1f;
  background: #0a0a0a;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
}

.info-panel {
  position: absolute;
  top: 72px;
  bottom: auto;
  left: 1rem;
  display: block;
  width: min(300px, calc(100vw - 2rem));
  max-height: none;
  overflow: visible;
  padding: 1.1rem;
  border-width: 1px;
  z-index: 80;
  transform-origin: top left;
  animation: menuDrop 140ms ease-out;
}

.info-nav {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.info-brand {
  display: none;
}

.info-brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(232, 232, 232, 0.13));
}

.info-brand span {
  display: block;
  margin-top: 0.65rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-primary {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  margin-top: 0;
  color: #e8e8e8;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.35;
}

.info-secondary {
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid #1f1f1f;
  color: #c0c0c0;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.info-secondary button,
.info-secondary a {
  padding: 0;
  text-align: left;
}

.info-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  padding-top: 0.45rem;
}

.info-social a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #1f1f1f;
  color: #e8e8e8;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.info-social a:hover {
  border-color: #b8d4e3;
  color: #ffffff;
  background: rgba(184, 212, 227, 0.08);
}

.social-glyph {
  position: relative;
  display: block;
  width: 17px;
  height: 17px;
}

.social-glyph-instagram {
  border: 1.5px solid currentColor;
  border-radius: 5px;
}

.social-glyph-instagram::before {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  content: "";
}

.social-glyph-instagram::after {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 2.5px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.social-glyph-tiktok::before {
  position: absolute;
  top: 1px;
  left: 8px;
  width: 6px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  content: "";
  transform: skewY(8deg);
}

.social-glyph-tiktok::after {
  position: absolute;
  bottom: 1px;
  left: 1px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 999px;
  content: "";
}

[data-info-view][aria-pressed="true"] {
  color: #ffffff;
}

.info-content p,
.info-content a {
  overflow-wrap: anywhere;
}

.sort-control {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  width: 100% !important;
  min-width: 0;
  align-items: center;
  gap: 1rem;
  border: 0;
  background: transparent;
  padding: 0;
  color: #e8e8e8;
}

.sort-control-title {
  justify-self: start !important;
  color: #c0c0c0;
  font-size: 0.68rem;
  letter-spacing: 0;
  text-transform: none;
}

.sort-control-value {
  display: inline-flex;
  align-items: center;
  justify-self: end !important;
  margin-left: auto;
  border: 0;
  background: transparent;
  padding: 0;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 0.22rem;
  white-space: nowrap;
  transition: color 150ms ease;
}

.sort-control-value:hover,
.sort-control-value[aria-expanded="true"] {
  color: #b8d4e3;
}

.sort-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  z-index: 90;
  display: grid;
  min-width: 164px;
  border: 1px solid #1f1f1f;
  background: #0a0a0a;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.36);
  animation: menuDrop 120ms ease-out;
}

.sort-menu button {
  padding: 0.64rem 0.75rem;
  color: #c0c0c0;
  font-size: 0.72rem;
  text-align: left;
  transition: color 150ms ease, background 150ms ease;
}

.sort-menu button:hover,
.sort-menu button[aria-pressed="true"] {
  color: #ffffff;
  background: rgba(184, 212, 227, 0.08);
}

.policy-main {
  min-height: calc(100vh - 72px);
  padding: clamp(3.25rem, 7vw, 6.25rem) 1rem 5rem;
}

.policy-hero,
.policy-card {
  width: min(820px, 100%);
  margin: 0 auto;
}

.policy-hero {
  text-align: center;
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.policy-kicker {
  margin-bottom: 0.9rem;
  color: #b8d4e3;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.policy-hero h1 {
  max-width: 760px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
}

.policy-hero p {
  max-width: 620px;
  margin-top: 1.25rem;
  margin-right: auto;
  margin-left: auto;
  color: #c0c0c0;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.policy-card {
  display: block;
  border: 1px solid #1f1f1f;
  background: rgba(10, 10, 10, 0.84);
}

.policy-block,
.contact-card {
  background: transparent;
  padding: clamp(1.35rem, 3.5vw, 2.4rem);
  text-align: center;
}

.policy-block + .policy-block {
  border-top: 1px solid #1f1f1f;
}

.policy-block h2 {
  margin-bottom: 0.9rem;
  color: #ffffff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
}

.policy-block p,
.contact-card p {
  max-width: 610px;
  margin-right: auto;
  margin-left: auto;
  color: #c0c0c0;
  font-size: 0.95rem;
  line-height: 1.75;
}

.policy-block a,
.contact-card a {
  color: #b8d4e3;
  transition: color 150ms ease;
}

.policy-block a:hover,
.contact-card a:hover {
  color: #ffffff;
}

.contact-card {
  display: block;
  border: 1px solid #1f1f1f;
}

.contact-mail {
  display: inline-block;
  margin-bottom: 1.4rem;
  color: #ffffff;
  font-size: clamp(1.8rem, 6vw, 4rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.no-scrollbar {
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.category-link {
  position: relative;
  padding: 2px 0;
  transition: color 150ms ease;
}

.category-link:hover,
.category-link[aria-pressed="true"] {
  color: #ffffff;
}

.category-link[aria-pressed="true"]::after {
  position: absolute;
  right: 0;
  bottom: -17px;
  left: 0;
  height: 1px;
  content: "";
  background: #b8d4e3;
}

.sub-category {
  flex: none;
  border: 1px solid #1f1f1f;
  padding: 9px 15px;
  color: #c0c0c0;
  font-size: 12px;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
}

.sub-category:hover,
.sub-category[aria-pressed="true"] {
  border-color: #b8d4e3;
  color: #ffffff;
}

.filter-chip {
  border: 1px solid #1f1f1f;
  padding: 9px 12px;
  color: #c0c0c0;
  font-size: 12px;
}

.filter-chip[aria-pressed="true"] {
  color: #0a0a0a;
  border-color: #b8d4e3;
  background: #b8d4e3;
}

.product-card {
  background: #0a0a0a;
}

.product-photo {
  overflow: hidden;
  background: rgba(10, 10, 10, 0.74);
  box-shadow: inset 0 0 0 1px rgba(232, 232, 232, 0.04);
}

.product-photo img {
  transition: transform 350ms ease, opacity 250ms ease;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.5rem;
}

.product-thumb {
  overflow: hidden;
  border: 1px solid #1f1f1f;
  background: #0a0a0a;
  opacity: 0.58;
  transition: border-color 150ms ease, opacity 150ms ease;
}

.product-thumb:hover,
.product-thumb[aria-pressed="true"] {
  border-color: #b8d4e3;
  opacity: 1;
}

.product-card:hover .product-photo img,
.product-card:focus-within .product-photo img {
  transform: scale(1.025);
}

.add-button {
  color: #c0c0c0;
  font-size: 10px;
  letter-spacing: 0.16em;
  transition: color 150ms ease;
}

.add-button:hover {
  color: #b8d4e3;
}

.cart-pop {
  animation: cartPop 250ms ease-out;
}

.cart-thumb {
  display: block;
  overflow: hidden;
  width: 64px;
  background: #0a0a0a;
  box-shadow: inset 0 0 0 1px rgba(232, 232, 232, 0.08);
}

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

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-6px) scaleY(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 116px;
  }
}

@media (max-width: 767px) {
  body,
  main,
  header,
  footer {
    width: 100%;
    max-width: 100vw;
  }

  .announcement-bar,
  .category-bar {
    max-width: 100vw;
    overflow-x: clip;
  }

  .category-bar .no-scrollbar {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    row-gap: 0.85rem;
    touch-action: pan-y;
  }

  .floating-panel {
    max-width: calc(100vw - 2rem);
  }

  .info-panel {
    top: 72px;
    right: auto;
    bottom: auto;
    left: 0.5rem;
    display: block;
    width: min(300px, 70vw);
    max-width: none;
    max-height: none;
    height: auto;
    overflow: visible;
    padding: 1rem;
    border-width: 1px;
    border-color: #2a2a2a;
  }

  .info-nav {
    display: block;
    padding: 0;
    border-right: 0;
    background: transparent;
  }

  .info-brand {
    display: none;
  }

  .info-primary {
    gap: 1rem;
    margin-top: 0;
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .info-secondary {
    gap: 0.7rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .info-secondary button,
  .info-secondary a {
    padding: 0;
  }

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

  .policy-main {
    padding-top: 2.5rem;
  }

  .policy-card {
    width: min(100%, 560px);
  }

  .policy-block,
  .contact-card {
    padding: 1.25rem;
  }

  .policy-hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.65rem);
  }

  .contact-mail {
    font-size: clamp(1.55rem, 8vw, 2.5rem);
  }

  [aria-label="Product navigation"] .font-mono {
    display: none;
  }
}

@keyframes cartPop {
  40% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.prefooter-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  color: #c0c0c0;
  text-align: center;
  margin-bottom: 2rem;
}

.accordion-row {
  border-top: 1px solid #1f1f1f;
}

.accordion-row:last-child {
  border-bottom: 1px solid #1f1f1f;
}

.accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: #c0c0c0;
  text-align: left;
  transition: color 150ms ease;
}

.accordion-btn:hover,
.accordion-btn[aria-expanded="true"] {
  color: #ffffff;
}

.accordion-chevron {
  flex-shrink: 0;
  color: #c0c0c0;
  transition: transform 200ms ease, color 200ms ease;
}

.accordion-btn[aria-expanded="true"] .accordion-chevron {
  transform: rotate(180deg);
  color: #b8d4e3;
}

.accordion-body {
  padding-bottom: 1.5rem;
  color: #b8b8b8;
  font-size: 0.95rem;
  line-height: 1.85;
}

.accordion-body a {
  color: #b8d4e3;
  text-underline-offset: 0.22rem;
}

.accordion-body a:hover {
  color: #ffffff;
}

.prefooter-subscribe-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #e8e8e8;
  margin-bottom: 0.75rem;
}

.prefooter-subscribe-sub {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #c0c0c0;
  margin-bottom: 2rem;
}

.prefooter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  border: 1px solid rgba(192, 192, 192, 0.5);
  transition: border-color 150ms ease;
}

.prefooter-form:focus-within {
  border-color: #e8e8e8;
}

.prefooter-input {
  flex: 1;
  min-width: 0;
  padding: 0.9rem 1rem;
  background: transparent;
  color: #e8e8e8;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  outline: none;
}

.prefooter-input::placeholder {
  color: #c0c0c0;
}

.prefooter-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  border-left: 1px solid rgba(192, 192, 192, 0.5);
  color: #c0c0c0;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease;
}

.prefooter-submit:hover {
  color: #0a0a0a;
  background: #c0c0c0;
}

.prefooter-success {
  max-width: 460px;
  margin: 0 auto;
  padding: 0.9rem 1rem;
  border: 1px solid #b8d4e3;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: #b8d4e3;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
