@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap");

:root {
  --page: #050505;
  --ink: #f7f7f2;
  --muted: #a8a8a0;
  --line: #2c2c2c;
  --soft-line: #181818;
  --header: #050505;
  --panel: #0d0d0d;
  --panel-soft: #151515;
  --radius-card: 18px;
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 64px;
  --category-height: 43px;
  --font: "Inter", Arial, Helvetica, sans-serif;
  --display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", Courier, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.48;
  background: var(--page);
  font-feature-settings: "kern" 1;
  text-rendering: geometricPrecision;
}

body.cart-open {
  overflow: hidden;
}

body.intro-locked {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.intro-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 700ms var(--ease-soft),
    visibility 700ms var(--ease-soft);
}

.intro-gate.is-dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #000;
}

.intro-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0.58) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.56));
  pointer-events: none;
}

.intro-enter {
  position: relative;
  z-index: 2;
  min-width: 150px;
  min-height: 50px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 0;
  color: #050505;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.55);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity 520ms var(--ease-soft),
    transform 520ms var(--ease-soft),
    background 180ms ease,
    color 180ms ease;
}

.intro-gate.is-ready .intro-enter {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.intro-enter:hover,
.intro-enter:focus-visible {
  color: #fff;
  background: #050505;
  outline: none;
}

.legal-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: auto;
  padding: 24px 32px;
  border-top: 1px solid #111;
}

.legal-footer a {
  color: #555;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.legal-footer a:hover {
  color: #fff;
}

.floating-buttons {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9000;
  transition:
    right 0.22s var(--ease-soft),
    bottom 0.22s var(--ease-soft),
    transform 0.22s var(--ease-soft);
}

body.cart-open .floating-buttons {
  z-index: 60;
}

.float-ai-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  color: #000;
  background: #fff;
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.15);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

body.cart-open .float-ai-btn {
  width: 52px;
  height: 52px;
  min-height: 52px;
  justify-content: center;
  padding: 0;
}

body.cart-open .float-ai-btn span {
  display: none;
}

.float-ai-btn:hover,
.float-ai-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
  outline: none;
}

.chat-popup {
  position: fixed;
  right: 24px;
  bottom: 88px;
  z-index: 9001;
  width: min(520px, calc(100vw - 32px));
  height: min(760px, calc(100dvh - 116px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.06), transparent 30%),
    #0a0a0a;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.98);
  transition:
    opacity 0.3s var(--ease-soft),
    transform 0.3s var(--ease-soft);
}

.chat-popup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.24), rgba(4, 4, 4, 0.78)),
    radial-gradient(circle at 14% 68%, rgba(255, 255, 255, 0.045), transparent 25%),
    url("/assets/chat/rux-ai-logo.png");
  background-position: center;
  background-size: cover;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.18;
  pointer-events: none;
}

.chat-popup.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 116px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 22px;
}

.chat-avatar {
  width: 142px;
  height: 64px;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: transparent;
}

.chat-avatar img {
  width: 126px;
  height: 58px;
  display: block;
  object-fit: cover;
  object-position: 50% 60%;
  filter:
    grayscale(1)
    contrast(1.28)
    drop-shadow(0 12px 24px rgba(255, 255, 255, 0.12));
}

.chat-name {
  color: #fff;
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
}

.chat-status {
  margin-top: 10px;
  color: #aaa;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.chat-close-btn {
  width: 46px;
  height: 46px;
  border: 0;
  color: #fff;
  background: transparent;
  cursor: pointer;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  transition: color 0.2s ease;
}

.chat-close-btn:hover,
.chat-close-btn:focus-visible {
  color: #fff;
  outline: none;
}

.chat-meta-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-height: 70px;
  padding: 0 44px;
  color: #a7a7a0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.34em;
  text-align: center;
  text-transform: uppercase;
}

.chat-reticle {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  opacity: 0.82;
}

.chat-reticle svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.3;
}

.chat-messages {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  padding: 34px 40px 24px;
}

.chat-messages::-webkit-scrollbar {
  width: 3px;
}

.chat-messages::-webkit-scrollbar-track {
  background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background: #222;
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.chat-msg.ai {
  align-self: flex-start;
  border: 1px solid #1a1a1a;
  border-bottom-left-radius: 4px;
  color: #ddd;
  background: #111;
  text-align: left;
}

.chat-msg.user {
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: #000;
  background: #fff;
  font-weight: 600;
  text-align: left;
}

.chat-wa-link {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  color: #fff;
  background: #25d366;
  font-size: 13px;
  font-weight: 800;
}

.chat-wa-link:hover {
  background: #1ebe5d;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #444;
  animation: typingBounce 1.2s infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-6px);
  }
}

.chat-input-area {
  position: relative;
  z-index: 1;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  margin: 0 24px 24px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(5, 5, 5, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.chat-input-mark {
  width: 58px;
  min-width: 58px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.chat-input-mark img {
  width: 44px;
  height: 38px;
  display: block;
  object-fit: cover;
  object-position: 50% 60%;
  filter: grayscale(1) contrast(1.35);
}

.chat-input-area input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  padding: 0 8px;
  font-size: 16px;
  font-style: italic;
  outline: none;
  transition: border-color 0.2s ease;
}

.chat-input-area input::placeholder {
  color: #555;
}

.chat-input-area input:focus {
  border-color: #444;
}

.chat-voice-btn,
.chat-send-btn {
  display: grid;
  flex-shrink: 0;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.chat-voice-btn {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.chat-send-btn {
  color: #000;
  background: #fff;
}

.chat-voice-btn:hover,
.chat-voice-btn:focus-visible,
.chat-send-btn:hover,
.chat-send-btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.chat-send-btn:hover,
.chat-send-btn:focus-visible {
  background: #ddd;
}

.summer-sale-strip {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #151515;
  border-bottom: 1px solid #151515;
  background: #050505;
}

.summer-sale-strip::before,
.summer-sale-strip::after {
  display: none;
}

.summer-sale-strip marquee {
  display: block;
  padding: 9px 0;
}

.summer-sale-strip span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-right: clamp(28px, 5vw, 60px);
  color: #d9d9d2;
  font-family: var(--font);
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.summer-sale-strip span::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.42;
}

.section-kicker {
  margin: 0 0 12px;
  color: #9b9b94;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.about-showcase {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-top: 1px solid var(--soft-line);
  border-bottom: 1px solid var(--soft-line);
  background: #000;
}

.about-showcase picture,
.about-showcase img {
  display: block;
  width: 100%;
}

.about-showcase img {
  height: 100%;
  object-fit: cover;
}

.faq-heading h1,
.faq-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(74px, 9.6vw, 148px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.82;
  text-transform: uppercase;
}

.faq-heading p:not(.section-kicker) {
  margin: 22px 0 0;
  color: #b8b8b0;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.8;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.faq-section {
  max-width: 100%;
  padding: clamp(24px, 4vw, 56px) clamp(14px, 4vw, 56px) clamp(54px, 8vw, 96px);
  overflow: hidden;
  border-top: 1px solid var(--soft-line);
  background: #050505;
}

.faq-page {
  width: min(100%, 1260px);
  margin: 0 auto;
}

.faq-hero {
  position: relative;
  max-width: 100%;
  min-height: clamp(230px, 34vw, 430px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid #171717;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.64) 38%, rgba(0, 0, 0, 0.16) 100%),
    url("assets/all-in-one/faq-support-bg.png") center / cover no-repeat;
}

.faq-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 56%, rgba(0, 0, 0, 0.84) 100%),
    radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.08), transparent 20%);
  pointer-events: none;
}

.faq-heading {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin: 0;
  padding: clamp(22px, 4vw, 46px);
  min-width: 0;
}

.faq-heading h1,
.faq-heading h2 {
  font-size: clamp(62px, 10vw, 148px);
  line-height: 0.78;
}

.faq-topic-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-right: 1px solid #151515;
  border-bottom: 1px solid #151515;
  border-left: 1px solid #151515;
  background: #030303;
}

.faq-topic-grid a {
  min-width: 0;
  min-height: 122px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 18px;
  border-right: 1px solid #151515;
  color: #f4f4ef;
  transition: background 0.18s ease, color 0.18s ease;
}

.faq-topic-grid a:last-child {
  border-right: 0;
}

.faq-topic-grid a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-card-icon {
  display: block;
  color: #d8d8d2;
  width: 28px;
  height: 28px;
}

.faq-card-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-topic-grid strong {
  overflow-wrap: anywhere;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.faq-topic-grid small {
  max-width: 160px;
  color: #8f8f87;
  font-size: 11px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.faq-list {
  display: grid;
  gap: 0;
  border-right: 1px solid #151515;
  border-bottom: 1px solid #151515;
  border-left: 1px solid #151515;
}

.faq-topic,
.faq-topic details {
  border: 0;
  background: #030303;
}

.faq-topic {
  padding: 0;
  border-top: 1px solid #151515;
}

.faq-topic > summary,
.faq-topic details summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-topic > summary::-webkit-details-marker,
.faq-topic details summary::-webkit-details-marker {
  display: none;
}

.faq-topic > summary::after,
.faq-topic details summary::after {
  content: "+";
  float: right;
  color: #8a8a82;
}

.faq-topic[open] > summary::after,
.faq-topic details[open] summary::after {
  content: "-";
}

.faq-topic details {
  margin: 0 20px;
  border-top: 1px solid #151515;
}

.faq-topic details summary {
  padding: 18px 0;
  color: #d8d8d0;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.faq-topic details p {
  margin: 0;
  padding: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
}

.legal-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #060606 0%, #000 58%);
}

.legal-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--soft-line);
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(16px);
}

.legal-logo {
  width: 132px;
  max-height: 62px;
  object-fit: contain;
  filter: invert(1) grayscale(1) contrast(1.15);
}

.legal-main {
  width: min(980px, calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(34px, 7vw, 72px) 0;
}

.legal-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.legal-main h1 {
  margin: 0 0 26px;
  font-family: var(--display);
  font-size: clamp(44px, 8vw, 86px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.018em;
  text-transform: uppercase;
}

.legal-content {
  display: grid;
  gap: 28px;
  color: #d8d8d1;
  line-height: 1.72;
}

.legal-section {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.84), rgba(0, 0, 0, 0.88)),
    rgba(255, 255, 255, 0.02);
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-section p,
.legal-section ul {
  margin: 0;
}

.legal-section p + p,
.legal-section ul + p,
.legal-section p + ul {
  margin-top: 12px;
}

.legal-section ul {
  padding-left: 19px;
}

.legal-section li + li {
  margin-top: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--page);
}

.header-main {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: var(--header-height);
  padding: 0 62px;
  background: var(--header);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 138px;
  min-width: 138px;
  height: 48px;
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: 132px;
  height: 42px;
  object-fit: contain;
  object-position: center;
  filter: invert(1);
  mix-blend-mode: screen;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  min-width: 0;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.primary-nav a,
.nav-disclosure {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
}

.primary-nav a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.nav-disclosure svg,
.currency svg {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.currency {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 34px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.icon-button svg {
  width: 27px;
  height: 27px;
}

.cart-link svg {
  width: 30px;
  height: 30px;
}

.cart-count {
  position: absolute;
  right: -8px;
  top: 2px;
  display: grid;
  min-width: 15px;
  height: 15px;
  place-items: center;
  color: #050505;
  background: #ffffff;
  font-size: 9px;
  line-height: 1;
  border-radius: 999px;
}

.cart-count.is-bumped {
  animation: countBump 360ms var(--ease-soft);
}

@keyframes countBump {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.28);
  }
  100% {
    transform: scale(1);
  }
}

.menu-button {
  display: none;
}

.category-nav {
  display: flex;
  align-items: center;
  min-height: var(--category-height);
  padding: 0 62px;
  gap: clamp(42px, 5.3vw, 86px);
  overflow-x: auto;
  overflow-y: hidden;
  background: var(--page);
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  white-space: nowrap;
  scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.category-nav a {
  flex: 0 0 auto;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: calc(100svh - var(--header-height) - var(--category-height));
  overflow: hidden;
  background: #050505;
}

.hero-image,
.hero-video {
  width: 100%;
  height: 100%;
}

.hero-image {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background: #050505;
}

.hero-video {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-video-mobile {
  display: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.1);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-link {
  font-family: var(--font);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.hero-link-desktop {
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.hero-link-mobile {
  display: none;
}

.announcement {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 0 28px;
  background: var(--page);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.announcement p {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-feed {
  background: var(--page);
}

.feed-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px 8px;
}

.feed-heading h1 {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
}

.feed-heading a {
  font-size: 10px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.collection-section {
  padding: 18px 12px 28px;
}

.collection-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 12px;
}

.collection-heading h2,
.collection-heading p {
  margin: 0;
  text-transform: uppercase;
}

.collection-heading h2 {
  font-size: 13px;
  font-weight: 400;
}

.collection-heading p {
  color: var(--muted);
  font-size: 10px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.product-card {
  display: grid;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  opacity: 1;
  transform: translateY(0);
}

.product-card.is-reveal-ready {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 520ms var(--ease-soft) var(--reveal-delay, 0ms),
    transform 520ms var(--ease-soft) var(--reveal-delay, 0ms);
}

.product-card:focus {
  outline: none;
}

.product-card.is-reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-media {
  position: relative;
  aspect-ratio: 0.72;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--panel-soft);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition:
    transform 340ms var(--ease-soft),
    box-shadow 340ms var(--ease-soft),
    filter 340ms var(--ease-soft);
}

.product-card:hover .product-media,
.product-card:focus-visible .product-media {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(255, 255, 255, 0.08);
  filter: saturate(1.03);
}

.product-card:focus-visible .product-media {
  outline: 1px solid #ffffff;
  outline-offset: 3px;
}

.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: opacity 260ms ease, transform 380ms var(--ease-soft);
}

.product-media .back {
  opacity: 0;
}

.product-card:hover .front,
.product-card:focus-visible .front {
  opacity: 0;
  transform: scale(1.035);
}

.product-card:hover .back,
.product-card:focus-visible .back {
  opacity: 1;
  transform: scale(1.035);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 8px;
  border-radius: 999px;
  color: #050505;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.08);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-view {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  color: #050505;
  background: #ffffff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  transition:
    opacity 240ms var(--ease-soft),
    transform 240ms var(--ease-soft);
}

.product-card:hover .quick-view,
.product-card:focus-visible .quick-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-meta {
  display: grid;
  gap: 5px;
  min-height: 48px;
}

.product-meta h3,
.product-meta p {
  margin: 0;
  text-transform: uppercase;
}

.product-meta h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.product-meta p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.product-detail-main {
  min-height: calc(100vh - var(--header-height) - var(--category-height));
  padding: clamp(18px, 3vw, 34px) clamp(14px, 2.5vw, 28px) 64px;
  background:
    radial-gradient(circle at 72% 0%, rgba(255, 255, 255, 0.05), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.04), transparent 34%),
    linear-gradient(180deg, #050505 0%, #000 100%);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(380px, 0.95fr);
  gap: clamp(16px, 2vw, 26px);
  align-items: start;
  width: min(1780px, 100%);
  margin: 0 auto;
}

.product-detail-showcase {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.product-thumb-rail {
  display: grid;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.product-thumb {
  width: 100%;
  aspect-ratio: 0.86;
  padding: 0;
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  overflow: hidden;
  background: #101010;
  cursor: pointer;
}

.product-thumb.is-active {
  border-color: var(--ink);
}

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

.product-thumb-more {
  display: grid;
  place-items: center;
  min-height: 32px;
  color: var(--ink);
}

.product-thumb-more svg {
  width: 22px;
  height: 22px;
}

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

.product-detail-gallery figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(145deg, #1a1a1a, #050505);
  overflow: hidden;
}

.product-detail-gallery img {
  width: 100%;
  aspect-ratio: 0.82;
  display: block;
  object-fit: contain;
  padding: clamp(16px, 4vw, 42px);
  background:
    radial-gradient(circle at 30% 65%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(145deg, #1a1a1a, #050505);
}

.product-detail-gallery figcaption {
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 2;
  padding: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-spec-strip {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.product-spec-strip div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
}

.product-spec-strip div:last-child {
  border-right: 0;
}

.product-spec-strip svg {
  width: 34px;
  height: 34px;
}

.product-spec-strip span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.product-spec-strip strong {
  display: block;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-info {
  position: sticky;
  top: calc(var(--header-height) + var(--category-height) + 24px);
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3.5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.88), rgba(0, 0, 0, 0.9)),
    radial-gradient(circle at 80% 16%, rgba(255, 255, 255, 0.08), transparent 24%),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.product-detail-info::before {
  content: "";
  position: absolute;
  inset: 120px -60px auto auto;
  width: 330px;
  height: 330px;
  pointer-events: none;
  background: url("/assets/ruxhi-logo-nav.png") center / contain no-repeat;
  filter: invert(1) grayscale(1);
  opacity: 0.08;
  transform: rotate(-13deg);
}

.product-detail-info > * {
  position: relative;
  z-index: 1;
}

.product-detail-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px 42px;
  gap: 18px;
  align-items: center;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #777;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.product-breadcrumb a {
  color: var(--muted);
}

.product-detail-category {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-info > .product-detail-category {
  display: none;
}

.product-panel-logo {
  width: 92px;
  filter: invert(1) grayscale(1);
}

.product-like-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-like-button svg {
  width: 22px;
  height: 22px;
}

.product-like-button.is-liked {
  color: #ff5aa8;
  border-color: rgba(255, 90, 168, 0.6);
  background: rgba(255, 90, 168, 0.12);
}

.product-like-button.is-liked svg path {
  fill: currentColor;
}

.product-drop-badge {
  width: fit-content;
  margin: 8px 0 0;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-detail-info h1,
.product-not-found h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(54px, 5.9vw, 92px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.018em;
  text-transform: uppercase;
}

.product-detail-price {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.product-rating {
  margin: -4px 0 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.product-rating span {
  color: var(--muted);
  margin-left: 12px;
}

.product-detail-description {
  margin: 0;
  color: #cfcfc8;
  font-size: 15px;
  line-height: 1.65;
}

.product-detail-assurance {
  padding: 14px 0;
}

.product-detail-assurance .assurance-grid div {
  min-height: 96px;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.product-detail-assurance .assurance-grid div:last-child {
  border-right: 0;
}

.product-detail-assurance .assurance-grid small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.2;
}

.product-action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  gap: 14px;
}

.product-add-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.product-add-button svg {
  width: 24px;
  height: 24px;
}

.product-plus-button {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  font-size: 28px;
  font-weight: 300;
}

.product-detail-info .size-option {
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.02);
}

.product-mini-claims {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 10px calc(clamp(24px, 3.5vw, 46px) * -1) calc(clamp(24px, 3.5vw, 46px) * -1);
  padding: 16px clamp(24px, 3.5vw, 46px);
  border-top: 1px solid var(--soft-line);
}

.product-mini-claims span {
  padding: 0 12px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-mini-claims span:last-child {
  border-right: 0;
}

.product-mini-claims small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
}

.recommendations-section {
  width: min(1320px, 100%);
  margin: clamp(38px, 7vw, 84px) auto 0;
}

.recommendations-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-not-found {
  width: min(620px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  background: var(--panel);
}

.product-not-found p {
  color: var(--muted);
  line-height: 1.7;
}

.product-modal-shell,
.cart-scrim {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.product-modal-shell[hidden] {
  display: none;
}

.product-modal-backdrop,
.cart-scrim {
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(7px);
}

.product-modal {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  width: min(1100px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  margin: 16px auto;
  overflow: auto;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.58);
  animation: modalIn 260ms var(--ease-soft) both;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  background: var(--page);
  cursor: pointer;
  font-size: 18px;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease;
}

.modal-close:hover {
  background: var(--panel-soft);
  transform: rotate(4deg) scale(1.04);
}

.modal-gallery {
  position: relative;
  display: block;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.modal-gallery-track {
  display: flex;
  width: 100%;
  transition: transform 320ms var(--ease-soft);
}

.modal-gallery figure {
  display: flex;
  flex: 0 0 100%;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 12px;
  background: var(--panel-soft);
}

.modal-gallery img {
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: contain;
  background: var(--panel-soft);
}

.modal-gallery figcaption {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #050505;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms var(--ease-soft), background 180ms ease;
}

.gallery-arrow:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.04);
}

.gallery-arrow-prev {
  left: 12px;
}

.gallery-arrow-next {
  right: 12px;
}

.modal-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 52px) 16px;
}

.modal-info > p:first-child,
.size-group > span,
.modal-note {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.modal-info h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.modal-price {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.06em;
}

.modal-description {
  max-width: 440px;
  margin: 0;
  color: #d6d6d0;
  line-height: 1.55;
}

.product-assurance {
  display: grid;
  gap: 16px;
  padding: 12px 0 4px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.assurance-grid svg {
  width: 28px;
  height: 28px;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  text-align: center;
}

.assurance-grid div {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 12px 8px;
}

.assurance-grid strong {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-transform: uppercase;
}

.assurance-grid small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}

.size-group {
  display: grid;
  gap: 10px;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-option {
  min-width: 44px;
  min-height: 38px;
  border: 1px solid var(--line);
  background: var(--page);
  cursor: pointer;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.size-option:hover {
  transform: translateY(-1px);
}

.size-option.is-selected {
  color: #050505;
  background: #ffffff;
  border-color: #ffffff;
}

.add-button,
.order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid #ffffff;
  color: #050505;
  background: #ffffff;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition:
    transform 200ms var(--ease-soft),
    box-shadow 200ms var(--ease-soft);
}

.add-button:hover,
.order-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.modal-note.is-success {
  color: #ffffff;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(430px, 100vw);
  height: 100dvh;
  background: var(--page);
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.52);
  overflow: hidden;
  overscroll-behavior: contain;
  transform: translate3d(100%, 0, 0);
  transition: transform 300ms var(--ease-soft);
  will-change: transform;
}

.cart-drawer.is-open {
  transform: translate3d(0, 0, 0);
}

.cart-scrim {
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.62);
  transition: opacity 200ms ease;
}

.cart-scrim.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 400;
}

.cart-head button {
  border: 0;
  background: transparent;
  text-transform: uppercase;
  cursor: pointer;
}

.cart-items {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--soft-line);
}

.cart-item img {
  width: 84px;
  height: 104px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--panel-soft);
}

.cart-item h3,
.cart-item p,
.cart-item strong {
  margin: 0;
}

.cart-item h3 {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 400;
}

.cart-item p,
.cart-item strong {
  color: var(--muted);
  font-size: 11px;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.qty-controls button {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: pointer;
  border-radius: 999px;
}

.cart-empty {
  display: none;
  margin: 0;
  padding: 18px;
  color: var(--muted);
}

.cart-empty.is-visible {
  display: block;
}

.cart-foot {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-top: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.98);
}

.cart-account-note {
  margin: 0;
  padding: 12px 13px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  line-height: 1.6;
}

.cart-foot div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-foot span {
  color: var(--muted);
  font-size: 12px;
}

.cart-foot strong {
  font-size: 16px;
}

.order-button {
  width: 100%;
}

.order-button.is-disabled {
  pointer-events: none;
  opacity: 0.45;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: start center;
  padding-top: 120px;
  background: rgba(5, 5, 5, 0.94);
}

.search-panel[hidden] {
  display: none;
}

.search-form {
  width: min(560px, calc(100vw - 32px));
}

.search-form label {
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 14px;
}

.search-form div {
  display: flex;
  border: 1px solid var(--ink);
}

.search-form input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 0;
  outline: none;
  color: var(--ink);
  background: var(--page);
  text-transform: uppercase;
}

.search-form button {
  padding: 0 18px;
  color: #050505;
  background: #ffffff;
  border: 0;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 749px) {
  :root {
    --header-height: 54px;
    --category-height: 42px;
  }

  .header-main {
    position: relative;
    grid-template-columns: 1fr auto 1fr;
    min-height: var(--header-height);
    gap: 10px;
    padding: 0 24px;
  }

  .brand {
    justify-self: center;
    width: 106px;
    min-width: 106px;
    height: 42px;
  }

  .brand-logo {
    width: 106px;
    height: 34px;
  }

  .primary-nav,
  .currency,
  .account-link {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    height: 42px;
    padding: 0;
    color: var(--muted);
    background: transparent;
    border: 0;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
  }

  .header-actions {
    justify-self: end;
    gap: 15px;
    margin: 0;
  }

  .icon-button {
    width: 26px;
    height: 34px;
  }

  .icon-button svg {
    width: 26px;
    height: 26px;
  }

  .cart-link svg {
    width: 27px;
    height: 27px;
  }

  .category-nav {
    min-height: var(--category-height);
    padding: 0 24px;
    gap: 40px;
    border-bottom-color: var(--line);
    font-size: 16px;
  }

  .mobile-menu {
    display: grid;
    gap: 18px;
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    background: var(--page);
    border-bottom: 1px solid var(--line);
    text-transform: uppercase;
    font-size: 18px;
    transition: max-height 180ms ease, padding 180ms ease;
  }

  .mobile-menu.is-open {
    max-height: 250px;
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .mobile-currency {
    display: inline-flex;
    justify-self: start;
    min-height: auto;
    font-size: 18px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height) - var(--category-height));
    background: #111111;
  }

  .hero-image {
    display: none;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero-video {
    display: none;
    height: 100%;
    object-position: center center;
  }

  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }

  .hero-shade {
    background: rgba(0, 0, 0, 0.42);
  }

  .hero-link {
    font-size: 16px;
    text-decoration: none;
  }

  .hero-link-desktop {
    display: none;
  }

  .hero-link-mobile {
    display: inline-flex;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  }

  .announcement {
    min-height: 54px;
    padding: 0 24px;
  }

  .announcement p {
    font-size: 14px;
    line-height: 1.35;
  }

  .feed-heading {
    padding: 24px 24px 8px;
  }

  .collection-section {
    padding: 18px 14px 30px;
  }

  .collection-heading {
    padding-bottom: 10px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .product-media {
    aspect-ratio: 0.78;
  }

  .product-media img {
    padding: 8px;
  }

  .product-meta h3 {
    font-size: 10px;
    letter-spacing: 0.02em;
  }

  .product-meta p {
    font-size: 11px;
    letter-spacing: 0.02em;
  }

  .product-detail-main {
    padding: 14px 10px 44px;
  }

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

  .product-detail-showcase {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-thumb-rail {
    order: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(64px, 1fr)) 34px;
    gap: 8px;
    padding: 8px;
    overflow-x: auto;
  }

  .product-thumb {
    min-width: 64px;
    aspect-ratio: 0.9;
  }

  .product-thumb-more {
    min-height: auto;
    transform: rotate(-90deg);
  }

  .product-detail-gallery {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-detail-gallery img {
    aspect-ratio: 0.9;
    padding: 16px;
  }

  .product-detail-gallery figcaption {
    top: 12px;
    left: 14px;
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .product-spec-strip {
    grid-column: 1;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .product-spec-strip div {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-spec-strip div:last-child {
    border-bottom: 0;
  }

  .product-spec-strip svg {
    width: 28px;
    height: 28px;
  }

  .product-detail-info {
    position: static;
    gap: 14px;
    padding: 18px 14px;
  }

  .product-detail-info::before {
    inset: 80px -90px auto auto;
    width: 240px;
    height: 240px;
  }

  .product-detail-topline {
    grid-template-columns: minmax(0, 1fr) 78px 40px;
    gap: 10px;
  }

  .product-breadcrumb {
    gap: 7px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .product-panel-logo {
    width: 78px;
  }

  .product-like-button {
    width: 40px;
    height: 40px;
  }

  .product-drop-badge {
    margin-top: 2px;
    padding: 7px 11px;
    font-size: 9px;
  }

  .product-detail-info h1,
  .product-not-found h1 {
    font-size: clamp(42px, 13vw, 60px);
    letter-spacing: -0.01em;
  }

  .product-detail-price {
    font-size: 22px;
  }

  .product-rating {
    font-size: 10px;
    letter-spacing: 0.05em;
  }

  .product-detail-description {
    font-size: 14px;
    line-height: 1.65;
  }

  .product-detail-assurance {
    padding: 12px 0;
  }

  .product-detail-assurance .assurance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .product-detail-assurance .assurance-grid div {
    min-height: 84px;
    padding: 8px 3px;
  }

  .product-detail-assurance .assurance-grid strong {
    font-size: 8.5px;
    letter-spacing: 0.03em;
  }

  .product-detail-assurance .assurance-grid small {
    font-size: 9px;
  }

  .product-action-row {
    grid-template-columns: minmax(0, 1fr) 50px;
    gap: 8px;
  }

  .product-plus-button {
    min-height: 52px;
  }

  .product-mini-claims {
    grid-template-columns: 1fr;
    margin: 8px -14px -18px;
    padding: 14px;
  }

  .product-mini-claims span {
    padding: 0 0 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-mini-claims span:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .recommendations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-modal {
    grid-template-columns: 1fr;
    width: 100vw;
    min-height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    padding: 12px;
    border: 0;
    border-radius: 0;
  }

  .modal-gallery figure {
    padding: 8px;
  }

  .modal-info {
    padding: 18px 2px 8px;
  }

  .modal-info h2 {
    font-size: 28px;
  }

  .product-assurance {
    gap: 12px;
  }

  .assurance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .assurance-grid div {
    padding: 8px 2px;
  }

  .assurance-grid svg {
    width: 24px;
    height: 24px;
  }

  .assurance-grid strong {
    font-size: 9px;
  }

  .cart-item {
    grid-template-columns: 74px 1fr;
  }

  .cart-item > strong {
    grid-column: 2;
  }
}

@media (min-width: 750px) and (max-width: 1050px) {
  .header-main {
    padding: 0 28px;
    gap: 24px;
  }

  .category-nav {
    padding: 0 28px;
  }

  .currency {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-detail {
    grid-template-columns: 1fr;
    width: min(930px, 100%);
  }

  .product-detail-info {
    position: static;
  }

  .product-detail-info h1 {
    font-size: clamp(64px, 10vw, 92px);
  }
}

.header-main {
  grid-template-columns: 42px 138px minmax(0, 1fr) auto;
}

.hamburger-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  padding: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 240ms var(--ease-soft), opacity 180ms ease;
}

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

.side-panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: none;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.side-panel-overlay.active {
  display: block;
}

.side-panel {
  position: fixed;
  top: 0;
  left: min(-760px, -100vw);
  z-index: 999;
  width: min(760px, calc(100vw - 18px));
  height: 100dvh;
  overflow-y: auto;
  padding: clamp(22px, 4vw, 44px);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.86)),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.1), transparent 28%),
    url("assets/auth/login-desktop-16x9.jpeg") center / cover no-repeat,
    #050505;
  border-right: 1px solid var(--line);
  box-shadow: 34px 0 110px rgba(0, 0, 0, 0.72);
  transition: left 340ms var(--ease-soft);
}

.side-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 58%, rgba(255, 255, 255, 0.035) 58.3%, transparent 58.8%),
    radial-gradient(circle at 76% 14%, rgba(255, 255, 255, 0.07), transparent 24%);
  opacity: 0.42;
}

.side-panel > * {
  position: relative;
  z-index: 1;
}

.side-panel.open {
  left: 0;
}

.side-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  margin-bottom: 34px;
}

.side-panel-brand {
  display: grid;
  gap: 8px;
}

.side-panel-logo {
  width: min(260px, 62vw);
  height: auto;
  object-fit: contain;
  filter: invert(1) grayscale(1) contrast(1.16);
}

.side-panel-brand p {
  margin: 0;
  color: #a6a6a0;
  font-size: 12px;
  letter-spacing: 0.42em;
  line-height: 1.6;
  text-transform: uppercase;
}

.close-panel-btn {
  width: 58px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(0, 0, 0, 0.34);
  cursor: pointer;
  font-size: 26px;
  font-weight: 300;
  text-transform: uppercase;
}

.panel-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--soft-line);
}

.panel-tab {
  min-height: 58px;
  padding: 0 4px;
  border: 0;
  border-bottom: 4px solid transparent;
  color: #666660;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.panel-tab.active {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.panel-section h3 {
  margin: 0 0 16px;
  font-size: 20px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.panel-section p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.panel-muted {
  color: #666660 !important;
  margin-bottom: 20px !important;
}

.panel-empty {
  padding: 38px 0;
  text-align: center;
  color: #666660 !important;
}

.panel-primary-btn,
.panel-logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.panel-primary-btn {
  color: var(--page);
  background: var(--ink);
}

.panel-logout-btn {
  width: 100%;
  margin-top: 26px;
  border: 1px solid #3a1717;
  color: #ff5a5a;
  background: rgba(0, 0, 0, 0.24);
  cursor: pointer;
}

.account-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.76), rgba(2, 2, 2, 0.76)),
    rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
}

.account-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--soft-line);
}

.account-card-head h3 {
  margin: 0;
}

.account-card-head img {
  width: 116px;
  opacity: 0.72;
  filter: invert(1) grayscale(1);
}

.account-detail {
  display: grid;
  grid-template-columns: 72px minmax(110px, 0.8fr) minmax(0, 1.3fr);
  align-items: center;
  gap: 18px;
  margin: 0 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--soft-line);
  font-size: clamp(16px, 2.5vw, 21px);
}

.account-detail:last-child {
  border-bottom: 0;
}

.account-detail-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
}

.account-detail-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-label {
  color: #8a8a84;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.account-address-block {
  margin-top: 30px;
}

.address-section-title {
  margin: 0 0 18px;
  color: #c8c8c0;
  font-size: 14px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.address-card {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.72), rgba(3, 3, 3, 0.78)),
    rgba(255, 255, 255, 0.02);
  color: #c9c9c2;
  font-size: 18px;
  line-height: 1.55;
}

.address-card span {
  white-space: pre-line;
  overflow-wrap: anywhere;
}

.address-card > span:not(.address-card-icon) {
  min-width: 0;
}

.address-card.is-incomplete {
  border-color: rgba(255, 77, 77, 0.34);
}

.address-card-warning {
  display: block;
  margin-top: 8px;
  color: #ff6b6b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.address-card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
}

.address-card-icon svg {
  width: 30px;
  height: 30px;
}

.delete-address-btn,
.edit-address-btn,
.panel-add-address-btn,
.panel-cancel-btn {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.address-card-actions {
  display: flex;
  gap: 10px;
}

.delete-address-btn {
  min-height: 48px;
  padding: 8px 20px;
  color: #ff5a5a;
  border-color: #3a1717;
  background: rgba(30, 0, 0, 0.14);
  font-size: 12px;
  letter-spacing: 0.28em;
}

.edit-address-btn {
  min-height: 48px;
  padding: 8px 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  letter-spacing: 0.28em;
}

.panel-add-address-btn {
  width: 100%;
  min-height: 60px;
  margin-top: 20px;
  border-color: var(--line);
  background: rgba(0, 0, 0, 0.34);
  font-size: 13px;
  letter-spacing: 0.28em;
}

.address-form {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.address-edit-form {
  grid-column: 1 / -1;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.panel-address-field {
  display: grid;
  gap: 7px;
}

.panel-address-field span {
  color: #9a9a94;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.panel-input {
  width: 100%;
  min-height: 50px;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: #050505;
  padding: 0 12px;
  outline: none;
}

.panel-input:focus {
  border-color: var(--ink);
}

.panel-cancel-btn {
  min-height: 40px;
  color: var(--muted);
}

.address-limit-note {
  margin-top: 10px !important;
}

.side-panel-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--soft-line);
  color: #8c8c86;
  font-size: 11px;
  letter-spacing: 0.28em;
  line-height: 1.55;
  text-transform: uppercase;
}

.panel-barcode {
  color: #d5d5cf;
  font-family: var(--mono);
  font-size: 38px;
  letter-spacing: -0.14em;
  line-height: 0.8;
}

.panel-order-card {
  padding: 16px;
  margin-bottom: 12px;
  border: 1px solid var(--soft-line);
  border-radius: 14px;
  background: var(--panel);
}

.panel-order-main {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
}

.panel-order-media {
  display: flex;
  align-items: center;
  min-height: 72px;
}

.panel-order-media img {
  width: 66px;
  height: 72px;
  margin-left: -42px;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  background: #fff;
  object-fit: cover;
}

.panel-order-media img:first-child {
  margin-left: 0;
}

.panel-order-media img[src*="ruxhi-logo"] {
  padding: 10px;
  background: #050505;
  object-fit: contain;
  filter: invert(1);
}

.panel-order-content {
  min-width: 0;
}

.panel-order-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.panel-order-id {
  color: #686862;
  font-family: var(--mono);
  font-size: 11px;
}

.panel-order-details {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.order-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 14px;
}

.order-progress-step {
  display: grid;
  gap: 7px;
}

.order-progress-step span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: #1a1a1a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.order-progress-step small {
  color: #5f5f59;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.order-progress-step.is-complete.shade-1 span {
  background: #0d8f3f;
}

.order-progress-step.is-complete.shade-2 span {
  background: #18b85a;
}

.order-progress-step.is-complete.shade-3 span {
  background: #45e27d;
}

.order-progress-step.is-complete small {
  color: #d8ffe3;
}

.panel-order-eta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(69, 226, 125, 0.28);
  border-radius: 8px;
  background: rgba(18, 184, 90, 0.08);
}

.panel-order-eta span {
  color: #8fddaa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-order-eta strong {
  color: var(--ink);
  font-size: 13px;
}

.panel-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.panel-order-actions a {
  color: #bdbdb6;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.panel-order-actions a:hover {
  color: var(--ink);
}

.status-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.status-Pending {
  color: #9cf2b4;
  background: #0d2318;
}

.status-Processing {
  color: #b7ffd0;
  background: #12331f;
}

.status-Shipped {
  color: #dcffe6;
  background: #174b2a;
}

@media (max-width: 749px) {
  .header-main {
    grid-template-columns: 42px minmax(0, 1fr) auto;
  }

  .hamburger-btn {
    justify-self: start;
  }

  .brand {
    justify-self: center;
  }

  .side-panel {
    width: min(100vw, calc(100vw - 8px));
    padding: 20px 14px;
  }

  .side-panel::before {
    width: min(100vw, calc(100vw - 8px));
  }

  .side-panel-logo {
    width: 178px;
  }

  .side-panel-brand p {
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .close-panel-btn {
    width: 48px;
    height: 48px;
  }

  .panel-tab {
    min-height: 50px;
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .account-card-head {
    padding: 18px 16px;
  }

  .account-card-head img {
    display: none;
  }

  .account-detail {
    grid-template-columns: 50px minmax(82px, 0.7fr) minmax(0, 1.3fr);
    gap: 10px;
    margin: 0 16px;
    padding: 14px 0;
    font-size: 14px;
  }

  .account-detail-icon {
    width: 42px;
    height: 42px;
  }

  .account-detail-icon svg {
    width: 22px;
    height: 22px;
  }

  .detail-label {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .address-card {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
    font-size: 14px;
  }

  .address-card-icon {
    width: 42px;
    height: 42px;
  }

  .address-card-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .delete-address-btn,
  .edit-address-btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .side-panel-footer {
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .panel-barcode {
    font-size: 28px;
  }

  .panel-order-main {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .panel-order-actions {
    gap: 12px;
    margin-top: 10px;
  }

  .panel-order-actions a {
    font-size: 10px;
    letter-spacing: 0.02em;
  }

  .panel-order-media img {
    width: 54px;
    height: 62px;
    margin-left: -35px;
  }
}

@media (max-width: 749px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    position: relative;
  }

  .site-header {
    position: sticky;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .header-main {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    width: 100%;
    padding: 0 14px;
    gap: 8px;
  }

  .brand {
    width: 96px;
    min-width: 96px;
  }

  .brand-logo {
    width: 96px;
    height: 31px;
  }

  .header-actions {
    gap: 8px;
  }

  .category-nav {
    width: 100%;
    max-width: 100%;
    gap: 24px;
    padding: 0 14px;
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .hero {
    width: 100%;
    min-height: calc(74svh - var(--header-height));
    max-height: 680px;
  }

  .announcement {
    min-height: 44px;
    padding: 0 14px;
  }

  .announcement p {
    font-size: 11px;
    letter-spacing: 0.02em;
  }

  .feed-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 16px 10px 6px;
  }

  .feed-heading h1 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .feed-heading a {
    display: none;
  }

  .collection-section {
    padding: 12px 8px 20px;
  }

  .collection-heading {
    align-items: start;
    gap: 8px;
    padding-bottom: 8px;
  }

  .collection-heading h2 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .collection-heading p {
    max-width: 170px;
    text-align: right;
    font-size: 9px;
    line-height: 1.25;
  }

  .product-grid {
    gap: 8px;
  }

  .product-card {
    gap: 6px;
  }

  .summer-sale-strip marquee {
    padding: 8px 0;
  }

  .summer-sale-strip span {
    gap: 14px;
    margin-right: 28px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .summer-sale-strip::before,
  .summer-sale-strip::after {
    width: 38px;
  }

  .floating-buttons {
    right: 14px;
    bottom: 14px;
  }

  body.cart-open .floating-buttons {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 1180;
    transform: translateY(72px);
  }

  .float-ai-btn {
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
    border-radius: 999px;
  }

  .float-ai-btn span {
    display: none;
  }

  .chat-popup {
    right: 12px;
    bottom: 78px;
    width: calc(100vw - 24px);
    height: min(520px, calc(100dvh - 110px));
    max-height: 520px;
    border-radius: 22px;
  }

  .chat-header {
    min-height: 84px;
    padding: 14px 16px;
  }

  .chat-header-info {
    gap: 14px;
  }

  .chat-avatar {
    width: 104px;
    height: 52px;
  }

  .chat-avatar img {
    width: 94px;
    height: 44px;
  }

  .chat-name {
    font-size: 24px;
  }

  .chat-status {
    margin-top: 6px;
    font-size: 11px;
  }

  .chat-close-btn {
    width: 34px;
    height: 34px;
    font-size: 30px;
  }

  .chat-meta-strip {
    min-height: 54px;
    gap: 10px;
    padding: 0 18px;
    font-size: 10px;
    letter-spacing: 0.24em;
  }

  .chat-reticle {
    width: 24px;
    height: 24px;
  }

  .chat-messages {
    padding: 16px 14px 14px;
  }

  .chat-input-area {
    margin: 0 14px 14px;
    padding: 9px;
    border-radius: 17px;
  }

  .chat-input-mark {
    width: 44px;
    min-width: 44px;
  }

  .chat-input-mark img {
    width: 34px;
    height: 30px;
  }

  .chat-input-area input {
    font-size: 14px;
  }

  .chat-voice-btn,
  .chat-send-btn {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .about-showcase {
    aspect-ratio: 9 / 16;
  }

  .faq-heading p:not(.section-kicker) {
    font-size: 14px;
    line-height: 1.7;
    max-width: 310px;
  }

  .faq-section {
    padding: 28px 10px 46px;
  }

  .faq-hero {
    min-height: 310px;
    background-position: 62% center;
  }

  .faq-heading {
    width: 100%;
    max-width: 100%;
    padding: 22px 14px;
  }

  .faq-heading h1,
  .faq-heading h2 {
    font-size: 66px;
  }

  .faq-topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-topic-grid a {
    min-height: 106px;
    padding: 14px;
  }

  .faq-topic-grid a:nth-child(2n) {
    border-right: 0;
  }

  .faq-topic > summary {
    padding: 17px 16px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .faq-topic details {
    margin: 0 14px;
  }

  .faq-topic details summary {
    padding: 14px 0;
    font-size: 11px;
  }

  .product-media {
    aspect-ratio: 0.82;
    border-radius: 10px;
  }

  .quick-view {
    display: none;
  }

  .product-detail-main {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 10px 8px 34px;
  }

  .product-detail {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 12px;
  }

  .product-detail-showcase {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 8px;
  }

  .product-detail-gallery {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 0 2px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-detail-gallery::-webkit-scrollbar {
    display: none;
  }

  .product-detail-gallery figure {
    flex: 0 0 min(82vw, 320px);
    min-width: 0;
    scroll-snap-align: start;
  }

  .product-detail-gallery img {
    aspect-ratio: 0.86;
    padding: 12px;
  }

  .product-thumb-rail {
    display: none;
  }

  .product-spec-strip {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-spec-strip div {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 7px;
    min-height: 84px;
    padding: 10px 6px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    text-align: center;
  }

  .product-spec-strip div:last-child {
    border-right: 0;
  }

  .product-spec-strip span {
    font-size: 9px;
    line-height: 1.2;
  }

  .product-spec-strip strong {
    font-size: 8px;
    letter-spacing: 0.04em;
  }

  .product-detail-info {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: 15px 12px;
  }

  .product-detail-topline {
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 7px;
    overflow: hidden;
  }

  .product-breadcrumb {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-panel-logo {
    display: none;
  }

  .product-like-button {
    justify-self: end;
    width: 36px;
    height: 36px;
  }

  .product-detail-assurance .assurance-grid {
    gap: 0;
  }

  .product-detail-assurance .assurance-grid div {
    min-height: 78px;
  }

  .cart-drawer {
    inset: 0;
    z-index: 1200;
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
    transform: translate3d(0, 100%, 0);
  }

  .cart-drawer.is-open {
    transform: translate3d(0, 0, 0);
  }

  .cart-scrim {
    z-index: 1190;
  }

  .cart-head {
    min-height: 58px;
    padding: 14px 16px;
  }

  .cart-head h2 {
    font-family: var(--display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }

  .cart-head button {
    min-height: 34px;
    padding: 0 2px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .cart-items {
    padding-bottom: 8px;
  }

  .cart-item {
    grid-template-columns: 68px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px 14px;
  }

  .cart-item img {
    width: 68px;
    height: 84px;
    border-radius: 8px;
  }

  .cart-item h3 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .cart-item p,
  .cart-item strong {
    font-size: 10px;
  }

  .cart-item > strong {
    grid-column: 3;
    align-self: start;
    white-space: nowrap;
  }

  .qty-controls {
    gap: 7px;
    margin-top: 8px;
  }

  .qty-controls button {
    width: 30px;
    height: 30px;
  }

  .cart-empty {
    padding: 14px 16px;
  }

  .cart-foot {
    gap: 10px;
    padding: 12px 14px calc(14px + env(safe-area-inset-bottom));
    box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.54);
  }

  .cart-account-note {
    padding: 10px 11px;
    font-size: 11px;
    line-height: 1.45;
  }

  .cart-foot div {
    min-height: 28px;
  }

  .order-button {
    min-height: 50px;
    border-radius: 8px;
  }

  .cart-scrim.is-open {
    opacity: 0.72;
  }
}
