:root {
  --bg: #050914;
  --bg-soft: #08101e;
  --surface: #0b1528;
  --surface-2: #0f1d34;
  --surface-3: #14243e;
  --text: #f7f8fb;
  --muted: #b6c0d2;
  --muted-2: #8592a8;
  --gold: #e8c47c;
  --gold-light: #f7dda6;
  --gold-dark: #9e7937;
  --green: #96e3ae;
  --danger: #ffb4b4;
  --line: rgba(255, 255, 255, .10);
  --line-strong: rgba(232, 196, 124, .40);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --shadow: 0 26px 80px rgba(0, 0, 0, .34);
  --shell: min(1380px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0, rgba(54, 96, 180, .23), transparent 30%),
    radial-gradient(circle at 96% 5%, rgba(232, 196, 124, .10), transparent 24%),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.cart-locked {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
ul {
  margin-top: 0;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -.045em;
}

h1,
h2,
h3 {
  color: var(--text);
}

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

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  padding: 11px 16px;
  border-radius: 10px;
  color: #160f06;
  background: var(--gold-light);
  font-weight: 800;
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.btn {
  min-height: 48px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(247, 221, 166, .35);
  outline-offset: 3px;
}

.btn-primary,
.btn-gold {
  color: #171108;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  box-shadow: 0 13px 30px rgba(232, 196, 124, .16);
}

.btn-primary:hover,
.btn-gold:hover {
  box-shadow: 0 16px 38px rgba(232, 196, 124, .23);
}

.btn-secondary,
.btn-outline {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, .035);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--line-strong);
  background: rgba(232, 196, 124, .07);
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  cursor: not-allowed;
  opacity: .48;
  transform: none;
  box-shadow: none;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 9, 20, .87);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: var(--shell);
  min-height: 80px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand span,
.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.08rem;
  letter-spacing: -.02em;
}

.brand small {
  margin-top: 2px;
  color: var(--gold-light);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.65vw, 25px);
}

.desktop-nav a {
  position: relative;
  padding: 29px 0 27px;
  color: var(--muted);
  font-size: .88rem;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  border-radius: 2px;
  background: var(--gold);
  transition: transform .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--gold-light);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cart {
  min-height: 46px;
  padding: 9px 12px 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: var(--text);
  background: rgba(232, 196, 124, .07);
  font-weight: 800;
}

.header-cart:hover {
  background: rgba(232, 196, 124, .13);
}

.header-cart svg {
  width: 21px;
  height: 21px;
}

.cart-count {
  min-width: 25px;
  height: 25px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #171108;
  background: var(--gold-light);
  font-size: .77rem;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, .04);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  margin: 5px auto;
  display: block;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

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

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

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

.mobile-menu {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid var(--line);
  background: rgba(5, 9, 20, .98);
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a,
.mobile-cart {
  min-height: 50px;
  padding: 14px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  font-weight: 750;
  text-align: left;
}

.mobile-menu a.is-active {
  color: var(--gold-light);
}

.shop-shell {
  width: var(--shell);
  margin-inline: auto;
}

.shop-hero {
  padding: 32px 0 24px;
}

.shop-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .62fr);
  gap: 22px;
}

.shop-hero-copy,
.shop-hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(232, 196, 124, .10), transparent 28%),
    linear-gradient(145deg, rgba(14, 27, 50, .96), rgba(7, 13, 26, .98));
  box-shadow: var(--shadow);
}

.shop-hero-copy {
  padding: clamp(34px, 6vw, 78px);
}

.shop-hero-copy::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(232, 196, 124, .12);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px rgba(232, 196, 124, .025),
    0 0 0 110px rgba(232, 196, 124, .018);
  pointer-events: none;
}

.shop-hero h1 {
  position: relative;
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 6.2vw, 6.6rem);
  line-height: .94;
}

.shop-lead {
  position: relative;
  max-width: 760px;
  margin-bottom: 27px;
  font-size: 1.08rem;
}

.shop-hero-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.shop-trust-row {
  position: relative;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.shop-trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, .03);
  font-size: .82rem;
  font-weight: 700;
}

.shop-trust-row span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--green);
  font-weight: 900;
}

.shop-hero-card {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-hero-card-head {
  display: flex;
  align-items: center;
  gap: 9px;
}

.shop-hero-card-head small {
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(150, 227, 174, .10);
}

.shop-hero-card h2 {
  margin: 25px 0 16px;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.04;
}

.shop-hero-card > p {
  margin-bottom: 20px;
}

.shop-hero-card > a {
  width: fit-content;
  color: var(--gold-light);
  font-weight: 800;
}

.shop-hero-card > a span {
  display: inline-block;
  transition: transform .2s ease;
}

.shop-hero-card > a:hover span {
  transform: translateX(4px);
}

.shop-mini-stats {
  margin-top: 30px;
  padding-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  border-top: 1px solid var(--line);
}

.shop-mini-stats div {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .025);
}

.shop-mini-stats strong,
.shop-mini-stats span {
  display: block;
}

.shop-mini-stats strong {
  color: var(--gold-light);
  font-size: 1.65rem;
}

.shop-mini-stats span {
  margin-top: 3px;
  color: var(--muted-2);
  font-size: .78rem;
}

.shop-service-strip {
  padding: 0 0 30px;
}

.service-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(10, 19, 36, .76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .20);
}

.service-strip-grid article {
  min-height: 116px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-strip-grid article + article {
  border-left: 1px solid var(--line);
}

.service-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  color: var(--gold-light);
  background: rgba(232, 196, 124, .07);
  font-size: .78rem;
  font-weight: 900;
}

.service-strip-grid strong {
  display: block;
  margin-bottom: 5px;
}

.service-strip-grid p {
  margin-bottom: 0;
  color: var(--muted-2);
  font-size: .84rem;
  line-height: 1.5;
}

.shop-products-section {
  padding: 72px 0 85px;
}

.shop-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
}

.shop-section-head h2,
.shop-help-section h2 {
  margin-bottom: 15px;
  font-size: clamp(2.6rem, 4.5vw, 5rem);
  line-height: 1;
}

.shop-section-head p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
}

.desktop-cart-action .cart-count {
  margin-left: 3px;
}

.shop-toolbar {
  margin: 32px 0 26px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 16px;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-filter {
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, .025);
  font-size: .86rem;
  font-weight: 750;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.shop-filter:hover,
.shop-filter.is-active {
  border-color: var(--line-strong);
  color: var(--gold-light);
  background: rgba(232, 196, 124, .08);
}

.shop-search {
  min-height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .035);
}

.shop-search:focus-within {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(232, 196, 124, .08);
}

.shop-search svg {
  flex: 0 0 19px;
  width: 19px;
  color: var(--muted-2);
}

.shop-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
}

.shop-search input::placeholder {
  color: var(--muted-2);
}

.shop-feedback {
  min-height: 24px;
  margin-bottom: 8px;
  color: var(--muted-2);
  font-size: .85rem;
}

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

.shop-product-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(15, 29, 52, .94), rgba(7, 13, 26, .98));
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.shop-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 196, 124, .30);
  box-shadow: 0 25px 65px rgba(0, 0, 0, .30);
}

.shop-product-visual {
  position: relative;
  min-height: 224px;
  padding: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 42%, rgba(232, 196, 124, .18), transparent 23%),
    radial-gradient(circle at 10% 0, rgba(56, 96, 180, .25), transparent 36%),
    #081120;
}

.shop-product-visual.has-image {
  background-size: cover;
  background-position: center;
}

.shop-product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 9, 20, .35));
  pointer-events: none;
}

.product-category {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 15px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(5, 9, 20, .72);
  backdrop-filter: blur(8px);
  font-size: .72rem;
  font-weight: 800;
}

.product-availability {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(5, 9, 20, .72);
  font-size: .7rem;
  font-weight: 800;
}

.product-symbol {
  position: relative;
  z-index: 1;
  width: 116px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 221, 166, .30);
  border-radius: 32px;
  color: var(--gold-light);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .015)),
    rgba(10, 19, 36, .92);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, .32),
    inset 0 1px 0 rgba(255, 255, 255, .10);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -.04em;
}

.product-symbol::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 23px;
}

.shop-product-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.product-kicker {
  margin-bottom: 8px;
  color: var(--muted-2);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.shop-product-body h3 {
  margin-bottom: 10px;
  font-size: 1.32rem;
  line-height: 1.22;
}

.shop-product-body > p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .91rem;
  line-height: 1.65;
}

.shop-product-body ul {
  margin-bottom: 22px;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}

.shop-product-body li {
  position: relative;
  padding-left: 19px;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.45;
}

.shop-product-body li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.shop-product-price {
  margin-top: auto;
  padding-top: 17px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px 15px;
  border-top: 1px solid var(--line);
}

.shop-product-price small,
.shop-product-price span {
  color: var(--muted-2);
  font-size: .73rem;
}

.shop-product-price small {
  grid-column: 1;
}

.shop-product-price strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--gold-light);
  font-size: 1.55rem;
}

.shop-product-price span {
  grid-column: 1;
}

.product-actions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.product-actions .btn {
  width: 100%;
}

.product-skeleton {
  min-height: 490px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, .025) 20%, rgba(255, 255, 255, .07) 40%, rgba(255, 255, 255, .025) 60%) 0 0 / 200% 100%,
    rgba(10, 19, 36, .8);
  animation: skeleton 1.4s linear infinite;
}

@keyframes skeleton {
  to { background-position: -200% 0; }
}

.shop-empty-state {
  grid-column: 1 / -1;
  min-height: 260px;
  padding: 38px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed var(--line-strong);
  border-radius: 22px;
  background: rgba(255, 255, 255, .02);
}

.shop-empty-state h3 {
  margin-bottom: 8px;
}

.shop-empty-state p {
  margin-bottom: 0;
}

.shop-help-section {
  padding: 0 0 40px;
}

.shop-help-grid {
  padding: clamp(28px, 5vw, 62px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 35px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0 0, rgba(232, 196, 124, .10), transparent 30%),
    linear-gradient(145deg, rgba(15, 29, 52, .95), rgba(7, 13, 26, .98));
  box-shadow: var(--shadow);
}

.shop-help-grid > div:first-child p:not(.eyebrow) {
  max-width: 800px;
  margin-bottom: 0;
}

.shop-help-actions {
  min-width: 220px;
  display: grid;
  gap: 15px;
  text-align: center;
}

.text-link {
  color: var(--gold-light);
  font-size: .87rem;
  font-weight: 800;
}

.shop-info-section {
  padding: 20px 0 85px;
}

.shop-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.shop-info-grid article {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(10, 19, 36, .64);
}

.shop-info-grid article > span {
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.shop-info-grid h3 {
  margin: 15px 0 8px;
  font-size: 1.05rem;
}

.shop-info-grid p {
  margin-bottom: 0;
  color: var(--muted-2);
  font-size: .84rem;
}

.footer {
  width: var(--shell);
  margin: 0 auto;
  padding: 30px 0 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
}

.footer strong {
  display: block;
  margin-bottom: 6px;
}

.footer p {
  margin-bottom: 0;
  color: var(--muted-2);
  font-size: .84rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.footer a {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 700;
}

.footer a:hover {
  color: var(--gold-light);
}

.cart-backdrop {
  position: fixed;
  z-index: 190;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, .63);
  backdrop-filter: blur(5px);
  transition: opacity .25s ease, visibility .25s ease;
}

.cart-backdrop.is-open {
  visibility: visible;
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(480px, 100%);
  transform: translateX(102%);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  border-left: 1px solid var(--line);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(232, 196, 124, .09), transparent 25%),
    #08101e;
  box-shadow: -25px 0 70px rgba(0, 0, 0, .40);
  transition: transform .3s cubic-bezier(.22, .8, .2, 1);
}

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

.cart-drawer-head {
  padding: 23px 22px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-head .eyebrow {
  margin-bottom: 4px;
}

.cart-drawer-head h2 {
  margin-bottom: 0;
  font-size: 2.2rem;
}

.cart-close {
  flex: 0 0 43px;
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: rgba(255, 255, 255, .04);
  font-size: 1.55rem;
  line-height: 1;
}

.cart-close:hover {
  border-color: var(--line-strong);
  background: rgba(232, 196, 124, .08);
}

.cart-items {
  padding: 12px 20px 20px;
  overflow-y: auto;
}

.empty-cart {
  min-height: 240px;
  margin: 0;
  display: grid;
  place-items: center;
  color: var(--muted-2);
  text-align: center;
}

.cart-item {
  padding: 17px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.cart-item-main {
  min-width: 0;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.cart-item-symbol {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--gold-light);
  background: rgba(255, 255, 255, .035);
  font-size: .77rem;
  font-weight: 900;
}

.cart-item strong,
.cart-item span {
  display: block;
}

.cart-item strong {
  margin-bottom: 5px;
  overflow: hidden;
  font-size: .91rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item-price {
  color: var(--muted-2);
  font-size: .78rem;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 5px;
}

.qty-controls button,
.qty-controls > span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--text);
  background: rgba(255, 255, 255, .035);
  font-size: .88rem;
}

.qty-controls button:hover {
  border-color: var(--line-strong);
  color: var(--gold-light);
}

.qty-controls .remove-item {
  margin-left: 3px;
  color: var(--danger);
}

.cart-summary {
  padding: 18px 22px;
  display: grid;
  gap: 11px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .018);
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: .88rem;
}

.cart-summary strong {
  color: var(--text);
}

.cart-total-row {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 1rem !important;
}

.cart-total-row strong {
  color: var(--gold-light);
  font-size: 1.3rem;
}

.cart-summary small {
  color: var(--muted-2);
  font-size: .69rem;
  line-height: 1.45;
}

.cart-checkout {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
}

.checkout-message {
  min-height: 20px;
  margin: 9px 0 0;
  color: var(--danger);
  font-size: .78rem;
  line-height: 1.45;
  text-align: center;
}

.checkout-security {
  margin: 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted-2);
  font-size: .69rem;
  line-height: 1.35;
}

.checkout-security svg {
  flex: 0 0 16px;
  width: 16px;
}

.shop-toast {
  position: fixed;
  z-index: 240;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100% - 40px));
  padding: 13px 16px;
  transform: translateY(25px);
  visibility: hidden;
  opacity: 0;
  border: 1px solid rgba(150, 227, 174, .28);
  border-radius: 13px;
  color: #e9fff0;
  background: rgba(17, 54, 31, .96);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .30);
  font-size: .84rem;
  font-weight: 700;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.shop-toast.is-visible {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1180px) {
  .desktop-nav {
    gap: 13px;
  }

  .desktop-nav a {
    font-size: .8rem;
  }

  .header-cart-label {
    display: none;
  }

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

@media (max-width: 980px) {
  .desktop-nav,
  .header-cart {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-wrap {
    grid-template-columns: auto 1fr auto;
  }

  .shop-hero-grid,
  .shop-help-grid {
    grid-template-columns: 1fr;
  }

  .shop-hero-card {
    min-height: 400px;
  }

  .service-strip-grid {
    grid-template-columns: 1fr;
  }

  .service-strip-grid article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .shop-help-actions {
    min-width: 0;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 16px);
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand img {
    width: 49px;
    height: 49px;
  }

  .shop-hero {
    padding-top: 10px;
  }

  .shop-hero-grid {
    gap: 10px;
  }

  .shop-hero-copy,
  .shop-hero-card,
  .shop-help-grid {
    border-radius: 21px;
  }

  .shop-hero-copy {
    padding: 34px 20px;
  }

  .shop-hero h1 {
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  .shop-hero-card {
    min-height: 0;
    padding: 28px 20px;
  }

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

  .service-strip-grid article {
    min-height: 100px;
    padding: 20px;
  }

  .shop-products-section {
    padding: 55px 0 65px;
  }

  .shop-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .desktop-cart-action {
    width: 100%;
  }

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

  .shop-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
  }

  .shop-filter {
    flex: 0 0 auto;
  }

  .shop-product-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .shop-product-visual {
    min-height: 205px;
  }

  .shop-help-grid {
    padding: 31px 20px;
  }

  .shop-help-actions,
  .shop-help-actions .btn {
    width: 100%;
  }

  .shop-info-section {
    padding-bottom: 55px;
  }

  .footer {
    flex-direction: column;
  }

  .footer nav {
    justify-content: flex-start;
  }

  .cart-drawer {
    width: 100%;
  }
}

@media (max-width: 470px) {
  .brand span {
    display: none;
  }

  .shop-hero-actions {
    display: grid;
  }

  .shop-trust-row {
    display: grid;
  }

  .shop-product-body {
    padding: 20px 17px;
  }

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

  .shop-product-price strong {
    grid-column: 1;
    grid-row: auto;
    margin-top: 4px;
  }

  .shop-product-price span {
    grid-column: 1;
  }

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

  .qty-controls {
    padding-left: 64px;
  }
}

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