:root {
  --bg: #111111;
  --panel: #141414;
  --panel-2: #1b1b1b;
  --text: #f7f1d0;
  --text-soft: rgba(247, 241, 208, 0.82);
  --yellow: #f8d529;
  --yellow-soft: rgba(248, 213, 41, 0.18);
  --line: rgba(248, 213, 41, 0.38);
  --dark-accent: #171717;
  --pink: #ff7baf;
  --pink-strong: #ff4f9a;
  --soft-pink: #ffd2df;
  --shadow: rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
}

body {
  min-height: 100vh;
}

button, input {
  font: inherit;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  width: 100%;
  padding: 0 22px 0 12px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 1) 0%, rgba(15, 15, 15, 1) 100%);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.02);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 180px;
}

.brand img {
  display: block;
  width: auto;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(248, 213, 41, 0.2));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 1.9rem;
}

.nav a {
  position: relative;
  padding: 0.82rem 0.2rem 1rem;
  color: var(--text-soft);
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff8c8;
}

.nav a.active {
  color: #fff7d2;
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 12px rgba(248, 213, 41, 0.5);
}

.page-shell {
  padding: 22px 18px 60px;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 230px;
  max-width: 1280px;
  margin: 0 auto 18px;
  padding: 30px 26px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(248, 213, 41, 0.2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.18));
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0;
  color: #fff7d6;
  font-size: clamp(2.3rem, 3vw, 4rem);
  letter-spacing: -0.06em;
}

.page-hero-knives {
  background: linear-gradient(135deg, #4b3d2c 0%, #171717 30%, #2d2d2d 100%);
}

.page-hero-guns {
  background: linear-gradient(135deg, #2c3d52 0%, #171717 36%, #262626 100%);
}

.page-hero-sets {
  background: linear-gradient(135deg, #3d2b44 0%, #171717 34%, #202020 100%);
}

.page-hero-summer {
  background: linear-gradient(135deg, #ca8d00 0%, #f6d75a 20%, #1a1a1a 62%, #0d0d0d 100%);
}

.page-hero-support {
  background: linear-gradient(135deg, #222222 0%, #1a1a1a 40%, #312b19 100%);
}

.support-shell {
  max-width: 1100px;
  margin: 0 auto;
}

.support-panel {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(248, 213, 41, 0.14);
}

.support-panel h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
}

.support-panel p {
  color: rgba(255, 247, 206, 0.75);
  max-width: 720px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.support-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(248, 213, 41, 0.1);
}

.support-card strong {
  color: #f7df80;
}

.support-card span {
  color: #fff5cc;
}

.actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  min-width: 180px;
}

.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(248, 213, 41, 0.75);
  border-radius: 50%;
  background: transparent;
  color: var(--yellow);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px rgba(248, 213, 41, 0.12);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.has-badge {
  overflow: visible;
}

.badge {
  position: absolute;
  right: -3px;
  top: -4px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--yellow);
  color: #101010;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.hero-wrap {
  padding: 20px 18px 0;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28));
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.08);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 12, 12, 0.7) 0%, rgba(12, 12, 12, 0.38) 32%, rgba(12, 12, 12, 0.18) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  margin-right: auto;
  padding: 48px 42px;
  color: #fff6ae;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  color: #fff7cf;
  font-size: clamp(2.6rem, 4vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-transform: none;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.subtitle {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(255, 248, 194, 0.85);
  font-size: 1.06rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 48px;
  padding: 0 26px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-btn {
  background: linear-gradient(180deg, #ffd84d 0%, #f8d529 100%);
  color: #171717;
  box-shadow: 0 10px 24px rgba(248, 213, 41, 0.28);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(248, 213, 41, 0.7);
  color: #fff7cf;
}

.primary-btn:hover,
.secondary-btn:hover,
.primary-btn:focus-visible,
.secondary-btn:focus-visible {
  transform: translateY(-1px);
}

.products-section {
  padding: 38px 20px 60px;
  background: #111111;
}

.products-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto 18px;
  gap: 20px;
}

.products-header h2 {
  margin: 0;
  color: #f3f1de;
  font-size: clamp(2.4rem, 4vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.products-header p {
  margin: 10px 0 0;
  color: rgba(255, 245, 218, 0.8);
  font-size: 1.1rem;
  font-weight: 600;
}

.shop-summer-btn {
  border: 1px solid rgba(248, 213, 41, 0.7);
  background: rgba(255, 255, 255, 0.02);
  color: #f2df5d;
  border-radius: 16px;
  padding: 0.8rem 1.2rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-summer-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(248, 213, 41, 0.18);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 10px 10px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(248, 213, 41, 0.18);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  background-color: #121212;
}

.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(248, 213, 41, 0.6);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(248, 213, 41, 0.2);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  filter: saturate(1.15) contrast(1.04);
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.badge-save {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9bb2 0%, #ff6c9f 100%);
  color: #fff9fd;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(255, 108, 159, 0.35);
}

.card-art {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 285px;
  margin-top: 4px;
  padding-top: 30px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.card-art img {
  display: block;
  width: 100%;
  max-width: 270px;
  height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(30, 94, 146, 0.25));
  background: transparent;
}

.add-to-cart {
  align-self: center;
  margin-top: 4px;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.02em;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.product-card:hover .add-to-cart,
.product-card:focus-within .add-to-cart,
.add-to-cart:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.28);
}

.product-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 8px 0;
  color: #ffefb5;
}

.product-meta h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff7d6;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 800;
  color: #ffde74;
}

.new-price {
  font-size: 1.1rem;
}

.old-price {
  color: rgba(255, 238, 187, 0.7);
  text-decoration: line-through;
  font-size: 0.82rem;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
}

.cart-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.search-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 40;
}

.search-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.search-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100vh;
  padding: 20px 18px 18px;
  background: #131313;
  box-shadow: -10px 0 20px rgba(0, 0, 0, 0.18);
  transform: translateX(110%);
  transition: transform 0.25s ease;
  z-index: 50;
  display: flex;
  flex-direction: column;
}

.search-panel.open {
  transform: translateX(0);
}

.search-header {
  color: #fff7d6;
}

.search-input {
  width: 100%;
  border: 1px solid rgba(248, 213, 41, 0.45);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff9d8;
  padding: 0.9rem 1rem;
  margin-bottom: 16px;
}

.search-input::placeholder {
  color: rgba(255, 249, 216, 0.58);
}

.search-results {
  display: grid;
  gap: 12px;
  overflow: auto;
  padding-right: 4px;
}

.search-result {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(248, 213, 41, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff3bd;
  text-align: left;
  cursor: pointer;
}

.search-result img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 10px;
}

.search-result span {
  font-weight: 700;
}

.search-result strong {
  color: #f9de78;
}

.search-empty {
  color: rgba(255, 248, 214, 0.76);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(248, 213, 41, 0.12);
  border-radius: 12px;
  padding: 16px;
}

.highlight-product {
  box-shadow: 0 0 0 3px rgba(248, 213, 41, 0.6), 0 18px 28px rgba(248, 213, 41, 0.12);
  transform: scale(1.01);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100vh;
  padding: 20px 18px 18px;
  background: linear-gradient(180deg, #0d0d0d 0%, #171717 100%);
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.4);
  border-left: 1px solid rgba(248, 213, 41, 0.18);
  transform: translateX(110%);
  transition: transform 0.25s ease;
  z-index: 50;
  display: flex;
  flex-direction: column;
}

.cart-panel.open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cart-header h3 {
  margin: 0;
  color: #f7f1cf;
  font-size: 1.8rem;
}

.cart-close {
  border: 0;
  background: transparent;
  color: #f3d65b;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: auto;
  padding-right: 4px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(248, 213, 41, 0.14);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(248, 213, 41, 0.2);
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #f7f0d2;
}

.cart-item-info strong {
  font-size: 0.95rem;
}

.cart-item-info span {
  font-size: 0.82rem;
  color: rgba(255, 232, 129, 0.95);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.2rem 0.35rem;
  border: 1px solid rgba(248, 213, 41, 0.26);
  border-radius: 999px;
  background: rgba(248, 213, 41, 0.08);
}

.cart-item-qty button {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: #f8d529;
  color: #171717;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
}

.cart-item-qty span {
  min-width: 18px;
  text-align: center;
  color: #fff4bf;
  font-weight: 800;
}

.remove-btn {
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: #f9d2dc;
  border-radius: 10px;
  padding: 0.48rem 0.6rem;
  font-weight: 700;
  cursor: pointer;
  margin-left: 6px;
}

.cart-footer {
  border-top: 1px solid rgba(248, 213, 41, 0.15);
  padding-top: 14px;
  margin-top: 16px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  color: #f9f4d1;
  font-size: 1.1rem;
}

.checkout-btn {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffd84d 0%, #f8d529 100%);
  color: #171717;
  font-weight: 900;
  padding: 0.9rem 1rem;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(248, 213, 41, 0.18);
}

.empty-cart {
  display: grid;
  place-items: center;
  min-height: 200px;
  color: rgba(248, 213, 41, 0.7);
  font-weight: 700;
  border: 1px dashed rgba(248, 213, 41, 0.25);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
}

.admin-page {
  background: #f4f4f4;
}

.admin-shell {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 240px;
  background: #1d1d1d;
  color: #fff;
  padding: 24px 18px;
}

.admin-brand {
  margin-bottom: 32px;
  font-size: 1.5rem;
  font-weight: 900;
  color: #f7d941;
}

.admin-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-sidebar a {
  color: #f4f1d8;
  text-decoration: none;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  font-weight: 700;
}

.admin-sidebar a.active {
  background: rgba(247, 217, 65, 0.15);
  color: #fff3a3;
}

.admin-main {
  flex: 1;
  padding: 32px;
}

.admin-main h1 {
  margin: 0 0 20px;
  color: #25252a;
}

.global-style-panel {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  margin-bottom: 22px;
}

.global-style-panel h2 {
  margin-top: 0;
  color: #242428;
}

.global-style-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.global-style-row input {
  flex: 1;
}

.small-btn {
  min-width: 220px;
}

.product-form {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  margin-bottom: 28px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  color: #3d3740;
  font-weight: 700;
}

.product-form input {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: #f9f9f9;
}

.upload-wrap {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 18px;
  align-items: end;
}

.background-upload-area {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 16px;
  align-items: end;
}

.upload-dropzone {
  display: grid;
  place-items: center;
  min-height: 98px;
  border: 2px dashed rgba(32, 32, 32, 0.24);
  border-radius: 12px;
  background: #f8f8f8;
  color: #5a5a5a;
  font-weight: 700;
  text-align: center;
  padding: 20px 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.upload-dropzone.compact {
  min-height: 78px;
  padding: 14px 12px;
}

.upload-dropzone.drag-over,
.upload-dropzone.uploaded {
  border-color: rgba(248, 213, 41, 0.9);
  background: rgba(248, 213, 41, 0.08);
}

.admin-submit,
.mini-btn {
  border: 0;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-weight: 800;
  cursor: pointer;
}

.admin-submit {
  background: linear-gradient(180deg, #ffd84d 0%, #f8d529 100%);
  color: #171717;
}

.admin-products {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.admin-products h2 {
  margin-top: 0;
  color: #29292d;
}

.admin-product-list {
  display: grid;
  gap: 14px;
}

.admin-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 12px;
}

.admin-thumb {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.admin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-info {
  flex: 1;
  color: #35343b;
}

.admin-info h3 {
  margin: 0 0 6px;
}

.admin-actions {
  display: flex;
  gap: 8px;
}

.mini-btn {
  background: #f0f2f5;
  color: #2f3037;
}

.mini-btn.danger {
  background: #ffdfe8;
  color: #8d345d;
}

.purchase-page {
  min-height: 100vh;
  background: #f3f4f5;
  color: #1a1c20;
  font-family: "Inter", sans-serif;
}

.purchase-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 20px 80px;
}

.purchase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: start;
  animation: fadeSlideUp 0.55s ease both;
}

.purchase-form-panel,
.purchase-summary-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(18, 18, 18, 0.06);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(15, 15, 15, 0.06);
}

.purchase-form-panel {
  padding: 24px 28px 26px;
}

.purchase-summary-panel {
  padding: 22px 20px 18px;
  min-height: 100%;
}

.express-checkout {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #6b6d74;
}

.google-pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-radius: 14px;
  background: #101010;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(16, 16, 16, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.google-pay-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(16, 16, 16, 0.2);
}

.google-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5f5f, #ffcc3c 45%, #3bbf7a 80%, #3aa6ff);
  color: #111;
  font-size: 0.82rem;
}

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 26px 0 12px;
  color: #8b8e96;
  font-size: 0.9rem;
  font-weight: 600;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(18, 18, 18, 0.12);
}

.section-block {
  margin-top: 26px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.2;
  color: #1d1f22;
}

.section-head a {
  color: #4d68e8;
  text-decoration: none;
  font-weight: 600;
}

.payment-head {
  align-items: end;
}

.payment-head small {
  color: #7b7e87;
  font-size: 0.8rem;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 12px;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.input-group:focus-within {
  border-color: rgba(95, 109, 253, 0.8);
  box-shadow: 0 0 0 3px rgba(95, 109, 253, 0.08);
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 15px 48px 15px 16px;
  border: 0;
  background: transparent;
  color: #1a1c20;
  font: inherit;
  outline: none;
}

.input-group input::placeholder,
.input-group select {
  color: #7b7e87;
}

.icon-input input {
  padding-left: 44px;
}

.input-group i {
  position: absolute;
  right: 14px;
  color: #7b7e87;
  font-size: 0.95rem;
}

.input-group.is-valid {
  border-color: #20a866;
  box-shadow: 0 0 0 3px rgba(32, 168, 102, 0.12);
}

.input-group.is-valid:focus-within {
  border-color: #20a866;
  box-shadow: 0 0 0 3px rgba(32, 168, 102, 0.15);
}

.field-valid-icon {
  position: absolute;
  right: 13px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #20a866;
  color: #fff;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.field-valid-icon i {
  position: static;
  color: inherit;
  font-size: 0.72rem;
}

.input-group.is-valid > i {
  opacity: 0;
}

.input-group.is-valid .field-valid-icon {
  opacity: 1;
  transform: scale(1);
}

.icon-input i {
  right: auto;
  left: 15px;
}

.payment-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(118, 79, 255, 0.4);
  background: rgba(118, 79, 255, 0.04);
  border-radius: 12px;
}

.method-title {
  font-weight: 700;
  color: #1d1f22;
}

.method-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 24px;
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #fff;
}

.card-number-wrap {
  padding-right: 82px;
}

.card-number-wrap input {
  padding-right: 92px;
}

.card-brand-tag {
  position: absolute;
  right: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.04);
}

.card-brand-tag img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.logo-visa {
  background: linear-gradient(135deg, #1a73e8, #2fa4ff);
}

.logo-mastercard {
  background: linear-gradient(135deg, #ffb300, #ff5e5b);
}

.logo-amex {
  background: linear-gradient(135deg, #4bb6d8, #1d7dd1);
}

.split-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.address-block {
  padding-bottom: 8px;
}

.checkbox-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
  flex-direction: row !important;
  margin-top: 14px;
  color: #3c3f46;
  font-size: 0.95rem;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  accent-color: #5b58fb;
}

.purchase-summary-panel {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: stretch;
}

.purchase-items {
  display: grid;
  gap: 12px;
}

.purchase-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(18, 18, 18, 0.025);
  border: 1px solid rgba(18, 18, 18, 0.06);
  animation: fadeSlideUp 0.45s ease both;
}

.purchase-item-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.purchase-item-meta img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(18, 18, 18, 0.06);
}

.purchase-item-meta strong {
  display: block;
  margin-bottom: 3px;
  color: #1c1f24;
  font-size: 0.98rem;
}

.purchase-item-meta small {
  color: #7b7e87;
}

.purchase-badge {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.discount-box {
  display: flex;
  gap: 10px;
  padding-top: 8px;
}

.discount-box input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(18, 18, 18, 0.12);
  background: rgba(255, 255, 255, 0.8);
  color: #1d1f22;
}

.discount-box button {
  border: 0;
  border-radius: 10px;
  background: #f0f2f5;
  color: #111;
  font-weight: 700;
  padding: 0 16px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.discount-box button:hover {
  transform: translateY(-1px);
  background: #eceef2;
}

.summary-total-block {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: #44484f;
}

.summary-row strong {
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: right;
  color: #1d1f22;
  font-variant-numeric: tabular-nums;
}

.total-row {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111;
  border-top: 1px solid rgba(18, 18, 18, 0.06);
  margin-top: 6px;
  padding-top: 14px;
}

.order-meta {
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

#orderIdLabel {
  color: #4a4d57;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.place-order-btn {
  margin-top: 4px;
  width: 100%;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #1b1b1d, #090909);
  color: #fff;
  padding: 16px 18px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(17, 17, 17, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.place-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(17, 17, 17, 0.2);
}

.purchase-empty {
  min-height: 120px;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .purchase-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .purchase-shell {
    padding-left: 14px;
    padding-right: 14px;
  }

  .purchase-form-panel,
  .purchase-summary-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .split-fields {
    grid-template-columns: 1fr;
  }

  .discount-box {
    flex-direction: column;
  }
}

.discount-panel {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  margin-bottom: 28px;
}

.discount-panel h2 {
  margin-top: 0;
  color: #26272b;
}

.discount-form {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 12px;
  margin-bottom: 18px;
}

.discount-form input,
.discount-form select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

.discount-list {
  display: grid;
  gap: 10px;
}

.discount-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  background: #fbfbfb;
}

.discount-empty {
  color: #5f5f5f;
  padding: 12px 0;
}

.announcement-bar {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #1a1a1a 0%, #111111 35%, #181818 100%);
  border-bottom: 1px solid rgba(248, 213, 41, 0.24);
  color: #fff7d1;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.announcement-track {
  white-space: nowrap;
  overflow: hidden;
}

.announcement-inner {
  display: inline-block;
  min-width: 100%;
  padding: 10px 0;
  animation: announcement-scroll 22s linear infinite;
}

.announcement-inner span {
  display: inline-block;
  margin-right: 34px;
}

@keyframes announcement-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.toast-container,
.admin-toast-container {
  position: fixed;
  top: 18px;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}

.toast,
.admin-toast {
  min-width: 220px;
  max-width: 320px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(17, 17, 17, 0.95);
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  border: 1px solid rgba(248, 213, 41, 0.22);
}

.toast.show,
.admin-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-success,
.admin-toast.success {
  border-color: rgba(83, 196, 122, 0.68);
}

.toast-error,
.admin-toast.error {
  border-color: rgba(244, 86, 86, 0.7);
}

.faq-section {
  max-width: 1280px;
  margin: 36px auto 56px;
  padding: 48px 20px 0;
  border-top: 1px solid rgba(248, 213, 41, 0.18);
}

.faq-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.faq-kicker {
  display: block;
  margin-bottom: 10px;
  color: #f8d529;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-header h2 {
  margin: 0;
  color: #fff7d2;
  font-size: clamp(2.35rem, 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.faq-header p {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(247, 241, 208, 0.68);
  font-size: 1.05rem;
  line-height: 1.6;
}

.faq-support-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 230px;
  padding: 14px 0 14px 18px;
  border-left: 2px solid #f8d529;
  color: #fff7d2;
  font-weight: 800;
  text-decoration: none;
}

.faq-support-link span {
  display: grid;
  gap: 3px;
}

.faq-support-link small {
  color: rgba(247, 241, 208, 0.58);
  font-size: 0.72rem;
  font-weight: 600;
}

.faq-support-link > i {
  color: #f8d529;
  transition: transform 0.2s ease;
}

.faq-support-link:hover > i,
.faq-support-link:focus-visible > i {
  transform: translateX(4px);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.5fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.faq-confidence {
  position: sticky;
  top: 24px;
  padding: 6px 0 6px 24px;
  border-left: 1px solid rgba(248, 213, 41, 0.25);
}

.faq-confidence-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border: 1px solid rgba(248, 213, 41, 0.4);
  border-radius: 8px;
  background: rgba(248, 213, 41, 0.08);
  color: #f8d529;
}

.faq-confidence h3 {
  max-width: 300px;
  margin: 0;
  color: #fff7d2;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.25;
}

.faq-confidence p {
  margin: 14px 0 22px;
  color: rgba(247, 241, 208, 0.64);
  line-height: 1.65;
}

.faq-confidence ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: rgba(255, 247, 210, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.faq-confidence li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-confidence li i {
  color: #55d894;
  font-size: 0.75rem;
}

.faq-content {
  min-width: 0;
}

.faq-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(248, 213, 41, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-search-wrap:focus-within {
  border-color: rgba(248, 213, 41, 0.7);
  box-shadow: 0 0 0 3px rgba(248, 213, 41, 0.08);
}

.faq-search-wrap > i {
  position: absolute;
  left: 17px;
  color: rgba(248, 213, 41, 0.72);
}

.faq-search-wrap input {
  width: 100%;
  min-height: 54px;
  padding: 0 50px 0 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff7d2;
}

.faq-search-wrap input::placeholder {
  color: rgba(247, 241, 208, 0.46);
}

.faq-search-wrap input::-webkit-search-cancel-button {
  display: none;
}

.faq-search-wrap button {
  position: absolute;
  right: 9px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 247, 210, 0.72);
  cursor: pointer;
}

.cart-item-qty button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.faq-list {
  border-top: 1px solid rgba(248, 213, 41, 0.18);
}

.faq-item {
  border-bottom: 1px solid rgba(248, 213, 41, 0.18);
}

.faq-item[hidden] {
  display: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  min-height: 76px;
  padding: 18px 4px;
  border: 0;
  background: transparent;
  color: #fff2b7;
  font-size: 1.03rem;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.faq-question-copy {
  display: flex;
  align-items: baseline;
  gap: 16px;
  line-height: 1.4;
}

.faq-number {
  min-width: 24px;
  color: rgba(248, 213, 41, 0.52);
  font-size: 0.72rem;
  font-weight: 800;
}

.faq-toggle {
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(248, 213, 41, 0.28);
  border-radius: 50%;
  color: #f8d529;
  transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease;
}

.faq-question:hover .faq-toggle,
.faq-question:focus-visible .faq-toggle {
  background: #f8d529;
  color: #111;
}

.faq-question:focus-visible {
  outline: 2px solid #f8d529;
  outline-offset: 3px;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: #f8d529;
  color: #111;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 680px;
  margin: 0;
  padding: 0 56px 24px 44px;
  color: rgba(255, 246, 209, 0.7);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-empty {
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 48px 20px;
  color: rgba(255, 247, 210, 0.55);
  text-align: center;
}

.faq-empty[hidden] {
  display: none;
}

.faq-empty i {
  margin-bottom: 4px;
  color: #f8d529;
  font-size: 1.4rem;
}

.faq-empty strong {
  color: #fff2b7;
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(980px, calc(100% - 32px));
  transform: translate(-50%, -50%) scale(0.96);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(25, 25, 25, 0.98));
  border: 1px solid rgba(248, 213, 41, 0.28);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 120;
}

.product-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 110;
  transition: opacity 0.25s ease;
}

.modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.85fr);
  gap: 22px;
  padding: 18px;
}

.modal-media {
  position: relative;
  min-height: 430px;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 206, 68, 0.18), rgba(255, 142, 77, 0.17));
  border: 1px solid rgba(248, 213, 41, 0.2);
}

.modal-media img {
  width: 100%;
  max-width: 420px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(17, 17, 17, 0.28));
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 8px 10px 4px;
  color: #f7f0cf;
}

.modal-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f8d529, #ffb703);
  color: #111;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.modal-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 3vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #fff7d6;
}

.modal-price-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.modal-price {
  font-size: clamp(2rem, 2.2vw, 2.7rem);
  font-weight: 900;
  color: #f8d529;
}

.modal-old-price {
  color: rgba(255, 247, 214, 0.55);
  text-decoration: line-through;
  font-weight: 700;
}

.modal-save {
  padding: 6px 10px;
  display: inline-flex;
  background: rgba(248, 213, 41, 0.12);
  color: #f9e68c;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.modal-stock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
  color: #f4edcf;
  font-weight: 700;
}

.modal-stock-row strong {
  color: #8ef1c6;
}

.modal-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.modal-meta-grid > div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(248, 213, 41, 0.18);
  border-radius: 12px;
  padding: 10px 12px;
}

.modal-meta-grid label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 247, 214, 0.72);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal-meta-grid strong {
  display: block;
  font-size: 0.92rem;
  color: #fff;
}

.modal-actions {
  display: flex;
  gap: 14px;
}

.modal-secondary,
.modal-primary {
  flex: 1;
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
}

.modal-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f7f0cf;
  border: 1px solid rgba(248, 213, 41, 0.16);
}

.modal-primary {
  background: linear-gradient(135deg, #f8d529, #fbbf24);
  color: #111;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(248, 213, 41, 0.12);
  color: #f8d529;
  font-size: 2rem;
  line-height: 1;
  z-index: 2;
  cursor: pointer;
}

.site-footer {
  background: #101010;
  border-top: 1px solid rgba(248, 213, 41, 0.2);
  color: #f5f0d4;
  padding: 32px 20px 20px;
  margin-top: 38px;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.footer-brand-block p {
  color: rgba(245, 240, 212, 0.72);
  line-height: 1.6;
}

.footer-logo-wrap img {
  width: 130px;
  height: auto;
  margin-bottom: 8px;
}

.footer-accepted {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 26px;
  border-radius: 8px;
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: white;
  background: linear-gradient(135deg, #233a96, #1f8eff);
}

.brand-logo-img {
  width: 42px;
  height: 26px;
  object-fit: contain;
  border-radius: 8px;
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(248, 213, 41, 0.14);
}

.brand-logo-img.small {
  width: 36px;
  height: 22px;
  padding: 3px 5px;
}

.brand-logo.mastercard {
  background: linear-gradient(135deg, #f9b700, #ff7a59);
}

.brand-logo.paypal {
  background: linear-gradient(135deg, #1f8aff, #0857d9);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h4 {
  margin: 0 0 4px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 245, 200, 0.7);
}

.footer-column a {
  color: rgba(245, 240, 212, 0.86);
  text-decoration: none;
}

.social-column a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 18px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(248, 213, 41, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(245, 240, 212, 0.7);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .topbar {
    gap: 0.75rem;
    padding: 0 12px;
  }

  .brand {
    min-width: 120px;
  }

  .nav {
    gap: 0.9rem;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .hero-content {
    padding: 36px 24px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-confidence {
    position: static;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 18px;
    padding: 4px 0 4px 20px;
  }

  .faq-confidence-icon {
    grid-row: 1 / span 3;
    margin: 0;
  }

  .faq-confidence h3,
  .faq-confidence p {
    max-width: none;
  }

  .faq-confidence p {
    margin: 8px 0 16px;
  }

  .faq-confidence ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
  }
}

@media (max-width: 620px) {
  .topbar {
    height: auto;
    min-height: 80px;
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .nav {
    width: 100%;
    justify-content: center;
    padding-bottom: 4px;
  }

  .actions {
    width: 100%;
    justify-content: center;
  }

  .hero {
    min-height: 360px;
  }

  .hero-content {
    width: 100%;
    padding: 28px 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .admin-shell {
    flex-direction: column;
  }

  .admin-sidebar {
    width: 100%;
  }

  .faq-section {
    margin-top: 22px;
    padding-top: 34px;
  }

  .faq-header {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .faq-header h2 {
    font-size: 2.45rem;
  }

  .faq-support-link {
    min-width: 0;
    padding-right: 8px;
  }

  .faq-confidence {
    display: block;
  }

  .faq-confidence-icon {
    margin-bottom: 18px;
  }

  .faq-confidence ul {
    display: grid;
  }

  .faq-question {
    gap: 14px;
    min-height: 72px;
    font-size: 0.96rem;
  }

  .faq-question-copy {
    align-items: flex-start;
    gap: 10px;
  }

  .faq-answer p {
    padding: 0 44px 22px 34px;
    font-size: 0.92rem;
  }
}

/* Storefront refresh */
.shop-home {
  --shop-bg: #0d0e10;
  --shop-panel: #15171b;
  --shop-panel-strong: #1b1e23;
  --shop-line: rgba(255, 255, 255, 0.11);
  --shop-text: #f7f8fa;
  --shop-muted: #9ca2ad;
  --shop-yellow: #f6d447;
  --shop-pink: #ff6f9f;
  --shop-green: #55d894;
  background: var(--shop-bg);
  color: var(--shop-text);
  font-family: "Inter", sans-serif;
}

.shop-home *,
.shop-home *::before,
.shop-home *::after {
  letter-spacing: 0;
}

.shop-home .announcement-bar {
  min-height: 34px;
  border-bottom: 1px solid rgba(246, 212, 71, 0.2);
  background: #17140b;
  color: #f8e788;
}

.shop-home .topbar {
  position: sticky;
  top: 0;
  z-index: 35;
  height: 72px;
  padding: 0 max(20px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid var(--shop-line);
  background: rgba(13, 14, 16, 0.94);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.shop-home .brand {
  min-width: 178px;
  text-decoration: none;
}

.shop-home .brand img {
  width: 156px;
  height: 48px;
  filter: drop-shadow(0 0 12px rgba(246, 212, 71, 0.14));
}

.shop-home .nav {
  gap: 5px;
}

.shop-home .nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #aeb3bc;
  font-size: 0.88rem;
  font-weight: 700;
}

.shop-home .nav a i {
  width: 14px;
  color: #7f858f;
  text-align: center;
}

.shop-home .nav a:hover,
.shop-home .nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
}

.shop-home .nav a.active {
  border-color: rgba(246, 212, 71, 0.32);
  background: rgba(246, 212, 71, 0.1);
  color: #fff2ad;
}

.shop-home .nav a.active i {
  color: var(--shop-yellow);
}

.shop-home .nav a.active::after {
  display: none;
}

.shop-home .actions {
  min-width: 150px;
  gap: 7px;
}

.shop-home .icon-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--shop-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: #d9dce2;
  text-decoration: none;
}

.shop-home .icon-btn:hover,
.shop-home .icon-btn:focus-visible {
  border-color: rgba(246, 212, 71, 0.5);
  background: rgba(246, 212, 71, 0.08);
  color: var(--shop-yellow);
}

.shop-home .icon-btn i {
  font-size: 0.95rem;
}

.shop-home .icon-btn .badge {
  top: -6px;
  right: -6px;
  min-width: 19px;
  height: 19px;
  border: 2px solid var(--shop-bg);
  background: var(--shop-pink);
  color: #fff;
  font-size: 0.62rem;
}

.shop-home .hero-wrap {
  max-width: none;
  padding: 0;
}

.shop-home .hero {
  min-height: 338px;
  border-radius: 0;
  border-bottom: 1px solid rgba(246, 212, 71, 0.2);
  background: #13161a;
}

.shop-home .hero-image img {
  object-position: center 54%;
  filter: saturate(1.04) contrast(1.04);
  transition: transform 0.36s ease, object-position 0.36s ease;
}

.shop-home[data-shop-view="knives"] .hero-image img {
  object-position: 58% 67%;
}

.shop-home[data-shop-view="guns"] .hero-image img {
  object-position: 78% 58%;
}

.shop-home[data-shop-view="sets"] .hero-image img {
  object-position: 50% 48%;
}

.shop-home .hero::after {
  background: linear-gradient(90deg, rgba(7, 8, 10, 0.92) 0%, rgba(7, 8, 10, 0.72) 35%, rgba(7, 8, 10, 0.18) 72%, rgba(7, 8, 10, 0.05) 100%);
}

.shop-home .hero-content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 20px 46px;
}

.shop-home .hero.is-switching .hero-content {
  animation: shopViewChange 0.34s ease both;
}

@keyframes shopViewChange {
  from { opacity: 0.35; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.shop-home .eyebrow,
.shop-home .catalog-kicker {
  margin: 0 0 10px;
  color: var(--shop-yellow);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-home .hero-content h1 {
  max-width: 640px;
  color: #fff;
  font-size: 3.8rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.shop-home .subtitle {
  max-width: 600px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.6;
}

.shop-home .hero-actions {
  gap: 10px;
  margin-top: 24px;
}

.shop-home .primary-btn,
.shop-home .secondary-btn {
  gap: 10px;
  min-width: 0;
  height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
}

.shop-home .primary-btn {
  background: var(--shop-yellow);
  box-shadow: 0 8px 24px rgba(246, 212, 71, 0.16);
}

.shop-home .secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(13, 14, 16, 0.48);
  color: #fff;
}

.shop-home .shop-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid var(--shop-line);
}

.shop-home .shop-benefits > div {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  padding: 0 20px;
  border-right: 1px solid var(--shop-line);
}

.shop-home .shop-benefits > div:last-child {
  border-right: 0;
}

.shop-home .shop-benefits > div > i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(246, 212, 71, 0.09);
  color: var(--shop-yellow);
}

.shop-home .shop-benefits span {
  display: grid;
  gap: 3px;
}

.shop-home .shop-benefits strong {
  color: #f3f4f6;
  font-size: 0.86rem;
}

.shop-home .shop-benefits small {
  color: var(--shop-muted);
  font-size: 0.74rem;
}

.shop-home .products-section {
  padding: 46px 20px 72px;
  background: var(--shop-bg);
  scroll-margin-top: 86px;
}

.shop-home .products-header {
  align-items: flex-end;
  margin-bottom: 24px;
}

.shop-home .products-header h2 {
  color: #f7f8fa;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.shop-home .products-header p {
  margin-top: 8px;
  color: var(--shop-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.shop-home .catalog-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shop-home .product-count {
  color: #8d939d;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.shop-home .sort-control {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 198px;
  height: 42px;
  border: 1px solid var(--shop-line);
  border-radius: 6px;
  background: var(--shop-panel);
}

.shop-home .sort-control > i:first-child {
  position: absolute;
  left: 13px;
  color: #89909a;
  pointer-events: none;
}

.shop-home .sort-control > i:last-child {
  position: absolute;
  right: 12px;
  color: #89909a;
  font-size: 0.7rem;
  pointer-events: none;
}

.shop-home .sort-control select {
  width: 100%;
  height: 100%;
  padding: 0 34px 0 38px;
  border: 0;
  outline: 0;
  appearance: none;
  background: transparent;
  color: #e8e9ec;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.shop-home .sort-control option {
  background: var(--shop-panel-strong);
  color: #fff;
}

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

.shop-home .product-card {
  min-width: 0;
  min-height: 388px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background-color: #181a1e;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.shop-home .product-card::before {
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.08) 0%, rgba(8, 9, 11, 0.16) 48%, rgba(8, 9, 11, 0.9) 74%, rgba(8, 9, 11, 0.98) 100%);
  filter: none;
}

.shop-home .product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(246, 212, 71, 0.48);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
}

.shop-home .badge-save {
  top: 12px;
  left: 12px;
  min-height: 27px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--shop-pink);
  box-shadow: 0 5px 16px rgba(255, 111, 159, 0.24);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.shop-home .card-art {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 100%;
  min-height: 244px;
  margin: 0;
  padding: 30px 18px 12px;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;
}

.shop-home .card-art:focus-visible {
  outline: 2px solid var(--shop-yellow);
  outline-offset: -3px;
}

.shop-home .card-art img {
  width: 100%;
  max-width: 230px;
  height: 205px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.42));
  transition: transform 0.22s ease;
}

.shop-home .product-card:hover .card-art img {
  transform: scale(1.035);
}

.shop-home .product-meta {
  flex: 1;
  gap: 8px;
  justify-content: flex-end;
  min-height: 142px;
  padding: 15px 15px 14px;
  color: #fff;
}

.shop-home .product-meta-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.shop-home .product-category {
  color: #c4c8ce;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-home .product-stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #b6dfc8;
  font-size: 0.66rem;
  font-weight: 700;
  white-space: nowrap;
}

.shop-home .product-stock i {
  color: var(--shop-green);
  font-size: 0.38rem;
}

.shop-home .product-stock.sold-out,
.shop-home .product-stock.sold-out i {
  color: #ee8c91;
}

.shop-home .product-meta h3 {
  display: -webkit-box;
  min-height: 40px;
  margin: 0;
  overflow: hidden;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.shop-home .product-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.shop-home .price-row {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.shop-home .new-price {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--shop-yellow);
  font-size: 1.02rem;
  font-variant-numeric: tabular-nums;
}

.shop-home .old-price {
  color: #858b94;
  font-size: 0.7rem;
}

.shop-home .add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: auto;
  min-width: 82px;
  min-height: 38px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid rgba(246, 212, 71, 0.42);
  border-radius: 6px;
  background: var(--shop-yellow);
  color: #17181b;
  font-size: 0.76rem;
  font-weight: 800;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.shop-home .product-card:hover .add-to-cart,
.shop-home .product-card:focus-within .add-to-cart,
.shop-home .add-to-cart:hover {
  background: #ffe36b;
  transform: none;
}

.shop-home .add-to-cart:disabled {
  border-color: rgba(255, 255, 255, 0.12);
  background: #30333a;
  color: #8b9098;
  cursor: not-allowed;
}

.shop-home .search-empty {
  min-height: 180px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: var(--shop-muted);
}

.shop-home .cart-panel,
.shop-home .search-panel {
  width: min(420px, 100%);
  border-left: 1px solid var(--shop-line);
  background: #111317;
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.34);
}

.shop-home .cart-header {
  min-height: 54px;
  border-bottom: 1px solid var(--shop-line);
}

.shop-home .cart-header h3 {
  color: #fff;
  font-size: 1.1rem;
}

.shop-home .cart-item {
  position: relative;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 8px 12px;
  padding: 10px;
  border-color: var(--shop-line);
  border-radius: 6px;
  background: var(--shop-panel);
}

.shop-home .cart-item img {
  grid-row: 1 / span 2;
  width: 60px;
  height: 60px;
  border-color: var(--shop-line);
  border-radius: 5px;
}

.shop-home .cart-item-info {
  min-width: 0;
  padding-right: 56px;
  color: #f5f6f8;
}

.shop-home .cart-item-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-home .cart-item-qty {
  justify-self: start;
  padding: 2px 5px;
  border-color: var(--shop-line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
}

.shop-home .cart-item-qty button {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: var(--shop-yellow);
}

.shop-home .remove-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  margin: 0;
  padding: 5px 7px;
  border-radius: 4px;
  background: rgba(238, 98, 107, 0.1);
  color: #f3a2a7;
  font-size: 0.68rem;
}

.shop-home .cart-close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--shop-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: #d7dae0;
  font-size: 0.9rem;
}

.shop-home .search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin: 16px 0;
}

.shop-home .search-input-wrap > i {
  position: absolute;
  left: 15px;
  color: #8c929c;
}

.shop-home .search-input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px 0 42px;
  border: 1px solid var(--shop-line);
  border-radius: 6px;
  background: var(--shop-panel);
  color: #fff;
}

.shop-home .search-result {
  border-radius: 6px;
  background: var(--shop-panel);
}

.shop-home .checkout-btn {
  border-radius: 6px;
  background: var(--shop-yellow);
  color: #151619;
}

.shop-home .product-modal {
  width: min(900px, calc(100% - 28px));
  border-color: var(--shop-line);
  border-radius: 8px;
  background: #131519;
}

.shop-home .modal-inner {
  gap: 18px;
  padding: 14px;
}

.shop-home .modal-media {
  min-height: 400px;
  border-radius: 6px;
}

.shop-home .modal-copy h2 {
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.shop-home .modal-close,
.shop-home .modal-secondary,
.shop-home .modal-primary,
.shop-home .modal-meta-grid > div {
  border-radius: 6px;
}

.shop-home .modal-primary {
  background: var(--shop-yellow);
}

.shop-home .faq-section {
  margin-top: 0;
  margin-bottom: 64px;
  padding-top: 56px;
  border-color: var(--shop-line);
}

.shop-home .faq-header h2 {
  color: #fff;
  font-size: 3rem;
}

.shop-home .site-footer {
  margin-top: 0;
  padding-top: 42px;
  border-color: var(--shop-line);
  background: #0a0b0d;
}

.shop-home .footer-grid {
  grid-template-columns: 1.7fr repeat(4, minmax(110px, 1fr));
  gap: 28px;
}

.shop-home .footer-column a:hover,
.shop-home .footer-column a:focus-visible {
  color: var(--shop-yellow);
}

@media (max-width: 1060px) {
  .shop-home .topbar {
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .shop-home .brand,
  .shop-home .actions {
    min-width: 150px;
  }

  .shop-home .nav {
    order: 3;
    width: 100%;
    margin-top: 8px;
    padding-bottom: 1px;
    overflow-x: auto;
    justify-content: center;
  }

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

  .shop-home .footer-grid {
    grid-template-columns: 1.5fr repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .shop-home .topbar {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .shop-home .brand {
    width: auto;
    justify-content: flex-start;
  }

  .shop-home .actions {
    width: auto;
    min-width: 0;
  }

  .shop-home .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .shop-home .nav a {
    flex: 0 0 auto;
  }

  .shop-home .hero {
    min-height: 320px;
  }

  .shop-home .hero-content h1 {
    font-size: 2.8rem;
  }

  .shop-home .shop-benefits {
    overflow-x: auto;
    grid-template-columns: repeat(3, minmax(210px, 1fr));
  }

  .shop-home .products-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-home .catalog-tools {
    width: 100%;
    justify-content: space-between;
  }

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

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

  .shop-home .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .shop-home .announcement-bar {
    min-height: 30px;
    font-size: 0.68rem;
  }

  .shop-home .topbar {
    padding: 8px 12px 9px;
  }

  .shop-home .brand img {
    width: 128px;
    height: 42px;
  }

  .shop-home .actions {
    gap: 5px;
  }

  .shop-home .icon-btn {
    width: 37px;
    height: 37px;
  }

  .shop-home .support-quick {
    display: none;
  }

  .shop-home .nav a {
    min-height: 38px;
    padding: 0 11px;
    font-size: 0.78rem;
  }

  .shop-home .hero {
    min-height: 310px;
  }

  .shop-home .hero-image img {
    object-position: 61% center;
  }

  .shop-home .hero::after {
    background: rgba(7, 8, 10, 0.68);
  }

  .shop-home .hero-content {
    padding: 38px 16px 36px;
  }

  .shop-home .hero-content h1 {
    max-width: 330px;
    font-size: 2.35rem;
  }

  .shop-home .subtitle {
    max-width: 330px;
    font-size: 0.88rem;
  }

  .shop-home .hero-actions {
    align-items: stretch;
    flex-direction: row;
  }

  .shop-home .primary-btn,
  .shop-home .secondary-btn {
    width: auto;
    flex: 1;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .shop-home .products-section {
    padding: 36px 14px 56px;
  }

  .shop-home .products-header h2 {
    font-size: 2rem;
  }

  .shop-home .catalog-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-home .sort-control {
    width: 100%;
  }

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

  .shop-home .product-card {
    min-height: 374px;
  }

  .shop-home .card-art {
    min-height: 230px;
  }

  .shop-home .card-art img {
    height: 198px;
  }

  .shop-home .faq-header h2 {
    font-size: 2.35rem;
  }

  .shop-home .modal-inner {
    grid-template-columns: 1fr;
    max-height: 88vh;
    overflow-y: auto;
  }

  .shop-home .modal-media {
    min-height: 280px;
  }

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

/* Reference-inspired refinements: fixed header, seamless marquee, card sheen, simple FAQ */
.shop-home {
  --announcement-height: 34px;
  --storefront-nav-height: 72px;
}

.shop-home .announcement-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  height: var(--announcement-height);
  min-height: var(--announcement-height);
}

.shop-home .announcement-track {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shop-home .announcement-marquee {
  display: flex;
  width: max-content;
  height: 100%;
  gap: 32px;
  animation: storefront-marquee 22s linear infinite;
  will-change: transform;
}

.shop-home .announcement-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  min-width: 100vw;
  height: 100%;
}

.shop-home .announcement-group span {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  color: #f8e788;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.shop-home .announcement-group span::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--shop-pink);
}

@keyframes storefront-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 16px)); }
}

.shop-home .topbar {
  position: fixed;
  top: var(--announcement-height);
  right: 0;
  left: 0;
  z-index: 55;
  height: var(--storefront-nav-height);
}

.shop-home .hero-wrap {
  padding-top: calc(var(--announcement-height) + var(--storefront-nav-height));
}

.shop-home .brand {
  min-width: 205px;
}

.shop-home .brand img {
  width: 185px;
  height: 60px;
}

.shop-home .product-card::after {
  content: "";
  position: absolute;
  top: -38%;
  left: -65%;
  z-index: 2;
  width: 30%;
  height: 176%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0;
  transform: skewX(-18deg);
  pointer-events: none;
}

.shop-home .product-card:hover::after,
.shop-home .product-card:focus-within::after {
  animation: product-light-sweep 0.72s ease-out;
}

@keyframes product-light-sweep {
  0% { left: -65%; opacity: 0; }
  18% { opacity: 0.72; }
  100% { left: 135%; opacity: 0; }
}

.shop-home .simple-faq {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto 68px;
  padding: 58px 20px 0;
  border-color: var(--shop-line);
}

.shop-home .simple-faq .faq-header {
  display: block;
  margin: 0;
}

.shop-home .simple-faq .faq-header h2 {
  margin: 0;
  color: #fff;
  font-size: 2.3rem;
  line-height: 1.1;
}

.shop-home .simple-faq .faq-header p {
  margin: 10px 0 18px;
  color: var(--shop-muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.shop-home .simple-faq .faq-header > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--shop-yellow);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.shop-home .simple-faq .faq-list {
  border-top: 1px solid var(--shop-line);
}

.shop-home .simple-faq .faq-item {
  border-color: var(--shop-line);
}

.shop-home .simple-faq .faq-question {
  min-height: 62px;
  padding: 17px 0;
  color: #e9eaed;
  font-size: 0.92rem;
  font-weight: 700;
}

.shop-home .simple-faq .faq-question > i {
  color: #858b95;
  font-size: 0.72rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.shop-home .simple-faq .faq-item.open .faq-question > i {
  color: var(--shop-yellow);
  transform: rotate(180deg);
}

.shop-home .simple-faq .faq-answer p {
  max-width: 680px;
  padding: 0 32px 19px 0;
  color: #979da7;
  font-size: 0.84rem;
  line-height: 1.65;
}

@media (prefers-reduced-motion: reduce) {
  .shop-home .announcement-marquee,
  .shop-home .product-card:hover::after,
  .shop-home .product-card:focus-within::after {
    animation: none;
  }
}

@media (max-width: 1060px) {
  .shop-home {
    --storefront-nav-height: 128px;
  }

  .shop-home .topbar {
    height: var(--storefront-nav-height);
    min-height: var(--storefront-nav-height);
  }
}

@media (max-width: 760px) {
  .shop-home .simple-faq {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 54px;
    padding-top: 46px;
  }
}

@media (max-width: 520px) {
  .shop-home {
    --announcement-height: 30px;
    --storefront-nav-height: 112px;
  }

  .shop-home .announcement-bar {
    height: var(--announcement-height);
    min-height: var(--announcement-height);
  }

  .shop-home .brand {
    min-width: 150px;
  }

  .shop-home .brand img {
    width: 150px;
    height: 46px;
  }

  .shop-home .simple-faq .faq-header h2 {
    font-size: 2rem;
  }
}

/* Full-page product route */
.shop-home .product-card-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
}

.shop-home .product-card-link:focus-visible {
  outline: 2px solid var(--shop-yellow);
  outline-offset: -3px;
}

.shop-home .product-card .add-to-cart {
  position: relative;
  z-index: 4;
}

.shop-home .product-card .card-art,
.shop-home .product-card .product-meta {
  pointer-events: none;
}

.shop-home .product-card .add-to-cart {
  pointer-events: auto;
}

.shop-home .product-page[hidden] {
  display: none;
}

.shop-home.product-view-open .hero-wrap,
.shop-home.product-view-open .shop-benefits,
.shop-home.product-view-open .products-section,
.shop-home.product-view-open .faq-section {
  display: none;
}

.shop-home .product-page {
  min-height: calc(100vh - var(--announcement-height));
  padding: calc(var(--announcement-height) + var(--storefront-nav-height) + 28px) 20px 72px;
  background: var(--shop-bg);
}

.shop-home .product-page-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.shop-home .product-page-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  margin-bottom: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #aeb3bc;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.shop-home .product-page-back:hover,
.shop-home .product-page-back:focus-visible {
  color: var(--shop-yellow);
}

.shop-home .product-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.shop-home .product-page-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 570px;
  padding: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-color: #181a1e;
  background-position: center;
  background-size: cover;
}

.shop-home .product-page-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.02), rgba(7, 8, 10, 0.18));
  pointer-events: none;
}

.shop-home .product-page-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.4));
}

.shop-home .product-page-sale {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--shop-pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
}

.shop-home .product-page-info {
  min-width: 0;
}

.shop-home .product-page-category {
  margin-bottom: 12px;
  color: var(--shop-yellow);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-home .product-page-info h1 {
  margin: 0;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 3rem;
  line-height: 1.04;
}

.shop-home .product-page-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 18px;
}

.shop-home .product-page-price strong {
  overflow-wrap: anywhere;
  color: var(--shop-yellow);
  font-size: 1.85rem;
  font-variant-numeric: tabular-nums;
}

.shop-home .product-page-price span {
  color: #777d86;
  font-size: 0.95rem;
  text-decoration: line-through;
}

.shop-home .product-page-description {
  margin: 20px 0 24px;
  color: #a4a9b2;
  font-size: 0.92rem;
  line-height: 1.7;
}

.shop-home .product-page-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid var(--shop-line);
  border-bottom: 1px solid var(--shop-line);
}

.shop-home .product-page-status span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c7e4d4;
  font-size: 0.8rem;
  font-weight: 800;
}

.shop-home .product-page-status span i {
  color: var(--shop-green);
  font-size: 0.42rem;
}

.shop-home .product-page-status small {
  color: #818791;
  font-size: 0.72rem;
}

.shop-home .product-page-status.is-sold-out span,
.shop-home .product-page-status.is-sold-out span i {
  color: #f19ca2;
}

.shop-home .product-page-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.shop-home .product-page-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.shop-home .detail-add {
  border: 1px solid rgba(246, 212, 71, 0.48);
  background: transparent;
  color: var(--shop-yellow);
}

.shop-home .detail-buy {
  border: 1px solid var(--shop-yellow);
  background: var(--shop-yellow);
  color: #17181b;
}

.shop-home .product-page-actions button:disabled {
  border-color: rgba(255, 255, 255, 0.1);
  background: #26292f;
  color: #747a84;
  cursor: not-allowed;
}

.shop-home .product-page-benefits {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.shop-home .product-page-benefits > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.shop-home .product-page-benefits > div > i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(246, 212, 71, 0.08);
  color: var(--shop-yellow);
  font-size: 0.78rem;
}

.shop-home .product-page-benefits span {
  display: grid;
  gap: 2px;
}

.shop-home .product-page-benefits strong {
  color: #e9ebee;
  font-size: 0.78rem;
}

.shop-home .product-page-benefits small {
  color: #7f858f;
  font-size: 0.68rem;
}

@media (max-width: 900px) {
  .shop-home .product-page-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .shop-home .product-page-media {
    min-height: 470px;
  }

  .shop-home .product-page-media img {
    height: 390px;
  }
}

@media (max-width: 520px) {
  .shop-home .product-page {
    padding-right: 14px;
    padding-bottom: 52px;
    padding-left: 14px;
  }

  .shop-home .product-page-grid {
    gap: 28px;
  }

  .shop-home .product-page-media {
    min-height: 340px;
    padding: 28px 18px;
  }

  .shop-home .product-page-media img {
    height: 285px;
  }

  .shop-home .product-page-info h1 {
    font-size: 2.2rem;
  }

  .shop-home .product-page-actions {
    grid-template-columns: 1fr;
  }
}

/* Checkout refinements */
.purchase-page {
  background: #eef0f3;
}

.checkout-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(246, 212, 71, 0.2);
  background: #111317;
}

.checkout-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.checkout-brand img {
  width: 156px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.1));
}

.checkout-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #777e89;
  font-size: 0.72rem;
  font-weight: 700;
}

.checkout-steps > i {
  color: #565c65;
  font-size: 0.56rem;
}

.checkout-steps span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.checkout-steps .complete {
  color: #2e9e68;
}

.checkout-steps .active {
  color: #fff;
}

.checkout-secure {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
  color: #c2c6cd;
  font-size: 0.72rem;
  font-weight: 700;
}

.checkout-secure i {
  color: #2e9e68;
}

.purchase-page .purchase-shell {
  max-width: 1180px;
  padding: 22px 20px 72px;
}

.checkout-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #646a74;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.checkout-back:hover,
.checkout-back:focus-visible {
  color: #17191d;
}

.purchase-page .purchase-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.72fr);
  gap: 24px;
}

.purchase-page .purchase-form-panel,
.purchase-page .purchase-summary-panel {
  border-color: rgba(20, 23, 28, 0.09);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(22, 25, 31, 0.06);
  backdrop-filter: none;
}

.purchase-page .purchase-form-panel {
  padding: 26px 28px 30px;
}

.checkout-panel-heading {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(20, 23, 28, 0.09);
}

.checkout-panel-heading span {
  color: #777d86;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-panel-heading h1 {
  margin: 5px 0 0;
  color: #17191d;
  font-size: 1.8rem;
  line-height: 1.15;
}

.purchase-page .section-block {
  margin-top: 30px;
}

.purchase-page .section-head h2 {
  font-size: 1.08rem;
}

.purchase-page .section-head a,
.purchase-page .payment-head small {
  font-size: 0.74rem;
}

.purchase-page .google-pay-btn,
.purchase-page .payment-method,
.purchase-page .input-group,
.purchase-page .discount-box input,
.purchase-page .discount-box button {
  border-radius: 6px;
}

.purchase-page .google-pay-btn {
  max-width: none;
  min-height: 50px;
}

.purchase-page .input-group input,
.purchase-page .input-group select {
  min-height: 50px;
  padding-top: 0;
  padding-bottom: 0;
}

.purchase-page .purchase-summary-panel {
  position: sticky;
  top: 20px;
  padding: 22px;
}

.purchase-summary-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(20, 23, 28, 0.09);
}

.purchase-summary-heading > div {
  display: grid;
  gap: 3px;
}

.purchase-summary-heading span {
  color: #1a1d22;
  font-size: 0.95rem;
  font-weight: 800;
}

.purchase-summary-heading small {
  color: #8a9099;
  font-size: 0.68rem;
}

.purchase-summary-heading a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #666d77;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
}

.purchase-page .place-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  border-radius: 6px;
  background: #17191d;
}

.purchase-page .place-order-btn:disabled {
  background: #c6c9ce;
  color: #f5f5f6;
  box-shadow: none;
  cursor: not-allowed;
}

.checkout-assurances {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
  color: #7c828b;
  font-size: 0.66rem;
  font-weight: 700;
}

.checkout-assurances span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.checkout-assurances i {
  color: #2e9e68;
}

.paypal-checkout-panel {
  display: grid;
  gap: 18px;
}

.purchase-availability-notice {
  margin: -8px 0 20px;
  padding: 11px 12px;
  border: 1px solid #ead9a1;
  border-radius: 6px;
  background: #fffaf0;
  color: #765e13;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.5;
}

.purchase-availability-notice[hidden] {
  display: none;
}

.paypal-checkout-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.paypal-checkout-heading > div:first-child {
  display: grid;
  gap: 5px;
}

.paypal-checkout-heading > div:first-child > span {
  color: #247850;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.paypal-checkout-heading h2 {
  margin: 0;
  color: #17191d;
  font-size: 1.08rem;
  line-height: 1.25;
}

.paypal-checkout-heading .method-icons {
  display: flex;
  gap: 6px;
}

.paypal-checkout-copy,
.paypal-privacy-copy {
  margin: 0;
  color: #6e747d;
  line-height: 1.6;
}

.paypal-checkout-copy {
  max-width: 580px;
  font-size: 0.82rem;
}

.checkout-legal-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 13px 0;
  border-top: 1px solid rgba(20, 23, 28, 0.09);
  border-bottom: 1px solid rgba(20, 23, 28, 0.09);
  color: #555c66;
  font-size: 0.72rem;
  line-height: 1.55;
  cursor: pointer;
}

.checkout-legal-consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: #247850;
}

.checkout-legal-consent a {
  color: #4e4700;
  font-weight: 800;
}

.checkout-consent-hint {
  margin: -8px 0 0;
  color: #765e13;
  font-size: 0.7rem;
  font-weight: 750;
}

.checkout-consent-hint[hidden] {
  display: none;
}

.paypal-privacy-copy {
  padding-top: 15px;
  border-top: 1px solid rgba(20, 23, 28, 0.09);
  font-size: 0.7rem;
}

.paypal-button-container {
  width: 100%;
  min-height: 48px;
  overflow: hidden;
}

.paypal-button-container iframe {
  max-width: 100%;
}

.free-order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid #17191d;
  border-radius: 6px;
  background: #17191d;
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
}

.free-order-button:hover,
.free-order-button:focus-visible {
  background: #2a2d33;
}

.free-order-button:disabled {
  opacity: 0.58;
  cursor: wait;
}

.free-order-button[hidden] {
  display: none;
}

.paypal-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: #656b75;
  font-size: 0.76rem;
  font-weight: 700;
}

.paypal-loading[hidden] {
  display: none;
}

.paypal-loading > span:first-child {
  width: 18px;
  height: 18px;
  border: 2px solid #d5d8dd;
  border-top-color: #1668a7;
  border-radius: 50%;
  animation: paypal-loading-spin 0.75s linear infinite;
}

@keyframes paypal-loading-spin {
  to { transform: rotate(360deg); }
}

.paypal-checkout-message {
  display: none;
  min-height: 38px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1.45;
}

.paypal-checkout-message:not(:empty) {
  display: block;
}

.paypal-checkout-message.error {
  border-color: #efc8cb;
  background: #fff5f5;
  color: #a82d38;
}

.paypal-checkout-message.warning {
  border-color: #ead9a1;
  background: #fffaf0;
  color: #765e13;
}

.paypal-checkout-message.processing {
  border-color: #b9d5e8;
  background: #f1f8fc;
  color: #17628f;
}

.paypal-checkout-message.success {
  border-color: #b8dfca;
  background: #f0faf5;
  color: #20744d;
}

.paypal-confirm-retry {
  align-items: center;
  background: #151a22;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  font: inherit;
  gap: 7px;
  justify-content: center;
  margin-top: 9px;
  min-height: 36px;
  padding: 8px 12px;
  color: #fff;
  width: 100%;
}

.paypal-confirm-retry:disabled {
  cursor: wait;
  opacity: 0.65;
}

.paypal-confirm-retry.secondary {
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.paypal-summary-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 18px;
  padding: 12px 0 0;
  border-top: 1px solid rgba(20, 23, 28, 0.09);
  color: #626973;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.45;
}

.paypal-summary-note i {
  margin-top: 2px;
  color: #2e9e68;
}

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

  .purchase-page .purchase-summary-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .checkout-topbar {
    grid-template-columns: 1fr auto;
    min-height: 64px;
    padding: 0 14px;
  }

  .checkout-brand img {
    width: 138px;
    height: 46px;
  }

  .checkout-steps {
    display: none;
  }

  .purchase-page .purchase-shell {
    padding: 16px 12px 48px;
  }

  .purchase-page .purchase-form-panel,
  .purchase-page .purchase-summary-panel {
    padding: 20px 16px;
  }

  .checkout-panel-heading h1 {
    font-size: 1.55rem;
  }

  .paypal-checkout-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .purchase-page .payment-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-assurances {
    align-items: center;
    flex-direction: column;
    gap: 7px;
  }
}

/* Storefront home shelves and fixed navigation corrections */
.shop-home .announcement-bar {
  bottom: auto;
  overflow: hidden;
}

.shop-home .announcement-marquee,
.shop-home .announcement-group,
.shop-home .announcement-group span {
  gap: 12px;
}

.shop-home .announcement-marquee {
  gap: 0;
  animation-name: storefront-marquee-tight;
}

.shop-home .announcement-group {
  min-width: 0;
  padding-right: 12px;
  justify-content: flex-start;
}

.shop-home .announcement-group span {
  gap: 8px;
}

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

.shop-home .topbar {
  bottom: auto;
  overflow: hidden;
}

.shop-home .nav {
  gap: 0;
}

.shop-home .nav a {
  min-height: 38px;
  padding-right: 10px;
  padding-left: 10px;
}

.shop-home .cart-backdrop,
.shop-home .search-backdrop {
  z-index: 80;
}

.shop-home .cart-panel,
.shop-home .search-panel {
  top: 0;
  z-index: 90;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
}

.shop-home .cart-items,
.shop-home .search-results {
  flex: 1;
  min-height: 0;
  overscroll-behavior: contain;
}

.shop-home[data-shop-view="all"] .products-section {
  padding-bottom: 42px;
}

.shop-home[data-shop-view="all"] .sort-control {
  display: none;
}

.shop-home .home-shelf,
.shop-home .reviews-section {
  padding: 22px 20px 54px;
  background: var(--shop-bg);
}

.shop-home .home-shelf[hidden],
.shop-home .reviews-section[hidden] {
  display: none;
}

.shop-home .home-shelf-header,
.shop-home .reviews-header,
.shop-home .reviews-grid {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.shop-home .home-shelf-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.shop-home .home-shelf-header > div,
.shop-home .reviews-header {
  display: grid;
  gap: 6px;
}

.shop-home .home-shelf-header span,
.shop-home .reviews-header > span {
  color: var(--shop-yellow);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-home .home-shelf-header h2,
.shop-home .reviews-header h2 {
  margin: 0;
  color: #f7f8fa;
  font-size: 1.75rem;
  line-height: 1.15;
}

.shop-home .home-shelf-header a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  color: #c9cdd3;
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.shop-home .home-shelf-header a:hover,
.shop-home .home-shelf-header a:focus-visible {
  color: var(--shop-yellow);
}

.shop-home .home-shelf > .product-grid {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}

.shop-home .reviews-section {
  margin: 8px 0 30px;
  padding-top: 52px;
  padding-bottom: 56px;
  border-top: 1px solid var(--shop-line);
  border-bottom: 1px solid var(--shop-line);
  background: #111317;
}

.shop-home .reviews-header {
  margin-bottom: 22px;
}

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

.shop-home .reviews-grid article {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--shop-line);
  border-radius: 6px;
  background: #181a1e;
}

.shop-home .review-stars {
  display: flex;
  gap: 4px;
  color: var(--shop-yellow);
  font-size: 0.74rem;
}

.shop-home .reviews-grid p {
  margin: 0;
  color: #d5d8dd;
  font-size: 0.88rem;
  line-height: 1.6;
}

.shop-home .reviews-grid footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  font-size: 0.76rem;
}

.shop-home .reviews-grid footer span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #8bd7ad;
  font-size: 0.68rem;
  white-space: nowrap;
}

.shop-home.product-view-open .home-shelf,
.shop-home.product-view-open .reviews-section {
  display: none;
}

/* Payment marks are rendered locally and do not depend on an image CDN. */
.payment-brand {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 26px;
  overflow: hidden;
  border: 1px solid rgba(20, 23, 28, 0.12);
  border-radius: 4px;
  background: #fff;
  color: #27346a;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.payment-brand.visa {
  color: #15357a;
  font-size: 0.65rem;
  font-style: italic;
}

.payment-brand.mastercard {
  color: transparent;
  font-size: 0;
}

.payment-brand.mastercard::before,
.payment-brand.mastercard::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.payment-brand.mastercard::before {
  left: 8px;
  background: #eb001b;
}

.payment-brand.mastercard::after {
  right: 8px;
  background: rgba(247, 158, 27, 0.92);
}

.payment-brand.amex {
  border-color: #2475b9;
  background: #2475b9;
  color: #fff;
  font-size: 0.54rem;
}

.payment-brand.discover {
  color: #292929;
}

.payment-brand.diners {
  color: #1773b5;
}

.payment-brand.paypal {
  color: #1368b0;
}

.payment-brand.generic {
  background: #f2f3f5;
  color: #747a84;
  font-size: 0.48rem;
}

.purchase-page .method-icons .payment-brand {
  flex: 0 0 42px;
}

.purchase-page .card-brand-tag {
  right: 44px;
  width: 42px;
  height: 26px;
}

.shop-home .footer-accepted .payment-brand {
  border-color: rgba(255, 255, 255, 0.18);
}

.discount-feedback {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 20px;
  margin-top: -10px;
  color: #707680;
  font-size: 0.74rem;
  font-weight: 700;
}

.discount-feedback:empty {
  visibility: hidden;
}

.discount-feedback.success {
  color: #218657;
}

.discount-feedback.error {
  color: #c13f48;
}

@media (min-width: 761px) and (max-width: 1060px) {
  .shop-home {
    --storefront-nav-height: 72px;
  }

  .shop-home .topbar {
    display: flex;
    min-height: var(--storefront-nav-height);
    padding-top: 0;
    padding-bottom: 0;
    flex-wrap: nowrap;
  }

  .shop-home .brand {
    min-width: 178px;
  }

  .shop-home .brand img {
    width: 165px;
  }

  .shop-home .nav {
    order: initial;
    width: auto;
    margin-top: 0;
    overflow: visible;
  }

  .shop-home .actions {
    min-width: 132px;
  }
}

@media (max-width: 760px) {
  .shop-home .reviews-grid {
    grid-template-columns: 1fr;
  }

  .shop-home .home-shelf,
  .shop-home .reviews-section {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 520px) {
  .shop-home .announcement-marquee,
  .shop-home .announcement-group,
  .shop-home .announcement-group span {
    gap: 10px;
  }

  .shop-home .announcement-group span {
    gap: 7px;
  }

  .shop-home .nav a {
    padding-right: 8px;
    padding-left: 8px;
  }

  .shop-home .home-shelf-header h2,
  .shop-home .reviews-header h2 {
    font-size: 1.45rem;
  }

  .shop-home .home-shelf-header {
    align-items: center;
  }

  .shop-home .home-shelf-header a {
    font-size: 0.7rem;
  }
}

/* Checkout completion */
.checkout-feedback {
  min-height: 20px;
  color: #bd3944;
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
}

.checkout-feedback:empty {
  display: none;
}

.purchase-page .place-order-btn.is-processing {
  cursor: wait;
}

.purchase-success-view {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: calc(100vh - 76px);
  max-width: 620px;
  margin: 0 auto;
  padding: 54px 24px 80px;
  text-align: center;
}

.purchase-success-view[hidden] {
  display: none;
}

.purchase-success-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #237b50;
  color: #fff;
  box-shadow: 0 14px 30px rgba(35, 123, 80, 0.18);
  font-size: 1.35rem;
}

.purchase-success-view > span {
  color: #237b50;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.purchase-success-view h1 {
  margin: 9px 0 12px;
  color: #17191d;
  font-size: 2.35rem;
  line-height: 1.1;
}

.purchase-success-view p {
  max-width: 480px;
  margin: 0;
  color: #6e747d;
  font-size: 0.92rem;
  line-height: 1.65;
}

.purchase-success-order {
  margin: 24px 0 16px;
  color: #4c525b;
  font-size: 0.78rem;
  font-weight: 800;
}

.claim-items-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 6px;
  background: #17191d;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

/* Customer claim flow */
.claim-page {
  min-height: 100vh;
  background: #f3f4f6;
  color: #191c20;
  font-family: "Inter", sans-serif;
}

.claim-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 74px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(20, 23, 28, 0.1);
  background: #fff;
}

.claim-brand {
  display: inline-flex;
  justify-self: start;
  align-items: center;
}

.claim-brand img {
  width: 164px;
  height: 52px;
  object-fit: contain;
}

.claim-order-chip {
  padding: 7px 10px;
  border: 1px solid rgba(20, 23, 28, 0.1);
  border-radius: 5px;
  background: #f6f7f8;
  color: #5f6670;
  font-size: 0.68rem;
  font-weight: 800;
}

.claim-support-link {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
  color: #555c66;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.claim-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 46px 20px 72px;
}

.claim-workspace {
  min-width: 0;
}

.claim-heading > span,
.claim-stage > div > span {
  color: #826b00;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.claim-heading h1 {
  margin: 7px 0 8px;
  font-size: 2rem;
  line-height: 1.15;
}

.claim-heading p {
  margin: 0;
  color: #707680;
  font-size: 0.86rem;
}

.claim-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 32px 0 42px;
  padding: 0;
  list-style: none;
}

.claim-steps li {
  display: flex;
  position: relative;
  align-items: center;
  gap: 8px;
  color: #969ba3;
  font-size: 0.72rem;
  font-weight: 800;
}

.claim-steps li::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 12px;
  left: 42px;
  height: 2px;
  background: #d9dce1;
}

.claim-steps li:last-child::after {
  display: none;
}

.claim-steps li span {
  display: grid;
  z-index: 1;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid #d3d6db;
  border-radius: 50%;
  background: #f3f4f6;
  color: #8c929b;
}

.claim-steps li.active,
.claim-steps li.complete {
  color: #20242a;
}

.claim-steps li.active span {
  border-color: #1c2025;
  background: #1c2025;
  color: #fff;
}

.claim-steps li.complete span {
  border-color: #2b8c5d;
  background: #2b8c5d;
  color: #fff;
}

.claim-steps li.complete::after {
  background: #2b8c5d;
}

.claim-stage {
  min-height: 370px;
  padding: 42px;
  border: 1px solid rgba(20, 23, 28, 0.1);
  border-radius: 8px;
  background: #fff;
}

.claim-stage h2 {
  margin: 8px 0 10px;
  color: #191c20;
  font-size: 1.65rem;
  line-height: 1.2;
}

.claim-stage p {
  margin: 0;
  color: #707680;
  font-size: 0.86rem;
  line-height: 1.6;
}

.claim-loading-state,
.claim-ready-state,
.claim-error-state,
.claim-complete-state {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 284px;
  text-align: center;
}

.claim-spinner {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border: 4px solid #e2e4e8;
  border-top-color: #e1b900;
  border-radius: 50%;
  animation: claim-spin 0.8s linear infinite;
}

@keyframes claim-spin {
  to { transform: rotate(360deg); }
}

.claim-loading-bar {
  width: min(420px, 100%);
  height: 7px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 4px;
  background: #e8eaed;
}

.claim-loading-bar span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: #e1b900;
  animation: claim-progress 1.4s ease-in-out infinite;
}

@keyframes claim-progress {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(340%); }
}

.claim-status-icon,
.claim-complete-icon,
.claim-warning-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #f5d84c;
  color: #202226;
  font-size: 1.12rem;
}

.claim-complete-icon {
  background: #2b8c5d;
  color: #fff;
}

.claim-warning-icon {
  background: #fff0c7;
  color: #916a00;
}

.roblox-username-form {
  width: min(500px, 100%);
  margin-top: 28px;
  text-align: left;
}

.roblox-username-form label {
  display: block;
  margin-bottom: 7px;
  color: #444a53;
  font-size: 0.72rem;
  font-weight: 800;
}

.roblox-username-form > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  border: 1px solid #cdd1d7;
  border-radius: 6px;
  background: #fff;
}

.roblox-username-form i {
  padding-left: 14px;
  color: #858b94;
}

.roblox-username-form input {
  min-width: 0;
  height: 50px;
  padding: 0 12px;
  border: 0;
  outline: 0;
  color: #1d2024;
}

.roblox-username-form button,
.claim-primary-btn,
.claim-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 17px;
  border: 0;
  border-radius: 5px;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.roblox-username-form button,
.claim-primary-btn {
  align-self: stretch;
  border-radius: 0;
  background: #1d2025;
  color: #fff;
}

.claim-primary-btn {
  min-height: 46px;
  border-radius: 5px;
}

.claim-secondary-btn {
  border: 1px solid #d0d3d8;
  background: #fff;
  color: #343941;
}

.roblox-username-form button:disabled,
.claim-primary-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.claim-inline-feedback {
  min-height: 20px;
  margin-top: 10px;
  font-size: 0.74rem;
  font-weight: 700;
}

.claim-inline-feedback.error {
  color: #bc3d46;
}

.roblox-confirmation > span,
.claim-delivery-state > span,
.claim-warning-state > span {
  color: #2b7e56;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.roblox-confirmation h2,
.claim-delivery-state h2,
.claim-warning-state h2 {
  margin-top: 7px;
}

.roblox-profile-card {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding: 14px;
  border: 1px solid #dfe1e5;
  border-radius: 6px;
  background: #f7f8f9;
}

.roblox-profile-card img,
.roblox-avatar-fallback {
  width: 76px;
  height: 76px;
  border-radius: 5px;
  background: #e3e5e8;
  object-fit: cover;
}

.roblox-avatar-fallback {
  display: grid;
  place-items: center;
  color: #737982;
}

.roblox-profile-card > div:not(.roblox-avatar-fallback) {
  display: grid;
  gap: 5px;
}

.roblox-profile-card strong {
  font-size: 1rem;
}

.roblox-profile-card span {
  color: #6e747d;
  font-size: 0.78rem;
}

.roblox-profile-card a {
  color: #656b74;
}

.claim-confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.claim-delivery-state p strong {
  color: #25292f;
}

.delivery-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.delivery-choice-grid button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid #d8dbe0;
  border-radius: 6px;
  background: #fff;
  color: #25292f;
  text-align: left;
  cursor: pointer;
}

.delivery-choice-grid button:hover,
.delivery-choice-grid button:focus-visible {
  border-color: #b99b00;
  background: #fffdf3;
}

.delivery-choice-grid button > i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  background: #f4d94d;
}

.delivery-choice-grid button span {
  display: grid;
  gap: 4px;
}

.delivery-choice-grid button small {
  color: #777d86;
  font-size: 0.68rem;
  line-height: 1.35;
}

.claim-warning-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0 20px;
  padding: 14px;
  border-left: 3px solid #d4a900;
  background: #fff9df;
  color: #61531b;
  font-size: 0.76rem;
  line-height: 1.55;
}

body.claim-modal-open {
  overflow: hidden;
}

.claim-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(12, 14, 17, 0.72);
}

.claim-join-modal {
  position: relative;
  width: min(100%, 520px);
  padding: 30px;
  border: 1px solid #d9dce1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  color: #25292f;
}

.claim-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #d9dce1;
  border-radius: 5px;
  background: #fff;
  color: #555c65;
  cursor: pointer;
}

.claim-modal-close:hover,
.claim-modal-close:focus-visible {
  border-color: #9ea4ad;
  color: #202328;
}

.claim-modal-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 6px;
  background: #f4d94d;
  color: #29250d;
  font-size: 1.15rem;
}

.claim-join-modal > span {
  color: #7b6510;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.claim-join-modal h2 {
  margin: 7px 44px 10px 0;
  color: #202328;
  font-size: 1.35rem;
  line-height: 1.25;
}

.claim-join-modal > p {
  margin: 0;
  color: #666d76;
  font-size: 0.79rem;
  line-height: 1.65;
}

.claim-join-instructions {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 18px 0;
  border-top: 1px solid #e1e3e7;
  border-bottom: 1px solid #e1e3e7;
}

.claim-join-instructions p {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #3f454d;
  font-size: 0.76rem;
  line-height: 1.5;
}

.claim-join-instructions i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #f0f1f3;
  color: #5e646d;
}

.claim-join-modal > .claim-modal-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: -6px 0 18px;
  padding: 11px 12px;
  border: 1px solid #e1e3e7;
  border-radius: 5px;
  background: #f7f7f8;
  color: #555c65;
  font-size: 0.72rem;
  line-height: 1.5;
}

.claim-modal-note i {
  margin-top: 2px;
  color: #7b6510;
}

.claim-modal-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.45fr);
  gap: 10px;
}

.claim-modal-actions .claim-primary-btn {
  align-self: auto;
}

.claim-summary {
  align-self: start;
  padding: 22px;
  border: 1px solid rgba(20, 23, 28, 0.1);
  border-radius: 8px;
  background: #fff;
}

.claim-summary-heading,
.claim-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.claim-summary-heading {
  padding-bottom: 16px;
  border-bottom: 1px solid #e7e8eb;
  font-size: 0.76rem;
}

.claim-summary-heading > span {
  color: #747a83;
  font-weight: 800;
}

.claim-summary-heading strong {
  color: #8a7200;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.claim-summary-heading strong[data-status="completed"] {
  color: #278057;
}

.claim-order-items {
  display: grid;
  gap: 12px;
  padding: 16px 0;
}

.claim-order-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.claim-order-item img {
  width: 48px;
  height: 48px;
  border-radius: 5px;
  background: #eff0f2;
  object-fit: contain;
}

.claim-order-item > div {
  display: grid;
  gap: 3px;
}

.claim-order-item strong {
  overflow: hidden;
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.claim-order-item span {
  color: #80868f;
  font-size: 0.68rem;
}

.claim-order-item b {
  font-size: 0.72rem;
}

.claim-summary-total {
  padding: 16px 0;
  border-top: 1px solid #e7e8eb;
  font-size: 0.86rem;
}

.claim-security-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 13px;
  border-radius: 5px;
  background: #f2f7f4;
  color: #47705a;
  font-size: 0.68rem;
  line-height: 1.5;
}

.claim-error-state > i {
  margin-bottom: 16px;
  color: #bb3f48;
  font-size: 2rem;
}

.claim-error-state .claim-primary-btn,
.claim-complete-state .claim-primary-btn {
  margin-top: 22px;
}

@media (prefers-reduced-motion: reduce) {
  .claim-spinner,
  .claim-loading-bar span {
    animation: none;
  }
}

@media (max-width: 860px) {
  .claim-shell {
    grid-template-columns: 1fr;
  }

  .claim-summary {
    grid-row: 1;
  }
}

@media (max-width: 600px) {
  .claim-topbar {
    grid-template-columns: 1fr auto;
    padding: 0 14px;
  }

  .claim-brand img {
    width: 138px;
  }

  .claim-order-chip {
    display: none;
  }

  .claim-shell {
    padding: 28px 12px 52px;
  }

  .claim-steps li {
    gap: 5px;
    font-size: 0.62rem;
  }

  .claim-steps li::after {
    right: 6px;
    left: 34px;
  }

  .claim-steps li span {
    width: 25px;
    height: 25px;
  }

  .claim-stage {
    min-height: 350px;
    padding: 28px 18px;
  }

  .delivery-choice-grid {
    grid-template-columns: 1fr;
  }

  .roblox-username-form > div {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .roblox-username-form button {
    grid-column: 1 / -1;
    min-height: 46px;
    border-radius: 0;
  }

  .roblox-profile-card {
    grid-template-columns: 64px minmax(0, 1fr) auto;
  }

  .roblox-profile-card img,
  .roblox-avatar-fallback {
    width: 64px;
    height: 64px;
  }

  .claim-join-modal {
    padding: 24px 20px;
  }

  .claim-modal-actions {
    grid-template-columns: 1fr;
  }
}

/* Store operations */
.admin-page {
  min-height: 100vh;
  background: #f2f3f5;
  color: #202328;
  font-family: "Inter", sans-serif;
}

.admin-page .admin-shell {
  align-items: flex-start;
}

.admin-page .admin-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex: 0 0 226px;
  flex-direction: column;
  width: 226px;
  height: 100vh;
  padding: 20px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #17191d;
}

.admin-page .admin-brand {
  display: grid;
  gap: 2px;
  justify-items: start;
  margin: 0 4px 26px;
  text-decoration: none;
}

.admin-page .admin-brand img {
  width: 162px;
  height: 48px;
  object-fit: contain;
}

.admin-page .admin-brand span {
  margin-left: 4px;
  color: #8f959e;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-page .admin-sidebar nav {
  gap: 4px;
}

.admin-page .admin-sidebar a:not(.admin-brand) {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 11px;
  border-radius: 5px;
  color: #aeb3bc;
  font-size: 0.76rem;
}

.admin-page .admin-sidebar a:not(.admin-brand):hover,
.admin-page .admin-sidebar a:not(.admin-brand):focus-visible,
.admin-page .admin-sidebar a.active {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.admin-page .admin-sidebar a i {
  color: #7f8690;
  text-align: center;
}

.admin-page .admin-sidebar a.active i {
  color: #efd144;
}

.admin-page .admin-sidebar a b {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 20px;
  border-radius: 10px;
  background: #efd144;
  color: #1b1d21;
  font-size: 0.62rem;
}

.admin-sidebar-status {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding: 10px;
  color: #858c96;
  font-size: 0.65rem;
  font-weight: 700;
}

.admin-sidebar-status i {
  color: #4dcc87;
  font-size: 0.42rem;
}

.admin-sidebar-status.offline i {
  color: #ef6b72;
}

.admin-page .admin-main {
  width: calc(100% - 226px);
  max-width: 1480px;
  padding: 30px 34px 60px;
}

.admin-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.admin-page-header > div:first-child > span,
.admin-section-heading > div > span {
  color: #8a7300;
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-page .admin-page-header h1 {
  margin: 5px 0 4px;
  color: #1d2025;
  font-size: 1.85rem;
  line-height: 1.1;
}

.admin-page-header p,
.admin-section-heading p {
  margin: 0;
  color: #7a8089;
  font-size: 0.76rem;
}

.admin-header-actions {
  display: flex;
  gap: 9px;
}

.admin-outline-btn,
.admin-primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 13px;
  border-radius: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.admin-outline-btn {
  border: 1px solid #ced1d6;
  background: #fff;
  color: #4b515a;
}

.admin-outline-btn.active {
  border-color: #8fc9aa;
  background: #eef8f2;
  color: #276b49;
}

.admin-outline-btn.needs-attention {
  animation: admin-sound-pulse 0.8s ease-in-out 3;
}

@keyframes admin-sound-pulse {
  50% { box-shadow: 0 0 0 4px rgba(225, 185, 0, 0.2); }
}

.admin-primary-link {
  background: #1d2025;
  color: #fff;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.admin-stats > div {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 16px;
  border: 1px solid #dedfe3;
  border-radius: 6px;
  background: #fff;
}

.admin-stats span,
.admin-stats small {
  color: #787e87;
  font-size: 0.66rem;
  font-weight: 700;
}

.admin-stats strong {
  color: #202328;
  font-size: 1.45rem;
}

.admin-orders,
.admin-inventory-editor,
.admin-page .global-style-panel,
.admin-page .discount-panel,
.admin-page .admin-products {
  margin-bottom: 22px;
  padding: 20px;
  border: 1px solid #dedfe3;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  scroll-margin-top: 20px;
}

.admin-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e7e8eb;
}

.admin-section-heading.compact {
  margin-bottom: 14px;
  padding-bottom: 12px;
}

.admin-section-heading h2,
.admin-page .global-style-panel h2,
.admin-page .discount-panel h2,
.admin-page .admin-products h2 {
  margin: 4px 0 0;
  color: #23262b;
  font-size: 1.05rem;
}

.admin-order-list {
  display: grid;
}

.admin-order-row {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) minmax(190px, 1fr) 90px 134px;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 15px 8px;
  border-bottom: 1px solid #e8e9eb;
}

.admin-order-row:last-child {
  border-bottom: 0;
}

.admin-order-row[data-status="new"] {
  box-shadow: inset 3px 0 #e2bb00;
}

.admin-order-main,
.admin-order-customer,
.admin-order-total {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.admin-order-title {
  display: flex;
  align-items: center;
  gap: 9px;
}

.admin-order-title > strong {
  color: #202328;
  font-size: 0.82rem;
}

.admin-order-status {
  padding: 4px 6px;
  border-radius: 4px;
  background: #fff5bf;
  color: #766100;
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-order-row[data-status="completed"] .admin-order-status {
  background: #eaf6ef;
  color: #28734e;
}

.admin-order-date,
.admin-order-main p,
.admin-order-customer span,
.admin-order-customer small,
.admin-order-total span {
  overflow: hidden;
  margin: 0;
  color: #818690;
  font-size: 0.65rem;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-order-main p {
  color: #555b64;
}

.admin-order-customer strong,
.admin-order-total strong {
  overflow: hidden;
  color: #30343a;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-order-total strong {
  overflow-wrap: anywhere;
  text-overflow: clip;
  white-space: normal;
  font-variant-numeric: tabular-nums;
}

.admin-order-claim,
.admin-order-complete,
.admin-order-waiting {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 900;
  cursor: pointer;
}

.admin-order-claim {
  background: #efd144;
  color: #202226;
}

.admin-order-complete {
  background: #286f4d;
  color: #fff;
}

.admin-order-waiting {
  background: #eef0f2;
  color: #858b94;
  cursor: default;
}

.admin-order-done {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2b7b53;
  font-size: 0.68rem;
  font-weight: 800;
}

.admin-empty-state {
  display: grid;
  justify-items: center;
  gap: 6px;
  min-height: 150px;
  place-content: center;
  color: #8a9098;
  text-align: center;
}

.admin-empty-state i {
  margin-bottom: 6px;
  color: #4f9b73;
  font-size: 1.4rem;
}

.admin-empty-state strong {
  color: #454a52;
  font-size: 0.8rem;
}

.admin-empty-state span {
  font-size: 0.68rem;
}

.admin-page .product-form {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.admin-page .product-form label {
  color: #555b64;
  font-size: 0.72rem;
}

.admin-page .product-form input,
.admin-page .product-form select,
.admin-page .global-style-row input,
.admin-page .discount-form input,
.admin-page .discount-form select,
.admin-page .announcement-form textarea {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #d7d9de;
  border-radius: 5px;
  outline: 0;
  background: #fbfbfc;
  color: #292d33;
  font: inherit;
  font-size: 0.74rem;
}

.admin-page .product-form input:focus,
.admin-page .product-form select:focus,
.admin-page .global-style-row input:focus,
.admin-page .discount-form input:focus,
.admin-page .discount-form select:focus,
.admin-page .announcement-form textarea:focus {
  border-color: #a68c10;
  box-shadow: 0 0 0 3px rgba(225, 185, 0, 0.12);
}

.admin-page .upload-dropzone {
  min-height: 90px;
  border-width: 1px;
  border-radius: 6px;
  font-size: 0.7rem;
}

.admin-page .admin-submit,
.admin-page .mini-btn {
  min-height: 40px;
  padding: 0 13px;
  border-radius: 5px;
  font-size: 0.7rem;
}

.admin-page .small-btn {
  min-width: auto;
}

.admin-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  scroll-margin-top: 20px;
}

.admin-settings-grid .admin-discount-panel {
  grid-column: 1 / -1;
}

.admin-page .global-style-row {
  align-items: stretch;
}

.admin-page .announcement-form {
  display: grid;
  gap: 10px;
}

.admin-page .announcement-form textarea {
  min-height: 88px;
  padding-top: 10px;
  resize: vertical;
}

.admin-page .discount-form {
  grid-template-columns: minmax(120px, 1.2fr) minmax(110px, 1fr) minmax(100px, 0.7fr) auto;
}

.admin-page .discount-item {
  border-radius: 5px;
  background: #fafafa;
  font-size: 0.72rem;
}

.admin-page .admin-product-list {
  gap: 0;
}

.admin-page .admin-item {
  gap: 14px;
  padding: 12px 4px;
  border: 0;
  border-bottom: 1px solid #e8e9eb;
  border-radius: 0;
}

.admin-page .admin-item:last-child {
  border-bottom: 0;
}

.admin-page .admin-thumb {
  width: 70px;
  height: 70px;
  border-radius: 5px;
}

.admin-page .admin-info h3 {
  font-size: 0.86rem;
}

.admin-page .admin-info p {
  display: inline;
  margin-right: 12px;
  color: #747a83;
  font-size: 0.66rem;
}

@media (max-width: 1120px) {
  .admin-order-row {
    grid-template-columns: minmax(230px, 1.4fr) minmax(170px, 1fr) 80px;
  }

  .admin-order-actions {
    grid-column: 1 / -1;
  }

  .admin-order-actions > * {
    width: auto;
  }
}

@media (max-width: 900px) {
  .admin-page .admin-shell {
    display: block;
  }

  .admin-page .admin-sidebar {
    position: static;
    width: 100%;
    height: auto;
    padding: 12px 16px;
  }

  .admin-page .admin-brand {
    display: none;
  }

  .admin-page .admin-sidebar nav {
    flex-direction: row;
    overflow-x: auto;
  }

  .admin-page .admin-sidebar a:not(.admin-brand) {
    flex: 0 0 auto;
  }

  .admin-sidebar-status {
    display: none;
  }

  .admin-page .admin-main {
    width: 100%;
    padding: 24px 18px 50px;
  }

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

  .admin-settings-grid {
    grid-template-columns: 1fr;
  }

  .admin-settings-grid .admin-discount-panel {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .admin-page-header,
  .admin-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-header-actions {
    width: 100%;
  }

  .admin-header-actions > * {
    flex: 1;
  }

  .admin-order-row {
    grid-template-columns: 1fr 84px;
    gap: 12px;
  }

  .admin-order-customer {
    grid-column: 1 / -1;
  }

  .admin-order-actions {
    grid-column: 1 / -1;
  }

  .admin-page .grid-2,
  .admin-page .upload-wrap,
  .admin-page .background-upload-area,
  .admin-page .discount-form {
    grid-template-columns: 1fr;
  }

  .admin-page .global-style-row {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-page .admin-item {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .admin-page .admin-actions {
    width: 100%;
  }
}

/* Support center */
.support-page {
  min-height: 100vh;
  background: #f3f4f6;
  color: #1e2126;
  font-family: "Inter", sans-serif;
}

.support-topbar {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 200px;
  align-items: center;
  min-height: 72px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #15171a;
}

.support-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.support-brand img {
  width: 166px;
  height: 52px;
  object-fit: contain;
}

.support-topbar nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.support-topbar nav a {
  min-height: 38px;
  padding: 0 11px;
  border-radius: 5px;
  color: #aeb3bc;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 38px;
  text-decoration: none;
}

.support-topbar nav a:hover,
.support-topbar nav a:focus-visible,
.support-topbar nav a.active {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.support-topbar nav a.active {
  color: #f3d84c;
}

.support-shop-link {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 7px;
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  color: #f4f5f6;
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: none;
}

.support-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 20px 72px;
}

.support-heading {
  margin-bottom: 34px;
}

.support-heading > span,
.support-option-icon + div > span,
.support-section-title > span {
  color: #877000;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.support-heading h1 {
  margin: 8px 0 10px;
  color: #1d2025;
  font-size: 2.55rem;
  line-height: 1.1;
}

.support-heading p {
  margin: 0;
  color: #707680;
  font-size: 0.9rem;
}

.support-priority-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 48px;
}

.support-resume-panel,
.support-contact-panel {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 20px;
  border: 1px solid #dcdee2;
  border-radius: 7px;
  background: #fff;
}

.support-option-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: #f3d94e;
  color: #24262a;
}

.support-resume-panel h2,
.support-contact-panel h2 {
  margin: 4px 0 5px;
  font-size: 0.98rem;
}

.support-resume-panel p,
.support-contact-panel p {
  margin: 0;
  color: #767c85;
  font-size: 0.72rem;
  line-height: 1.5;
}

.support-resume-panel > a,
.support-contact-panel > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 12px;
  border-radius: 5px;
  background: #202328;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.support-resume-panel > a.disabled {
  background: #e3e5e8;
  color: #8a9098;
  cursor: default;
}

.support-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
}

.support-section-title {
  margin-bottom: 18px;
}

.support-section-title h2 {
  margin: 5px 0 0;
  font-size: 1.35rem;
}

.support-accordion {
  border-top: 1px solid #d9dce0;
}

.support-accordion article {
  border-bottom: 1px solid #d9dce0;
}

.support-accordion button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 60px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #25282d;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.support-accordion button i {
  color: #858b94;
  font-size: 0.68rem;
  transition: transform 0.2s ease;
}

.support-accordion article.open button i {
  color: #8d7500;
  transform: rotate(180deg);
}

.support-accordion article > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s ease;
}

.support-accordion article.open > div {
  grid-template-rows: 1fr;
}

.support-accordion article > div > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: #717780;
  font-size: 0.78rem;
  line-height: 1.65;
}

.support-accordion article.open > div > p {
  padding: 0 32px 18px 0;
}

.support-order-checklist {
  align-self: start;
  padding: 22px;
  border: 1px solid #dcdee2;
  border-radius: 7px;
  background: #fff;
}

.support-order-checklist ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-order-checklist li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #545a63;
  font-size: 0.75rem;
  font-weight: 700;
}

.support-order-checklist li i {
  color: #2c875a;
  font-size: 0.68rem;
}

.support-safety-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e2e4e7;
  color: #3a7054;
}

.support-safety-note div {
  display: grid;
  gap: 5px;
}

.support-safety-note strong {
  font-size: 0.74rem;
}

.support-safety-note p {
  margin: 0;
  color: #718178;
  font-size: 0.68rem;
  line-height: 1.5;
}

.support-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid #dedfe3;
  background: #fff;
  color: #7d838c;
  font-size: 0.68rem;
}

.support-footer a {
  color: #454b54;
  font-weight: 800;
  text-decoration: none;
}

/* Legal documents */
.legal-page {
  min-height: 100vh;
  margin: 0;
  background: #f4f5f7;
  color: #24272c;
  font-family: "Inter", sans-serif;
}

.legal-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  align-items: center;
  min-height: 70px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid #292c31;
  background: #111317;
}

.legal-brand {
  display: inline-flex;
  align-items: center;
}

.legal-brand img {
  width: 164px;
  height: 48px;
  object-fit: contain;
}

.legal-topbar nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.legal-topbar nav a,
.legal-shop-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 5px;
  color: #aeb3bc;
  font-size: 0.72rem;
  font-weight: 750;
  text-decoration: none;
}

.legal-topbar nav a:hover,
.legal-topbar nav a:focus-visible,
.legal-topbar nav a.active {
  background: #23262b;
  color: #f4d747;
}

.legal-shop-link {
  justify-self: end;
}

.legal-shop-link:hover,
.legal-shop-link:focus-visible {
  color: #fff;
}

.legal-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 20px 86px;
}

.legal-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.legal-heading > span {
  color: #817000;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-heading h1 {
  margin: 7px 0 12px;
  color: #17191d;
  font-size: 2.45rem;
  line-height: 1.08;
}

.legal-heading p {
  margin: 0 0 12px;
  color: #666c75;
  font-size: 0.92rem;
  line-height: 1.65;
}

.legal-heading small {
  color: #8b9098;
  font-size: 0.68rem;
  font-weight: 700;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: start;
  gap: 54px;
}

.legal-sidebar {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 4px;
  padding-right: 24px;
  border-right: 1px solid #d9dce1;
}

.legal-sidebar > strong {
  margin-bottom: 8px;
  color: #2a2d32;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.legal-sidebar > a {
  padding: 9px 10px;
  border-radius: 5px;
  color: #6c727b;
  font-size: 0.72rem;
  font-weight: 750;
  text-decoration: none;
}

.legal-sidebar > a:hover,
.legal-sidebar > a:focus-visible,
.legal-sidebar > a.active {
  background: #e8eaed;
  color: #191b1f;
}

.legal-sidebar > a.active {
  box-shadow: inset 3px 0 #d2ad00;
}

.legal-sidebar > div {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  padding: 16px 10px 0;
  border-top: 1px solid #d9dce1;
}

.legal-sidebar > div span {
  color: #8a8f97;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-sidebar > div a {
  overflow-wrap: anywhere;
  color: #3b4149;
  font-size: 0.69rem;
  font-weight: 700;
}

.legal-document {
  max-width: 790px;
}

.legal-document section {
  padding: 0 0 30px;
  border-bottom: 1px solid #dfe1e5;
}

.legal-document section + section {
  padding-top: 30px;
}

.legal-document h2 {
  margin: 0 0 12px;
  color: #202328;
  font-size: 1.02rem;
  line-height: 1.35;
}

.legal-document p,
.legal-document li {
  color: #5f6670;
  font-size: 0.78rem;
  line-height: 1.75;
}

.legal-document p {
  margin: 0;
}

.legal-document p + p {
  margin-top: 12px;
}

.legal-document ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.legal-document a {
  color: #645600;
  font-weight: 750;
}

.legal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  min-height: 64px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid #dedfe3;
  background: #fff;
  color: #7c828b;
  font-size: 0.68rem;
}

.legal-footer span {
  margin-right: auto;
}

.legal-footer a {
  color: #454b54;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 780px) {
  .legal-topbar {
    grid-template-columns: 1fr auto;
    padding: 8px 14px;
  }

  .legal-topbar nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .legal-topbar nav a {
    flex: 0 0 auto;
  }

  .legal-shop-link span {
    display: none;
  }

  .legal-main {
    padding: 40px 16px 64px;
  }

  .legal-heading {
    margin-bottom: 32px;
  }

  .legal-heading h1 {
    font-size: 2rem;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legal-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid #d9dce1;
  }

  .legal-sidebar > strong,
  .legal-sidebar > div {
    grid-column: 1 / -1;
  }
}

/* Home header and hero polish */
.shop-home .announcement-bar {
  border-bottom-color: rgba(246, 212, 71, 0.16);
  background: #101114;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.025);
}

.shop-home .announcement-group span {
  color: #ddd6a7;
  font-size: 0.69rem;
  text-transform: uppercase;
}

.shop-home .announcement-group span::after {
  width: 3px;
  height: 3px;
  background: var(--shop-yellow);
  box-shadow: 0 0 8px rgba(246, 212, 71, 0.55);
}

.shop-home .topbar {
  border-bottom-color: rgba(255, 255, 255, 0.085);
  background: rgba(12, 13, 16, 0.97);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
}

.shop-home .brand {
  min-width: 214px;
  overflow: hidden;
}

.shop-home .brand img {
  width: 226px;
  height: 60px;
  object-fit: cover;
  object-position: center;
}

.shop-home .nav a {
  min-height: 72px;
  padding: 0 15px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: #a8adb6;
}

.shop-home .nav a:hover,
.shop-home .nav a:focus-visible {
  border-color: rgba(246, 212, 71, 0.32);
  background: rgba(255, 255, 255, 0.025);
}

.shop-home .nav a.active {
  border-color: var(--shop-yellow);
  background: rgba(246, 212, 71, 0.045);
  color: #fff;
}

.shop-home .actions {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.shop-home .hero {
  min-height: 408px;
  isolation: isolate;
  border-bottom-color: rgba(246, 212, 71, 0.16);
  background: #111318;
}

.shop-home .hero-image img,
.shop-home[data-shop-view="knives"] .hero-image img,
.shop-home[data-shop-view="guns"] .hero-image img,
.shop-home[data-shop-view="sets"] .hero-image img {
  object-position: center 28%;
  transform: scale(1.015);
}

.shop-home[data-shop-view="knives"] .hero-image img {
  object-position: 58% 28%;
}

.shop-home[data-shop-view="guns"] .hero-image img {
  object-position: 72% 28%;
}

.shop-home .hero::after {
  background:
    linear-gradient(90deg, rgba(7, 8, 10, 0.94) 0%, rgba(7, 8, 10, 0.76) 34%, rgba(7, 8, 10, 0.24) 67%, rgba(7, 8, 10, 0.04) 100%),
    linear-gradient(0deg, rgba(7, 8, 10, 0.38) 0%, transparent 44%);
}

.shop-home .hero-content {
  padding-top: 54px;
  padding-bottom: 54px;
}

.shop-home .hero-kicker-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}

.shop-home .hero-kicker-row .eyebrow {
  margin: 0;
}

.shop-home .hero-live-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.69rem;
  font-weight: 750;
}

.shop-home .hero-live-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--shop-green);
  box-shadow: 0 0 0 4px rgba(85, 216, 148, 0.12), 0 0 12px rgba(85, 216, 148, 0.5);
}

.shop-home .hero-content h1 {
  max-width: 680px;
  font-size: 4.15rem;
  line-height: 0.98;
  text-wrap: balance;
}

.shop-home .subtitle {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.8);
}

.shop-home .primary-btn,
.shop-home .secondary-btn {
  min-height: 46px;
  border-radius: 5px;
}

.shop-home .primary-btn {
  box-shadow: 0 10px 28px rgba(246, 212, 71, 0.22);
}

.shop-home .secondary-btn {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(10, 11, 13, 0.6);
  backdrop-filter: blur(8px);
}

.shop-home .shop-benefits > div:nth-child(2) > i {
  background: rgba(85, 216, 148, 0.1);
  color: var(--shop-green);
}

.shop-home .shop-benefits > div:nth-child(3) > i {
  background: rgba(255, 111, 159, 0.1);
  color: var(--shop-pink);
}

@media (max-width: 1060px) {
  .shop-home .nav a {
    min-height: 38px;
  }

  .shop-home .actions {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .shop-home .hero {
    min-height: 370px;
  }

  .shop-home .hero-content h1 {
    font-size: 3.15rem;
  }
}

@media (max-width: 520px) {
  .shop-home .brand {
    min-width: 146px;
  }

  .shop-home .brand img {
    width: 158px;
    height: 46px;
    object-fit: cover;
  }

  .shop-home .hero {
    min-height: 358px;
  }

  .shop-home .hero-image img,
  .shop-home[data-shop-view="knives"] .hero-image img,
  .shop-home[data-shop-view="guns"] .hero-image img,
  .shop-home[data-shop-view="sets"] .hero-image img {
    object-position: 57% center;
  }

  .shop-home .hero::after {
    background: linear-gradient(90deg, rgba(7, 8, 10, 0.85), rgba(7, 8, 10, 0.48));
  }

  .shop-home .hero-content {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .shop-home .hero-kicker-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .shop-home .hero-live-status {
    padding-left: 0;
    border-left: 0;
  }

  .shop-home .hero-content h1 {
    font-size: 2.55rem;
  }
}

/* Shared page and scroll reveal motion */
@keyframes mm2-fade-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mm2-page-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.motion-enabled body {
  animation: mm2-page-in 0.32s ease-out both;
}

.motion-enabled .fade-reveal {
  opacity: 0;
}

.motion-enabled .fade-reveal.fade-in-active {
  animation: mm2-fade-in 0.58s cubic-bezier(0.22, 1, 0.36, 1) var(--fade-delay, 0ms) both;
}

.motion-enabled .announcement-bar.fade-in-active,
.motion-enabled .topbar.fade-in-active,
.motion-enabled .checkout-topbar > .fade-in-active,
.motion-enabled .claim-topbar > .fade-in-active,
.motion-enabled .support-topbar > .fade-in-active,
.motion-enabled .legal-topbar > .fade-in-active {
  animation-duration: 0.42s;
}

@media (prefers-reduced-motion: reduce) {
  .motion-enabled body,
  .motion-enabled .fade-reveal.fade-in-active {
    animation: none;
  }

  .motion-enabled .fade-reveal {
    opacity: 1;
  }
}

/* Admin authentication */
.admin-login-page {
  display: grid;
  grid-template-rows: 70px minmax(0, 1fr) 58px;
  min-height: 100vh;
  margin: 0;
  background: #eef0f3;
  color: #202328;
  font-family: "Inter", sans-serif;
}

.admin-login-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid rgba(246, 212, 71, 0.2);
  background: #111317;
}

.admin-login-topbar > a {
  display: flex;
  align-items: center;
  width: 174px;
  height: 58px;
  overflow: hidden;
}

.admin-login-topbar img {
  width: 188px;
  height: 54px;
  object-fit: cover;
}

.admin-login-topbar > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #bec3cb;
  font-size: 0.72rem;
  font-weight: 750;
}

.admin-login-topbar > span i {
  color: #55d894;
}

.admin-login-main {
  display: grid;
  place-items: center;
  padding: 44px 18px;
}

.admin-login-panel {
  width: min(100%, 470px);
  padding: 34px;
  border: 1px solid #d9dce1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(22, 25, 31, 0.1);
}

.admin-login-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 6px;
  background: #f4d94d;
  color: #24200a;
  font-size: 1.1rem;
}

.admin-login-kicker {
  color: #777d86;
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-login-panel h1 {
  margin: 6px 0 10px;
  color: #17191d;
  font-size: 1.75rem;
  line-height: 1.15;
}

.admin-login-panel > p {
  margin: 0;
  color: #69707a;
  font-size: 0.79rem;
  line-height: 1.65;
}

.admin-auth-loading {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 70px;
  margin-top: 22px;
  border-top: 1px solid #e1e3e7;
  color: #727983;
}

.admin-auth-loading[hidden],
.admin-login-form[hidden],
.admin-confirm-field[hidden],
.admin-password-requirement[hidden] {
  display: none;
}

.admin-auth-loading > span {
  width: 18px;
  height: 18px;
  border: 2px solid #d6d9de;
  border-top-color: #8e7714;
  border-radius: 50%;
  animation: paypal-loading-spin 0.75s linear infinite;
}

.admin-auth-loading p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.admin-login-form {
  display: grid;
  gap: 9px;
  margin-top: 24px;
  padding-top: 23px;
  border-top: 1px solid #e1e3e7;
}

.admin-login-form label {
  color: #3c4148;
  font-size: 0.72rem;
  font-weight: 800;
}

.admin-password-field {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  min-height: 50px;
  overflow: hidden;
  border: 1px solid #ccd0d6;
  border-radius: 6px;
  background: #fff;
}

.admin-password-field:focus-within {
  border-color: #9d8312;
  box-shadow: 0 0 0 3px rgba(246, 212, 71, 0.14);
}

.admin-password-field > i {
  color: #8a9098;
  text-align: center;
}

.admin-password-field input {
  min-width: 0;
  height: 48px;
  padding: 0 6px;
  border: 0;
  outline: 0;
  color: #202328;
}

.admin-password-field button {
  width: 42px;
  height: 48px;
  border: 0;
  background: transparent;
  color: #747b84;
  cursor: pointer;
}

.admin-confirm-field {
  display: grid;
  gap: 9px;
  margin-top: 7px;
}

.admin-password-requirement {
  margin: 3px 0 0;
  color: #7b818a;
  font-size: 0.68rem;
  line-height: 1.5;
}

.admin-login-feedback {
  min-height: 22px;
  color: #b43e48;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.45;
}

.admin-login-feedback.success {
  color: #278058;
}

.admin-login-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  border: 1px solid #e4c431;
  border-radius: 6px;
  background: #f4d94d;
  color: #1b1c1e;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.admin-login-submit:disabled {
  opacity: 0.58;
  cursor: wait;
}

.admin-login-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  border-top: 1px solid #d9dce1;
  color: #858b94;
  font-size: 0.68rem;
}

.admin-login-footer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4e555e;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 520px) {
  .admin-login-page {
    grid-template-rows: 64px minmax(0, 1fr) 54px;
  }

  .admin-login-panel {
    padding: 26px 20px;
  }

  .admin-login-topbar > span,
  .admin-login-footer > span {
    display: none;
  }
}

/* Admin dashboard tools */
.admin-page .admin-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-page .admin-stats strong {
  overflow-wrap: anywhere;
  font-variant-numeric: tabular-nums;
}

.admin-order-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 190px auto auto;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e8e9eb;
}

.admin-order-search,
.admin-order-filter {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  height: 42px;
  border: 1px solid #d1d4d9;
  border-radius: 5px;
  background: #fff;
}

.admin-order-search:focus-within,
.admin-order-filter:focus-within {
  border-color: #a68b13;
  box-shadow: 0 0 0 3px rgba(246, 212, 71, 0.12);
}

.admin-order-search > i,
.admin-order-filter > i:first-child {
  position: absolute;
  left: 12px;
  color: #858b94;
  font-size: 0.72rem;
  pointer-events: none;
}

.admin-order-filter > i:last-child {
  position: absolute;
  right: 12px;
  color: #858b94;
  font-size: 0.62rem;
  pointer-events: none;
}

.admin-order-search input,
.admin-order-filter select {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 12px 0 35px;
  border: 0;
  outline: 0;
  appearance: none;
  background: transparent;
  color: #34383f;
  font: inherit;
  font-size: 0.72rem;
}

.admin-order-filter select {
  padding-right: 32px;
}

.admin-order-result-count {
  color: #777d86;
  font-size: 0.68rem;
  font-weight: 800;
  white-space: nowrap;
}

.admin-export-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid #ced1d6;
  border-radius: 5px;
  background: #f7f8f9;
  color: #444a52;
  font-size: 0.7rem;
  font-weight: 850;
  cursor: pointer;
}

.admin-export-btn:hover,
.admin-export-btn:focus-visible {
  border-color: #a68b13;
  background: #fffbee;
  color: #62510a;
}

@media (max-width: 900px) {
  .admin-page .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-order-toolbar {
    grid-template-columns: minmax(0, 1fr) 180px;
  }

  .admin-order-result-count {
    padding-left: 2px;
  }
}

@media (max-width: 560px) {
  .admin-page .admin-stats,
  .admin-order-toolbar {
    grid-template-columns: 1fr;
  }

  .admin-export-btn {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .support-topbar {
    grid-template-columns: 170px minmax(0, 1fr) auto;
  }

  .support-topbar nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .support-priority-grid,
  .support-content-grid {
    grid-template-columns: 1fr;
  }

  .support-content-grid {
    gap: 34px;
  }
}

@media (max-width: 650px) {
  .support-topbar {
    grid-template-columns: 1fr auto;
    padding: 8px 12px;
  }

  .support-brand img {
    width: 145px;
  }

  .support-topbar nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .support-topbar nav a {
    flex: 0 0 auto;
  }

  .support-shop-link span {
    display: none;
  }

  .support-main {
    padding: 38px 14px 56px;
  }

  .support-heading h1 {
    font-size: 2rem;
  }

  .support-resume-panel,
  .support-contact-panel {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 16px;
  }

  .support-resume-panel > a,
  .support-contact-panel > a {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

/* Store cart redesign */
.shop-home.cart-open {
  overflow: hidden;
}

.shop-home .cart-backdrop {
  background: rgba(4, 5, 7, 0.72);
  backdrop-filter: blur(4px);
}

.shop-home .cart-panel {
  width: min(468px, 100%);
  padding: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: #0f1114;
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.48);
}

.shop-home .cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  margin: 0;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #131519;
}

.shop-home .cart-header > div {
  display: grid;
  gap: 4px;
}

.shop-home .cart-header > div > span {
  color: var(--shop-yellow);
  font-size: 0.62rem;
  font-weight: 850;
  text-transform: uppercase;
}

.shop-home .cart-header h3 {
  margin: 0;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.1;
}

.shop-home .cart-close {
  width: 38px;
  height: 38px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.shop-home .cart-close:hover,
.shop-home .cart-close:focus-visible {
  border-color: rgba(246, 212, 71, 0.5);
  color: var(--shop-yellow);
}

.shop-home .cart-delivery-note {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  margin: 16px 20px 4px;
  padding: 12px 14px;
  border: 1px solid rgba(85, 216, 148, 0.2);
  border-radius: 6px;
  background: rgba(85, 216, 148, 0.07);
}

.shop-home .cart-delivery-note > i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 5px;
  background: rgba(85, 216, 148, 0.12);
  color: var(--shop-green);
}

.shop-home .cart-delivery-note span {
  display: grid;
  gap: 3px;
}

.shop-home .cart-delivery-note strong {
  color: #dff8e9;
  font-size: 0.74rem;
}

.shop-home .cart-delivery-note small {
  color: #8da99a;
  font-size: 0.64rem;
}

.shop-home .cart-items {
  gap: 10px;
  padding: 12px 20px 20px;
}

.shop-home .cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 9px 13px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: #171a1f;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.shop-home .cart-item:hover {
  border-color: rgba(246, 212, 71, 0.26);
  background: #191c21;
}

.shop-home .cart-item img {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: #202329;
  object-fit: contain;
}

.shop-home .cart-item-info {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  min-width: 0;
  padding: 0;
}

.shop-home .cart-item-info strong {
  overflow: hidden;
  color: #f5f6f8;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-home .cart-item-info span {
  color: #8f959e;
  font-size: 0.65rem;
}

.shop-home .cart-item-qty {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: start;
  gap: 3px;
  height: 30px;
  padding: 2px 4px;
  border-color: rgba(255, 255, 255, 0.12);
  background: #101215;
}

.shop-home .cart-item-qty button {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  background: transparent;
  color: #d8dbe0;
}

.shop-home .cart-item-qty button:hover:not(:disabled) {
  background: var(--shop-yellow);
  color: #17181b;
}

.shop-home .cart-item-qty button:disabled {
  color: #555b64;
}

.shop-home .cart-item-qty button i {
  font-size: 0.58rem;
}

.shop-home .cart-item-qty > span {
  min-width: 26px;
  color: #fff;
  font-size: 0.7rem;
}

.shop-home .cart-item-line-total {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
  color: var(--shop-yellow);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.shop-home .remove-btn {
  position: static;
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: #7f858e;
  cursor: pointer;
}

.shop-home .remove-btn:hover,
.shop-home .remove-btn:focus-visible {
  border-color: rgba(238, 98, 107, 0.22);
  background: rgba(238, 98, 107, 0.09);
  color: #ef8c93;
}

.shop-home .empty-cart {
  align-content: center;
  min-height: 340px;
  padding: 34px;
  border: 0;
  background: transparent;
  text-align: center;
}

.shop-home .empty-cart > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  border: 1px solid rgba(246, 212, 71, 0.22);
  border-radius: 7px;
  background: rgba(246, 212, 71, 0.08);
  color: var(--shop-yellow);
  font-size: 1.1rem;
}

.shop-home .empty-cart strong {
  color: #f4f5f7;
  font-size: 0.92rem;
}

.shop-home .empty-cart p {
  max-width: 270px;
  margin: 4px 0 14px;
  color: #858b94;
  font-size: 0.7rem;
  line-height: 1.55;
}

.shop-home .empty-cart button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(246, 212, 71, 0.45);
  border-radius: 5px;
  background: transparent;
  color: var(--shop-yellow);
  font-size: 0.72rem;
  font-weight: 850;
  cursor: pointer;
}

.shop-home .cart-footer {
  margin: 0;
  padding: 18px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #131519;
  box-shadow: 0 -16px 32px rgba(0, 0, 0, 0.16);
}

.shop-home .cart-summary-row,
.shop-home .cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.shop-home .cart-summary-row {
  margin-bottom: 8px;
  color: #8e949d;
  font-size: 0.68rem;
}

.shop-home .cart-total-row {
  margin-bottom: 15px;
  color: #f7f8fa;
  font-size: 0.86rem;
}

.shop-home .cart-total-row strong {
  color: #fff;
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
}

.shop-home .checkout-btn {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(246, 212, 71, 0.14);
}

.shop-home .checkout-btn:disabled {
  background: #292c32;
  color: #747a83;
  box-shadow: none;
  cursor: not-allowed;
}

.shop-home .cart-secure-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 11px 0 0;
  color: #737983;
  font-size: 0.61rem;
}

.shop-home .cart-secure-copy i {
  color: #7ca8dd;
}

/* Operations dashboard redesign */
.admin-page {
  background: #e9ecf1;
}

.admin-page .admin-sidebar {
  flex-basis: 244px;
  width: 244px;
  padding: 18px 16px;
  border-right-color: rgba(255, 255, 255, 0.07);
  background: #111318;
  box-shadow: 12px 0 32px rgba(24, 27, 33, 0.08);
}

.admin-page .admin-brand {
  width: 190px;
  height: 62px;
  margin: 0 2px 22px;
  overflow: hidden;
}

.admin-page .admin-brand img {
  width: 204px;
  height: 58px;
  object-fit: cover;
}

.admin-page .admin-brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.admin-nav-label {
  margin: 0 11px 8px;
  color: #646b75;
  font-size: 0.58rem;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-page .admin-sidebar nav {
  gap: 5px;
}

.admin-page .admin-sidebar a:not(.admin-brand) {
  position: relative;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 6px;
}

.admin-page .admin-sidebar a:not(.admin-brand):hover,
.admin-page .admin-sidebar a:not(.admin-brand):focus-visible {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.admin-page .admin-sidebar a.active {
  border-color: rgba(246, 212, 71, 0.18);
  background: rgba(246, 212, 71, 0.09);
  color: #fff;
}

.admin-page .admin-sidebar a.active::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: -1px;
  width: 2px;
  background: #f1d348;
}

.admin-sidebar-session {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 12px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-session > i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 5px;
  background: rgba(85, 216, 148, 0.1);
  color: #55d894;
  font-size: 0.74rem;
}

.admin-sidebar-session span {
  display: grid;
  gap: 2px;
}

.admin-sidebar-session strong {
  color: #d9dce1;
  font-size: 0.66rem;
}

.admin-sidebar-session small {
  color: #686f79;
  font-size: 0.58rem;
}

.admin-page .admin-main {
  width: calc(100% - 244px);
  max-width: 1600px;
  padding: 34px 38px 72px;
}

.admin-page-header {
  min-height: 72px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d2d6dc;
}

.admin-heading-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-heading-meta > span {
  color: #746200;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-heading-meta > b {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #47715a;
  font-size: 0.61rem;
}

.admin-heading-meta > b i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #45b97a;
  box-shadow: 0 0 0 3px rgba(69, 185, 122, 0.12);
}

.admin-page .admin-page-header h1 {
  margin-top: 7px;
  font-size: 2rem;
}

.admin-page .admin-stats {
  gap: 14px;
  margin-bottom: 24px;
}

.admin-page .admin-stats > .admin-stat-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  min-height: 106px;
  padding: 17px;
  border-color: #d9dde3;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(29, 34, 43, 0.045);
}

.admin-stat-card > i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  font-size: 0.9rem;
}

.admin-stat-card > span {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.admin-page .admin-stat-card small {
  color: #747b85;
  font-size: 0.62rem;
  font-weight: 800;
}

.admin-page .admin-stat-card strong {
  color: #1e2228;
  font-size: 1.42rem;
  line-height: 1.1;
}

.admin-page .admin-stat-card b {
  color: #979ca4;
  font-size: 0.58rem;
  font-weight: 650;
}

.admin-stat-card[data-tone="yellow"] > i { background: #fff7cd; color: #8a7100; }
.admin-stat-card[data-tone="blue"] > i { background: #eaf2ff; color: #4977b8; }
.admin-stat-card[data-tone="green"] > i { background: #e8f7ef; color: #32805a; }
.admin-stat-card[data-tone="pink"] > i { background: #fff0f5; color: #b85a7b; }
.admin-stat-card[data-tone="violet"] > i { background: #f1edff; color: #7160b0; }
.admin-stat-card[data-tone="red"] > i { background: #fff0f0; color: #b8545a; }

.admin-page .admin-orders,
.admin-page .admin-inventory-editor,
.admin-page .global-style-panel,
.admin-page .discount-panel,
.admin-page .admin-products {
  padding: 22px;
  border-color: #d9dde3;
  background: #fff;
  box-shadow: 0 12px 30px rgba(29, 34, 43, 0.04);
}

.admin-page .admin-section-heading {
  margin-bottom: 16px;
}

.admin-page .admin-order-toolbar {
  padding: 4px 0 16px;
}

.admin-page .admin-order-list {
  gap: 8px;
}

.admin-page .admin-order-row {
  padding: 14px 13px;
  border: 1px solid #e0e3e7;
  border-radius: 6px;
  background: #fbfcfd;
}

.admin-page .admin-order-row:last-child {
  border-bottom: 1px solid #e0e3e7;
}

.admin-page .admin-order-row[data-status="new"] {
  border-color: #e4d27d;
  background: #fffdf4;
  box-shadow: inset 3px 0 #d4b21b;
}

.admin-page .admin-order-title > strong {
  font-size: 0.78rem;
}

.admin-page .admin-order-status {
  border: 1px solid rgba(118, 97, 0, 0.12);
}

.admin-page .product-form input,
.admin-page .product-form select,
.admin-page .global-style-row input,
.admin-page .discount-form input,
.admin-page .discount-form select,
.admin-page .announcement-form textarea {
  background: #fff;
}

.admin-page .admin-item {
  margin-bottom: 7px;
  padding: 12px;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  background: #fbfcfd;
}

.admin-page .admin-item:last-child {
  border-bottom: 1px solid #e1e4e8;
}

@media (max-width: 900px) {
  .admin-page .admin-sidebar {
    width: 100%;
  }

  .admin-nav-label,
  .admin-sidebar-session {
    display: none;
  }

  .admin-page .admin-main {
    width: 100%;
    padding: 26px 18px 56px;
  }
}

@media (max-width: 560px) {
  .shop-home .cart-header {
    min-height: 76px;
    padding: 15px 16px;
  }

  .shop-home .cart-delivery-note {
    margin-right: 14px;
    margin-left: 14px;
  }

  .shop-home .cart-items {
    padding-right: 14px;
    padding-left: 14px;
  }

  .shop-home .cart-item {
    grid-template-columns: 62px minmax(0, 1fr) auto;
    padding: 10px;
  }

  .shop-home .cart-item img {
    width: 62px;
    height: 62px;
  }

  .shop-home .cart-footer {
    padding: 16px 14px;
  }

  .admin-page-header {
    gap: 16px;
  }

  .admin-header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-header-actions .admin-primary-link {
    grid-column: 1 / -1;
  }
}

/* Store search and inventory comparison */
.shop-home.search-open {
  overflow: hidden;
}

.shop-home .search-backdrop {
  background: rgba(4, 5, 7, 0.72);
  backdrop-filter: blur(4px);
}

.shop-home .search-panel {
  width: min(500px, 100%);
  padding: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: #0f1114;
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.48);
}

.shop-home .search-header {
  flex: 0 0 auto;
}

.shop-home .search-controls {
  flex: 0 0 auto;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-home .search-input-wrap {
  margin: 0;
}

.shop-home .search-input-wrap > i {
  z-index: 1;
  left: 16px;
  color: #979da6;
  font-size: 0.78rem;
}

.shop-home .search-input {
  min-height: 52px;
  margin: 0;
  padding: 0 14px 0 44px;
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: #181b20;
  font-size: 0.8rem;
  outline: none;
}

.shop-home .search-input:focus {
  border-color: rgba(246, 212, 71, 0.58);
  box-shadow: 0 0 0 3px rgba(246, 212, 71, 0.08);
}

.shop-home .search-result-summary {
  display: grid;
  gap: 3px;
  margin-top: 13px;
}

.shop-home .search-result-summary span {
  color: #d8dbe0;
  font-size: 0.7rem;
  font-weight: 750;
}

.shop-home .search-result-summary small {
  color: #707680;
  font-size: 0.62rem;
}

.shop-home .search-results {
  align-content: start;
  gap: 9px;
  padding: 14px 20px 24px;
  scrollbar-color: #3d424a transparent;
  scrollbar-width: thin;
}

.shop-home .search-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 94px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: #171a1f;
  cursor: default;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.shop-home .search-result:hover,
.shop-home .search-result:focus-within {
  border-color: rgba(246, 212, 71, 0.3);
  background: #1a1d22;
  transform: translateY(-1px);
}

.shop-home .search-result-main {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.shop-home .search-result-main:focus-visible {
  outline: 2px solid var(--shop-yellow);
  outline-offset: 3px;
}

.shop-home .search-result img {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: #22252b;
  object-fit: contain;
}

.shop-home .search-result-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.shop-home .search-result-copy small {
  color: #858b95;
  font-size: 0.57rem;
  font-weight: 850;
  text-transform: uppercase;
}

.shop-home .search-result-copy strong {
  overflow: hidden;
  color: #f4f5f7;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-home .search-result-copy em {
  color: #79c99e;
  font-size: 0.61rem;
  font-style: normal;
  font-weight: 650;
}

.shop-home .search-result-actions {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.shop-home .search-result-actions > strong {
  color: var(--shop-yellow);
  font-size: 0.76rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.shop-home .search-result-actions > button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(246, 212, 71, 0.4);
  border-radius: 5px;
  background: var(--shop-yellow);
  color: #151619;
  cursor: pointer;
}

.shop-home .search-result-actions > button:hover:not(:disabled),
.shop-home .search-result-actions > button:focus-visible:not(:disabled) {
  background: #ffe36b;
  transform: translateY(-1px);
}

.shop-home .search-result-actions > button:disabled {
  border-color: rgba(255, 255, 255, 0.1);
  background: #2b2e34;
  color: #666c75;
  cursor: not-allowed;
}

.shop-home .search-empty-state {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 310px;
  border: 0;
  background: transparent;
  text-align: center;
}

.shop-home .search-empty-state > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border: 1px solid rgba(246, 212, 71, 0.22);
  border-radius: 7px;
  background: rgba(246, 212, 71, 0.07);
  color: var(--shop-yellow);
}

.shop-home .search-empty-state strong {
  color: #f3f4f6;
  font-size: 0.88rem;
}

.shop-home .search-empty-state p {
  max-width: 260px;
  margin: 5px 0 0;
  color: #7f858e;
  font-size: 0.68rem;
  line-height: 1.5;
}

.shop-home .add-to-cart.is-added {
  border-color: rgba(85, 216, 148, 0.62);
  background: #55d894;
  color: #0c2116;
}

.shop-home .inventory-upgrade {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 20px 82px;
}

.shop-home .inventory-upgrade[hidden],
.shop-home.product-view-open .inventory-upgrade {
  display: none;
}

.shop-home .inventory-upgrade-heading {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

.shop-home .inventory-upgrade-heading > span {
  color: var(--shop-yellow);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.shop-home .inventory-upgrade-heading h2 {
  margin: 8px 0 9px;
  color: #f7f8fa;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1.08;
}

.shop-home .inventory-upgrade-heading p {
  margin: 0;
  color: #9298a2;
  font-size: 0.86rem;
  line-height: 1.55;
}

.shop-home .inventory-upgrade-points {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 17px;
  color: #c5c8ce;
  font-size: 0.68rem;
  font-weight: 750;
}

.shop-home .inventory-upgrade-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.shop-home .inventory-upgrade-points i {
  color: var(--shop-yellow);
}

.shop-home .inventory-comparison {
  --comparison-position: 50%;
  position: relative;
  aspect-ratio: 1672 / 941;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #15171b;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.shop-home .comparison-image {
  position: absolute;
  inset: 0;
}

.shop-home .comparison-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.shop-home .comparison-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0);
}

.shop-home .comparison-label {
  position: absolute;
  top: 16px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(13, 15, 19, 0.78);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
  font-size: 0.68rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
}

.shop-home .comparison-label-before {
  left: 16px;
}

.shop-home .comparison-label-after {
  right: 16px;
}

.shop-home .comparison-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  z-index: 4;
  width: 2px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.38);
  transform: translateX(-1px);
  pointer-events: none;
}

.shop-home .comparison-divider > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #15171b;
  color: var(--shop-yellow);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.36);
  transform: translate(-50%, -50%);
}

.shop-home .comparison-divider i {
  font-size: 0.62rem;
}

.shop-home .inventory-comparison > input[type="range"] {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.shop-home .inventory-comparison > input[type="range"]:focus-visible ~ .comparison-cta {
  outline: 2px solid var(--shop-yellow);
  outline-offset: 3px;
}

.shop-home .comparison-cta {
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 54px;
  padding: 8px 9px 8px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(13, 15, 19, 0.84);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
  color: #fff;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.shop-home .comparison-cta > span {
  font-size: 0.72rem;
  font-weight: 750;
  white-space: nowrap;
}

.shop-home .comparison-cta > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 5px;
  background: var(--shop-yellow);
  color: #151619;
  font-size: 0.68rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.shop-home .comparison-cta > a:hover,
.shop-home .comparison-cta > a:focus-visible {
  background: #ffe36b;
}

.shop-home .inventory-upgrade-details {
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.8fr);
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid #292c32;
  border-radius: 8px;
  background: #111318;
}

.shop-home .inventory-upgrade-intro {
  padding: 27px;
  border-right: 1px solid #292c32;
  background: #17191e;
}

.shop-home .inventory-upgrade-intro > span {
  color: var(--shop-yellow);
  font-size: 0.63rem;
  font-weight: 850;
  text-transform: uppercase;
}

.shop-home .inventory-upgrade-intro h3 {
  margin: 8px 0 10px;
  color: #f7f8fa;
  font-size: 1.3rem;
  line-height: 1.18;
}

.shop-home .inventory-upgrade-intro p,
.shop-home .inventory-upgrade-features p {
  margin: 0;
  color: #9298a2;
  font-size: 0.72rem;
  line-height: 1.55;
}

.shop-home .inventory-upgrade-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-home .inventory-upgrade-features > div {
  display: grid;
  align-content: center;
  gap: 8px;
  min-width: 0;
  padding: 25px;
  border-left: 1px solid #292c32;
}

.shop-home .inventory-upgrade-features > div:first-child {
  border-left: 0;
}

.shop-home .inventory-upgrade-features i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #49442a;
  border-radius: 6px;
  background: #242218;
  color: var(--shop-yellow);
  font-size: 0.78rem;
}

.shop-home .inventory-upgrade-features strong {
  color: #f7f8fa;
  font-size: 0.78rem;
}

.shop-home .inventory-category-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  padding: 15px 17px;
  border: 1px solid #292c32;
  border-radius: 7px;
  background: #15171b;
}

.shop-home .inventory-category-rail > strong {
  color: #f7f8fa;
  font-size: 0.73rem;
  white-space: nowrap;
}

.shop-home .inventory-category-rail > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-home .inventory-category-rail a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid #32353c;
  border-radius: 5px;
  background: #1d1f24;
  color: #e7e8eb;
  font-size: 0.65rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.shop-home .inventory-category-rail a:hover,
.shop-home .inventory-category-rail a:focus-visible {
  border-color: #6c6333;
  background: #282619;
  color: var(--shop-yellow);
}

@media (max-width: 700px) {
  .shop-home .search-controls,
  .shop-home .search-results {
    padding-right: 14px;
    padding-left: 14px;
  }

  .shop-home .inventory-upgrade {
    padding: 10px 14px 58px;
  }

  .shop-home .inventory-upgrade-heading {
    margin-bottom: 18px;
    text-align: left;
  }

  .shop-home .inventory-upgrade-points {
    justify-content: flex-start;
  }

  .shop-home .inventory-upgrade-heading h2 {
    font-size: 1.75rem;
  }

  .shop-home .comparison-label {
    top: 10px;
    min-height: 28px;
    font-size: 0.6rem;
  }

  .shop-home .comparison-label-before {
    left: 10px;
  }

  .shop-home .comparison-label-after {
    right: 10px;
  }

  .shop-home .comparison-divider > span {
    width: 40px;
    height: 40px;
  }

  .shop-home .comparison-cta {
    bottom: 10px;
    min-height: 44px;
    padding: 5px;
  }

  .shop-home .comparison-cta > span {
    display: none;
  }

  .shop-home .comparison-cta > a {
    min-height: 34px;
    padding: 0 11px;
    font-size: 0.62rem;
  }

  .shop-home .inventory-upgrade-details {
    grid-template-columns: 1fr;
  }

  .shop-home .inventory-upgrade-intro {
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid #292c32;
  }

  .shop-home .inventory-upgrade-features {
    grid-template-columns: 1fr;
  }

  .shop-home .inventory-upgrade-features > div,
  .shop-home .inventory-upgrade-features > div:first-child {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 4px 12px;
    padding: 17px 19px;
    border-top: 1px solid #292c32;
    border-left: 0;
  }

  .shop-home .inventory-upgrade-features > div:first-child {
    border-top: 0;
  }

  .shop-home .inventory-upgrade-features i {
    grid-row: 1 / span 2;
  }

  .shop-home .inventory-category-rail {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .shop-home .inventory-category-rail > div {
    justify-content: flex-start;
  }
}

@media (max-width: 460px) {
  .shop-home .search-result {
    grid-template-columns: minmax(0, 1fr) 52px;
  }

  .shop-home .search-result-main {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 9px;
  }

  .shop-home .search-result img {
    width: 58px;
    height: 58px;
  }

  .shop-home .search-result-actions > strong {
    font-size: 0.66rem;
  }

  .shop-home .inventory-comparison {
    min-height: 230px;
    aspect-ratio: 16 / 10;
  }
}

/* Company pages */
.company-page {
  min-height: 100vh;
  margin: 0;
  background: #0d0f12;
  color: #e9ebee;
  font-family: Inter, Arial, sans-serif;
}

.company-page *,
.company-page *::before,
.company-page *::after {
  box-sizing: border-box;
  letter-spacing: 0;
}

.company-topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 76px;
  padding: 8px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(13, 15, 18, 0.94);
  backdrop-filter: blur(14px);
}

.company-brand {
  display: flex;
  align-items: center;
  width: 176px;
  height: 56px;
  overflow: hidden;
}

.company-brand img {
  width: 185px;
  height: 54px;
  object-fit: cover;
}

.company-topbar nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.company-topbar nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  border-bottom: 2px solid transparent;
  color: #9da2ab;
  font-size: 0.72rem;
  font-weight: 750;
  text-decoration: none;
}

.company-topbar nav a:hover,
.company-topbar nav a:focus-visible,
.company-topbar nav a.active {
  color: #fff;
}

.company-topbar nav a.active {
  border-bottom-color: #f6d447;
}

.company-shop-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(246, 212, 71, 0.5);
  border-radius: 6px;
  background: #f6d447;
  color: #151619;
  font-size: 0.7rem;
  font-weight: 850;
  text-decoration: none;
}

.company-shop-link:hover,
.company-shop-link:focus-visible {
  background: #ffe36b;
}

.about-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: 510px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #14171b;
}

.about-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.about-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 9, 12, 0.97) 0%, rgba(7, 9, 12, 0.82) 36%, rgba(7, 9, 12, 0.18) 70%), linear-gradient(0deg, rgba(7, 9, 12, 0.84) 0%, transparent 48%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  width: min(660px, calc(100% - 40px));
  margin: 0 0 54px max(24px, calc((100% - 1240px) / 2));
}

.about-hero-content > span,
.company-section-heading > span,
.company-form-heading > span,
.company-form-aside > span,
.company-contact-aside > header span {
  color: #f6d447;
  font-size: 0.67rem;
  font-weight: 850;
  text-transform: uppercase;
}

.about-hero-content h1 {
  max-width: 620px;
  margin: 10px 0 14px;
  color: #fff;
  font-size: 3.35rem;
  line-height: 1.02;
}

.about-hero-content p {
  max-width: 590px;
  margin: 0 0 24px;
  color: #c2c6cc;
  font-size: 0.94rem;
  line-height: 1.65;
}

.about-hero-content > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 6px;
  background: #f6d447;
  color: #151619;
  font-size: 0.74rem;
  font-weight: 850;
  text-decoration: none;
}

.company-values,
.company-safety-band {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 24px;
}

.company-section-heading {
  max-width: 670px;
  margin-bottom: 27px;
}

.company-section-heading h2 {
  margin: 8px 0 9px;
  color: #f6f7f9;
  font-size: 2rem;
  line-height: 1.14;
}

.company-section-heading p {
  margin: 0;
  color: #9298a2;
  font-size: 0.82rem;
  line-height: 1.6;
}

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

.company-value-grid article {
  min-height: 205px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: #15181d;
}

.company-value-grid article > i {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 27px;
  border-radius: 6px;
  background: rgba(246, 212, 71, 0.1);
  color: #f6d447;
  font-size: 0.9rem;
}

.company-value-grid h3,
.company-process h3 {
  margin: 0 0 8px;
  color: #f3f4f6;
  font-size: 0.88rem;
}

.company-value-grid p,
.company-process p {
  margin: 0;
  color: #858c96;
  font-size: 0.72rem;
  line-height: 1.6;
}

.company-process {
  padding: 64px 24px 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: #121419;
}

.company-process > * {
  max-width: 1192px;
  margin-right: auto;
  margin-left: auto;
}

.company-process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.company-process li {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 15px;
  min-height: 135px;
  padding: 12px 26px 12px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.company-process li + li {
  padding-left: 26px;
}

.company-process li:last-child {
  border-right: 0;
}

.company-process li > b {
  color: #f6d447;
  font-size: 0.72rem;
}

.company-safety-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.3fr) auto;
  align-items: center;
  gap: 34px;
}

.company-safety-band > div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.company-safety-band > div > i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 7px;
  background: rgba(85, 216, 148, 0.1);
  color: #55d894;
}

.company-safety-band small {
  color: #55d894;
  font-size: 0.58rem;
  font-weight: 850;
  text-transform: uppercase;
}

.company-safety-band h2 {
  margin: 4px 0 0;
  color: #f2f4f6;
  font-size: 1.1rem;
}

.company-safety-band > p {
  margin: 0;
  color: #9298a1;
  font-size: 0.72rem;
  line-height: 1.65;
}

.company-safety-band > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f6d447;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.company-form-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 24px 80px;
}

.company-form-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.company-form-heading h1 {
  margin: 8px 0 10px;
  color: #f8f9fa;
  font-size: 2.45rem;
  line-height: 1.08;
}

.company-form-heading p {
  max-width: 650px;
  margin: 0;
  color: #9298a2;
  font-size: 0.84rem;
  line-height: 1.65;
}

.company-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
  align-items: start;
  gap: 34px;
}

.company-message-form {
  display: grid;
  gap: 20px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: #15181d;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.22);
}

.company-form-intro {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding-bottom: 19px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.company-form-intro > i,
.company-aside-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: rgba(246, 212, 71, 0.1);
  color: #f6d447;
}

.company-form-intro h2 {
  margin: 0 0 4px;
  color: #f6f7f9;
  font-size: 1rem;
}

.company-form-intro p {
  margin: 0;
  color: #7f858e;
  font-size: 0.65rem;
}

.company-field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.company-message-form label,
.company-rating {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.company-message-form label > span,
.company-rating legend {
  color: #c9cdd3;
  font-size: 0.66rem;
  font-weight: 750;
}

.company-message-form label > span small {
  margin-left: 5px;
  color: #747b85;
  font-size: 0.58rem;
  font-weight: 600;
}

.company-message-form input,
.company-message-form select,
.company-message-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  outline: 0;
  background: #0f1115;
  color: #f2f3f5;
  font: inherit;
  font-size: 0.75rem;
}

.company-message-form input,
.company-message-form select {
  min-height: 46px;
  padding: 0 13px;
}

.company-message-form select {
  color-scheme: dark;
}

.company-message-form textarea {
  min-height: 150px;
  padding: 13px;
  line-height: 1.55;
  resize: vertical;
}

.company-message-form input:focus,
.company-message-form select:focus,
.company-message-form textarea:focus {
  border-color: rgba(246, 212, 71, 0.65);
  box-shadow: 0 0 0 3px rgba(246, 212, 71, 0.08);
}

.company-message-field {
  position: relative;
}

.company-message-field > small {
  position: absolute;
  right: 10px;
  bottom: 9px;
  color: #646b74;
  font-size: 0.56rem;
}

.company-message-field > small b {
  color: #8d939c;
}

.company-rating > div {
  display: grid;
  grid-template-columns: repeat(5, 48px);
  gap: 8px;
  margin-top: 1px;
}

.company-rating input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.company-rating label {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: #0f1115;
  color: #656b74;
  cursor: pointer;
}

.company-rating label i {
  font-size: 0.8rem;
}

.company-rating label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.company-rating label:hover,
.company-rating input:focus-visible + label,
.company-rating input:checked + label {
  border-color: rgba(246, 212, 71, 0.6);
  background: rgba(246, 212, 71, 0.1);
  color: #f6d447;
}

.company-honeypot {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.company-form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: -4px 0 0;
  color: #777e88;
  font-size: 0.61rem;
  line-height: 1.55;
}

.company-form-privacy i {
  margin-top: 2px;
  color: #55d894;
}

.company-form-privacy a {
  color: #bfc3c9;
}

.company-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  min-width: 150px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: #f6d447;
  color: #151619;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  cursor: pointer;
}

.company-submit:hover:not(:disabled),
.company-submit:focus-visible:not(:disabled) {
  background: #ffe36b;
  transform: translateY(-1px);
}

.company-submit:disabled {
  background: #34373d;
  color: #777d85;
  cursor: wait;
}

.company-form-status {
  display: none;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.68rem;
  line-height: 1.45;
}

.company-form-status.success,
.company-form-status.error {
  display: grid;
}

.company-form-status.success {
  border-color: rgba(85, 216, 148, 0.28);
  background: rgba(85, 216, 148, 0.08);
  color: #a5e8c4;
}

.company-form-status.error {
  border-color: rgba(238, 98, 107, 0.3);
  background: rgba(238, 98, 107, 0.08);
  color: #f1a8ad;
}

.company-form-aside,
.company-contact-aside {
  padding: 11px 0 0 5px;
}

.company-aside-icon {
  margin-bottom: 24px;
}

.company-form-aside h2,
.company-contact-aside h2 {
  margin: 8px 0 12px;
  color: #f4f5f7;
  font-size: 1.45rem;
  line-height: 1.18;
}

.company-form-aside ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.company-form-aside li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  color: #a4a9b1;
  font-size: 0.69rem;
}

.company-form-aside li i {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: rgba(85, 216, 148, 0.09);
  color: #55d894;
  font-size: 0.58rem;
}

.company-aside-link {
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-aside-link span {
  display: block;
  margin-bottom: 8px;
  color: #747b85;
  font-size: 0.62rem;
}

.company-aside-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f6d447;
  font-size: 0.71rem;
  font-weight: 800;
  text-decoration: none;
}

.company-contact-aside {
  display: grid;
  gap: 9px;
}

.company-contact-aside > header {
  margin-bottom: 10px;
}

.company-contact-aside > a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  min-height: 70px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: #15181d;
  color: inherit;
  text-decoration: none;
}

.company-contact-aside > a:hover,
.company-contact-aside > a:focus-visible {
  border-color: rgba(246, 212, 71, 0.35);
  background: #191c21;
}

.company-contact-aside > a > i:first-child {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 5px;
  background: rgba(246, 212, 71, 0.09);
  color: #f6d447;
  font-size: 0.72rem;
}

.company-contact-aside > a > i:last-child {
  color: #686f78;
  font-size: 0.63rem;
}

.company-contact-aside > a span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.company-contact-aside > a strong {
  color: #e8eaed;
  font-size: 0.69rem;
}

.company-contact-aside > a small {
  overflow: hidden;
  color: #7f858e;
  font-size: 0.6rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.company-safety-note {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  margin-top: 11px;
  padding: 13px;
  border-left: 2px solid #55d894;
  background: rgba(85, 216, 148, 0.06);
}

.company-safety-note > i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #55d894;
}

.company-safety-note strong {
  color: #cfefde;
  font-size: 0.66rem;
}

.company-safety-note p {
  margin: 4px 0 0;
  color: #799687;
  font-size: 0.59rem;
  line-height: 1.5;
}

.company-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 18px max(24px, calc((100% - 1192px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: #090a0c;
  color: #656b74;
  font-size: 0.64rem;
}

.company-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.company-footer a {
  color: #8e949d;
  text-decoration: none;
}

.company-footer a:hover,
.company-footer a:focus-visible {
  color: #f6d447;
}

@media (max-width: 960px) {
  .company-topbar {
    grid-template-columns: 170px minmax(0, 1fr) auto;
    padding-right: 18px;
    padding-left: 18px;
  }

  .company-topbar nav a {
    padding-right: 8px;
    padding-left: 8px;
  }

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

  .company-form-layout {
    grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
    gap: 24px;
  }

  .company-safety-band {
    grid-template-columns: 1fr 1.2fr;
  }

  .company-safety-band > a {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  .company-topbar {
    grid-template-columns: 1fr auto;
    min-height: 116px;
    padding: 7px 14px 0;
  }

  .company-brand {
    width: 160px;
    height: 48px;
  }

  .company-brand img {
    width: 168px;
    height: 48px;
  }

  .company-topbar nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .company-topbar nav a {
    flex: 0 0 auto;
    min-height: 44px;
  }

  .company-shop-link span {
    display: none;
  }

  .company-shop-link {
    width: 42px;
    padding: 0;
  }

  .about-hero {
    min-height: 480px;
  }

  .about-hero > img {
    object-position: 58% center;
  }

  .about-hero-shade {
    background: linear-gradient(0deg, rgba(7, 9, 12, 0.98) 0%, rgba(7, 9, 12, 0.82) 48%, rgba(7, 9, 12, 0.15) 100%);
  }

  .about-hero-content {
    margin: 0 20px 38px;
  }

  .about-hero-content h1 {
    font-size: 2.4rem;
  }

  .company-values {
    padding: 54px 16px;
  }

  .company-process {
    padding: 52px 16px;
  }

  .company-process ol {
    grid-template-columns: 1fr;
  }

  .company-process li,
  .company-process li + li {
    min-height: 0;
    padding: 19px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .company-process li:last-child {
    border-bottom: 0;
  }

  .company-safety-band {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 48px 16px;
  }

  .company-safety-band > a {
    grid-column: auto;
  }

  .company-form-main {
    padding: 42px 16px 60px;
  }

  .company-form-heading h1 {
    font-size: 2rem;
  }

  .company-form-layout {
    grid-template-columns: 1fr;
  }

  .company-form-aside,
  .company-contact-aside {
    padding: 14px 2px 0;
  }
}

@media (max-width: 520px) {
  .about-hero-content h1 {
    font-size: 2.05rem;
  }

  .company-value-grid,
  .company-field-row {
    grid-template-columns: 1fr;
  }

  .company-value-grid article {
    min-height: 0;
  }

  .company-message-form {
    gap: 18px;
    padding: 18px 14px;
  }

  .company-rating > div {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .company-rating label {
    width: 100%;
  }

  .company-submit {
    width: 100%;
  }

  .company-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 16px;
  }
}

/* Public feedback and admin moderation */
.company-message-form .company-public-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: #111318;
  cursor: pointer;
}

.company-message-form .company-public-consent input {
  width: 17px;
  height: 17px;
  min-height: 0;
  margin: 2px 0 0;
  padding: 0;
  accent-color: #f6d447;
}

.company-message-form .company-public-consent > span {
  display: grid;
  gap: 4px;
}

.company-message-form .company-public-consent strong {
  color: #dfe2e6;
  font-size: 0.68rem;
}

.company-message-form .company-public-consent small {
  color: #747b85;
  font-size: 0.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.public-feedback {
  margin-top: 76px;
  padding-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  scroll-margin-top: 96px;
}

.public-feedback-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 25px;
}

.public-feedback-heading > div:first-child > span {
  color: #f6d447;
  font-size: 0.66rem;
  font-weight: 850;
  text-transform: uppercase;
}

.public-feedback-heading h2 {
  margin: 7px 0 7px;
  color: #f7f8fa;
  font-size: 2rem;
}

.public-feedback-heading p {
  margin: 0;
  color: #868d97;
  font-size: 0.75rem;
}

.public-feedback-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.public-feedback-summary[hidden] {
  display: none;
}

.public-feedback-summary > strong {
  color: #fff;
  font-size: 1.7rem;
}

.public-feedback-summary > span {
  display: block;
  color: #f6d447;
  font-size: 0.65rem;
}

.public-feedback-summary i.muted {
  color: #3f444c;
}

.public-feedback-summary small {
  display: block;
  margin-top: 4px;
  color: #747b85;
  font-size: 0.58rem;
}

.public-feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.public-feedback-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: #15181d;
}

.public-feedback-card-top,
.public-feedback-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.public-feedback-stars {
  color: #f6d447;
  font-size: 0.68rem;
}

.public-feedback-stars .muted {
  color: #3f444c;
}

.public-feedback-card-top > small {
  color: #7e858e;
  font-size: 0.57rem;
  font-weight: 750;
  text-transform: uppercase;
}

.public-feedback-card blockquote {
  flex: 1;
  margin: 20px 0 22px;
  color: #c7cbd1;
  font-size: 0.74rem;
  line-height: 1.65;
  white-space: pre-wrap;
}

.public-feedback-card footer > span {
  display: grid;
  gap: 3px;
}

.public-feedback-card footer strong {
  color: #f0f2f4;
  font-size: 0.68rem;
}

.public-feedback-card footer small {
  color: #6f7680;
  font-size: 0.57rem;
}

.public-feedback-card footer > i {
  color: #55d894;
  font-size: 0.78rem;
}

.public-feedback-reply {
  margin: 16px -5px -5px;
  padding: 13px;
  border-left: 2px solid #f6d447;
  background: rgba(246, 212, 71, 0.055);
}

.public-feedback-reply > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #f6d447;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.public-feedback-reply p {
  margin: 7px 0 0;
  color: #aeb3bb;
  font-size: 0.66rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.public-feedback-loading,
.public-feedback-empty {
  grid-column: 1 / -1;
  display: grid;
  justify-items: center;
  gap: 7px;
  min-height: 190px;
  place-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  color: #777e88;
  text-align: center;
}

.public-feedback-loading i,
.public-feedback-empty > i {
  margin-bottom: 5px;
  color: #f6d447;
  font-size: 1rem;
}

.public-feedback-empty strong {
  color: #d9dce1;
  font-size: 0.78rem;
}

.public-feedback-empty p {
  max-width: 370px;
  margin: 0;
  color: #747b85;
  font-size: 0.65rem;
  line-height: 1.5;
}

.public-feedback-empty.error > i {
  color: #ef7a82;
}

.admin-stat-card[data-tone="teal"] > i { background: #e6f7f6; color: #277a76; }
.admin-stat-card[data-tone="orange"] > i { background: #fff3e7; color: #a86525; }

.admin-page .admin-messages,
.admin-page .customer-settings-panel {
  margin-bottom: 22px;
  padding: 22px;
  border: 1px solid #d9dde3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(29, 34, 43, 0.04);
  scroll-margin-top: 20px;
}

.admin-section-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #746100;
  font-size: 0.66rem;
  font-weight: 800;
  text-decoration: none;
}

.admin-section-link:hover,
.admin-section-link:focus-visible {
  color: #282300;
}

.admin-message-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 150px auto auto;
  align-items: center;
  gap: 9px;
  padding: 4px 0 16px;
}

.admin-message-search,
.admin-message-filter {
  position: relative;
  display: flex;
  align-items: center;
}

.admin-message-search > i {
  position: absolute;
  left: 12px;
  z-index: 1;
  color: #8a9098;
  font-size: 0.68rem;
  pointer-events: none;
}

.admin-message-search input,
.admin-message-filter select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d7dae0;
  border-radius: 5px;
  outline: 0;
  background: #fff;
  color: #33373d;
  font: inherit;
  font-size: 0.68rem;
}

.admin-message-search input {
  padding: 0 12px 0 34px;
}

.admin-message-filter select {
  padding: 0 30px 0 11px;
  appearance: none;
}

.admin-message-filter > i {
  position: absolute;
  right: 11px;
  color: #858b94;
  font-size: 0.58rem;
  pointer-events: none;
}

.admin-message-search input:focus,
.admin-message-filter select:focus {
  border-color: #a68c10;
  box-shadow: 0 0 0 3px rgba(225, 185, 0, 0.1);
}

.admin-message-result-count {
  color: #777d86;
  font-size: 0.64rem;
  white-space: nowrap;
}

.admin-export-btn.loading i {
  animation: admin-refresh-spin 0.8s linear infinite;
}

@keyframes admin-refresh-spin {
  to { transform: rotate(360deg); }
}

.admin-message-list {
  display: grid;
  gap: 10px;
}

.admin-message-card {
  padding: 16px;
  border: 1px solid #dfe2e7;
  border-radius: 7px;
  background: #fbfcfd;
}

.admin-message-card[data-status="new"] {
  border-color: #dfca65;
  background: #fffdf4;
  box-shadow: inset 3px 0 #d4b21b;
}

.admin-message-card[data-status="archived"] {
  background: #f5f6f7;
  opacity: 0.82;
}

.admin-message-card > header,
.admin-message-author,
.admin-message-topic,
.admin-message-card > footer,
.admin-message-card > footer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-message-type {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.admin-message-type > span,
.admin-message-type > b,
.admin-message-visibility {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 25px;
  padding: 0 7px;
  border-radius: 4px;
  font-size: 0.56rem;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-message-type > span {
  background: #f0edff;
  color: #6455a0;
}

.admin-message-card[data-kind="contact"] .admin-message-type > span {
  background: #eaf2ff;
  color: #426fa9;
}

.admin-message-type > b {
  background: #eef0f2;
  color: #6d737c;
}

.admin-message-card[data-status="new"] .admin-message-type > b {
  background: #fff1a7;
  color: #786200;
}

.admin-message-visibility.public {
  background: #e7f7ee;
  color: #2d7652;
}

.admin-message-visibility.private {
  background: #f0f1f3;
  color: #737983;
}

.admin-message-card > header time {
  color: #8a9098;
  font-size: 0.6rem;
  white-space: nowrap;
}

.admin-message-author {
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid #e6e8eb;
}

.admin-message-author > span {
  display: grid;
  gap: 3px;
}

.admin-message-author strong {
  color: #2a2e34;
  font-size: 0.76rem;
}

.admin-message-author small {
  color: #898f97;
  font-size: 0.58rem;
}

.admin-message-author > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.admin-message-author a,
.admin-message-author > div > span {
  color: #666d76;
  font-size: 0.62rem;
}

.admin-message-topic {
  margin-top: 13px;
}

.admin-message-topic > span {
  color: #777e87;
  font-size: 0.61rem;
  font-weight: 750;
}

.admin-message-stars {
  color: #d1aa00;
  font-size: 0.62rem;
}

.admin-message-stars .muted {
  color: #d8dbe0;
}

.admin-message-card blockquote {
  margin: 12px 0 15px;
  padding: 14px;
  border-left: 2px solid #c8ccd2;
  background: #fff;
  color: #4d535b;
  font-size: 0.7rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

.admin-message-reply-editor {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px 9px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid #e0e3e7;
  border-radius: 6px;
  background: #f6f7f8;
}

.admin-message-reply-editor label {
  grid-column: 1 / -1;
  color: #656c75;
  font-size: 0.61rem;
  font-weight: 800;
}

.admin-message-reply-editor textarea {
  min-height: 68px;
  padding: 9px 10px;
  border: 1px solid #d4d7dc;
  border-radius: 5px;
  outline: 0;
  background: #fff;
  color: #33373d;
  font: inherit;
  font-size: 0.68rem;
  line-height: 1.5;
  resize: vertical;
}

.admin-message-reply-editor textarea:focus {
  border-color: #a68c10;
  box-shadow: 0 0 0 3px rgba(225, 185, 0, 0.1);
}

.admin-message-reply-editor button,
.admin-message-card > footer button,
.admin-message-card > footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #d1d4d9;
  border-radius: 5px;
  background: #fff;
  color: #555c65;
  font: inherit;
  font-size: 0.61rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.admin-message-reply-editor button {
  align-self: end;
  border-color: #25292f;
  background: #25292f;
  color: #fff;
}

.admin-message-card > footer {
  padding-top: 12px;
  border-top: 1px solid #e4e6e9;
}

.admin-message-card > footer > div {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.admin-message-card > footer button:hover:not(:disabled),
.admin-message-card > footer a:hover,
.admin-message-card > footer a:focus-visible {
  border-color: #aaaeb5;
  color: #20242a;
}

.admin-message-card > footer button:disabled {
  background: #f1f2f3;
  color: #a2a7ae;
  cursor: not-allowed;
}

.admin-message-card > footer .danger {
  border-color: #efc4c7;
  color: #a94950;
}

.admin-settings-grid .customer-settings-panel {
  grid-column: 1 / -1;
}

.customer-settings-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-setting-toggle,
.admin-setting-field {
  display: grid;
  align-items: center;
  min-height: 68px;
  padding: 11px 13px;
  border: 1px solid #e0e3e7;
  border-radius: 6px;
  background: #fbfcfd;
}

.admin-setting-toggle {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  cursor: pointer;
}

.admin-setting-toggle > span,
.admin-setting-field > span {
  display: grid;
  gap: 3px;
}

.admin-setting-toggle strong,
.admin-setting-field strong {
  color: #373b42;
  font-size: 0.68rem;
}

.admin-setting-toggle small,
.admin-setting-field small {
  color: #858b94;
  font-size: 0.58rem;
  font-weight: 500;
  line-height: 1.4;
}

.admin-setting-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.admin-setting-toggle > i {
  position: relative;
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: #c7cbd1;
  transition: background 0.18s ease;
}

.admin-setting-toggle > i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
  transition: transform 0.18s ease;
}

.admin-setting-toggle input:checked + i {
  background: #3d9469;
}

.admin-setting-toggle input:checked + i::after {
  transform: translateX(18px);
}

.admin-setting-toggle input:focus-visible + i {
  box-shadow: 0 0 0 3px rgba(61, 148, 105, 0.18);
}

.admin-setting-field {
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.8fr);
  gap: 14px;
}

.admin-setting-field select,
.admin-setting-field input {
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid #d4d7dc;
  border-radius: 5px;
  outline: 0;
  background: #fff;
  color: #34383e;
  font: inherit;
  font-size: 0.65rem;
}

.admin-setting-field.wide {
  grid-column: 1 / -1;
}

.customer-settings-form > .admin-submit {
  grid-column: 1 / -1;
  justify-self: start;
}

@media (max-width: 1000px) {
  .public-feedback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-message-toolbar {
    grid-template-columns: minmax(220px, 1fr) repeat(2, 160px);
  }

  .admin-message-result-count,
  .admin-message-toolbar > button {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .public-feedback-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-feedback-summary {
    padding-left: 0;
    border-left: 0;
  }

  .public-feedback-grid {
    grid-template-columns: 1fr;
  }

  .admin-message-toolbar,
  .customer-settings-form {
    grid-template-columns: 1fr;
  }

  .admin-message-result-count,
  .admin-message-toolbar > button,
  .admin-setting-field.wide,
  .customer-settings-form > .admin-submit {
    grid-column: auto;
  }

  .admin-message-card > header,
  .admin-message-author,
  .admin-message-card > footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-message-reply-editor {
    grid-template-columns: 1fr;
  }

  .admin-message-reply-editor button {
    justify-self: start;
  }

  .admin-setting-field {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .public-feedback {
    margin-top: 58px;
    padding-top: 44px;
  }

  .public-feedback-heading h2 {
    font-size: 1.65rem;
  }

  .admin-page .admin-messages,
  .admin-page .customer-settings-panel {
    padding: 15px;
  }
}

/* Homepage public review carousel */
.shop-home .reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.shop-home .reviews-title {
  display: grid;
  gap: 6px;
}

.shop-home .reviews-title > span {
  color: var(--shop-yellow);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-home .reviews-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-home .reviews-actions > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 5px;
  color: #d2d5da;
  font-size: 0.68rem;
  font-weight: 800;
  text-decoration: none;
}

.shop-home .reviews-actions > .reviews-write {
  border-color: rgba(246, 212, 71, 0.5);
  background: var(--shop-yellow);
  color: #151619;
}

.shop-home .reviews-actions > a:hover,
.shop-home .reviews-actions > a:focus-visible {
  border-color: rgba(246, 212, 71, 0.52);
  color: var(--shop-yellow);
}

.shop-home .reviews-actions > .reviews-write:hover,
.shop-home .reviews-actions > .reviews-write:focus-visible {
  background: #ffe36b;
  color: #151619;
}

.shop-home .reviews-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 5px;
}

.shop-home .reviews-nav button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  background: #1a1d22;
  color: #e3e5e8;
  cursor: pointer;
}

.shop-home .reviews-nav button:hover:not(:disabled),
.shop-home .reviews-nav button:focus-visible:not(:disabled) {
  border-color: rgba(246, 212, 71, 0.55);
  color: var(--shop-yellow);
}

.shop-home .reviews-nav button:disabled {
  border-color: rgba(255, 255, 255, 0.07);
  background: #15171b;
  color: #50555d;
  cursor: not-allowed;
}

.shop-home .reviews-carousel {
  max-width: 1280px;
  margin: 0 auto;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.shop-home .reviews-carousel::-webkit-scrollbar {
  display: none;
}

.shop-home .reviews-carousel:focus-visible {
  outline: 2px solid var(--shop-yellow);
  outline-offset: 4px;
}

.shop-home .reviews-grid {
  display: flex;
  grid-template-columns: none;
  gap: 14px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 3px;
}

.shop-home .reviews-grid article {
  display: flex;
  flex: 0 0 calc((100% - 28px) / 3);
  flex-direction: column;
  gap: 0;
  min-width: 0;
  min-height: 258px;
  padding: 20px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.shop-home .reviews-grid article > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.shop-home .reviews-grid article > header > small {
  color: #777e88;
  font-size: 0.56rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-home .review-stars .muted {
  color: #3e434b;
}

.shop-home .reviews-grid article > p {
  display: -webkit-box;
  flex: 1;
  margin: 20px 0;
  overflow: hidden;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.shop-home .home-review-reply {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 7px;
  margin: -5px 0 16px;
  padding: 10px;
  border-left: 2px solid var(--shop-yellow);
  background: rgba(246, 212, 71, 0.055);
  color: #aeb3bb;
  font-size: 0.61rem;
  line-height: 1.45;
}

.shop-home .home-review-reply > i {
  margin-top: 2px;
  color: var(--shop-yellow);
}

.shop-home .home-review-reply > span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.shop-home .reviews-grid article > footer {
  align-items: flex-end;
}

.shop-home .reviews-grid article > footer > span {
  display: grid;
  gap: 3px;
  color: inherit;
  white-space: normal;
}

.shop-home .reviews-grid article > footer strong {
  color: #f2f3f5;
  font-size: 0.7rem;
}

.shop-home .reviews-grid article > footer small {
  color: #747b85;
  font-size: 0.57rem;
}

.shop-home .reviews-grid article > footer b {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #78c89b;
  font-size: 0.61rem;
  font-weight: 750;
  white-space: nowrap;
}

.shop-home .home-reviews-loading,
.shop-home .home-reviews-empty {
  display: grid;
  flex: 0 0 100%;
  justify-items: center;
  gap: 6px;
  min-height: 220px;
  place-content: center;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  color: #777e88;
  text-align: center;
  scroll-snap-align: start;
}

.shop-home .home-reviews-loading i,
.shop-home .home-reviews-empty > i {
  margin-bottom: 5px;
  color: var(--shop-yellow);
  font-size: 1rem;
}

.shop-home .home-reviews-empty strong {
  color: #dadde2;
  font-size: 0.78rem;
}

.shop-home .home-reviews-empty span {
  color: #737a84;
  font-size: 0.64rem;
}

.shop-home .home-reviews-empty.error > i {
  color: #ef7a82;
}

@media (max-width: 900px) {
  .shop-home .reviews-grid article {
    flex-basis: calc((100% - 14px) / 2);
  }
}

@media (max-width: 640px) {
  .shop-home .reviews-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-home .reviews-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .shop-home .reviews-nav {
    margin-left: auto;
  }

  .shop-home .reviews-grid article {
    flex-basis: 86%;
  }
}

@media (max-width: 410px) {
  .shop-home .reviews-actions > a {
    padding-right: 10px;
    padding-left: 10px;
  }

  .shop-home .reviews-nav {
    width: 100%;
    margin: 3px 0 0;
  }

  .shop-home .reviews-nav button {
    width: 42px;
  }

  .shop-home .reviews-grid article {
    flex-basis: 92%;
  }
}

/* Coupon spin configuration and checkout reward */
.discount-spin-builder {
  margin: -4px 0 18px;
  border: 1px solid #dfe1e5;
  border-radius: 6px;
  background: #fafafa;
}

.discount-spin-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 16px;
  cursor: pointer;
}

.discount-spin-toggle > span,
.discount-spin-product > span:not(.discount-spin-product-image) {
  display: grid;
  gap: 3px;
}

.discount-spin-toggle strong {
  color: #25282d;
  font-size: 0.76rem;
}

.discount-spin-toggle small,
.discount-spin-products-heading small,
.discount-spin-product small {
  color: #747a83;
  font-size: 0.66rem;
  line-height: 1.45;
}

.discount-spin-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.discount-spin-toggle > i {
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 24px;
  border: 1px solid #c9cdd3;
  border-radius: 12px;
  background: #e7e9ec;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.discount-spin-toggle > i::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
  content: "";
  transition: transform 0.2s ease;
}

.discount-spin-toggle input:checked + i {
  border-color: #b69b19;
  background: #e1b900;
}

.discount-spin-toggle input:checked + i::after {
  transform: translateX(18px);
}

.discount-spin-fields {
  padding: 0 16px 16px;
  border-top: 1px solid #e3e5e8;
}

.discount-spin-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  color: #34383e;
  font-size: 0.72rem;
  font-weight: 700;
}

.discount-spin-value > span:last-child {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
}

.admin-page .discount-spin-value input {
  width: 76px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid #d3d6db;
  border-radius: 4px;
  background: #fff;
}

.discount-spin-products-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
  color: #34383e;
  font-size: 0.7rem;
  font-weight: 800;
}

.discount-spin-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  max-height: 258px;
  overflow: auto;
}

.discount-spin-product {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 9px;
  min-width: 0;
  padding: 8px;
  border: 1px solid #dfe2e6;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
}

.discount-spin-product:has(input:checked) {
  border-color: #c2a719;
  box-shadow: inset 3px 0 #e1b900;
}

.discount-spin-product.sold-out {
  opacity: 0.52;
  cursor: not-allowed;
}

.discount-spin-product input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.discount-spin-product-image {
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 4px;
  background: #eef0f2;
}

.discount-spin-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.discount-spin-product strong {
  overflow: hidden;
  color: #2d3035;
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.discount-spin-product > i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid #d6d9de;
  border-radius: 50%;
  color: transparent;
  font-size: 0.55rem;
}

.discount-spin-product:has(input:checked) > i {
  border-color: #c2a719;
  background: #f4d94d;
  color: #29250d;
}

.discount-item-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.discount-item-copy > span {
  color: #545a63;
  font-size: 0.7rem;
}

.discount-item-copy small {
  color: #88730f;
  font-size: 0.64rem;
}

.discount-item-actions {
  display: flex;
  gap: 7px;
}

body.coupon-modal-open {
  overflow: hidden;
}

.coupon-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(13, 15, 18, 0.74);
  backdrop-filter: blur(7px);
  animation: couponBackdropIn 0.22s ease both;
}

.coupon-reward-modal {
  position: relative;
  width: min(100%, 490px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 30px;
  border: 1px solid #dedfe2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  color: #22252a;
  text-align: center;
  animation: couponModalIn 0.3s ease both;
}

.coupon-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #d9dce1;
  border-radius: 5px;
  background: #fff;
  color: #555b64;
  cursor: pointer;
}

.coupon-modal-close:disabled {
  opacity: 0.35;
  cursor: wait;
}

.coupon-choice-icon,
.coupon-win-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 6px;
  background: #f4d94d;
  color: #29250d;
}

.coupon-win-icon {
  background: #dff5e9;
  color: #177246;
}

.coupon-modal-kicker {
  color: #89730d;
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.coupon-reward-modal h2 {
  margin: 7px 42px 10px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.coupon-reward-modal > p {
  margin: 0 auto;
  max-width: 390px;
  color: #656b74;
  font-size: 0.78rem;
  line-height: 1.65;
}

.coupon-choice-grid {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.coupon-choice-grid button {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 70px;
  padding: 12px 14px;
  border: 1px solid #dfe1e5;
  border-radius: 6px;
  background: #f8f8f9;
  color: #292c31;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.coupon-choice-grid button:hover {
  border-color: #c4a819;
  background: #fffdf3;
  transform: translateY(-1px);
}

.coupon-choice-grid button > i:first-child {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 5px;
  background: #eceef1;
  color: #565d67;
}

.coupon-choice-grid button:first-child > i:first-child {
  background: #f4d94d;
  color: #29250d;
}

.coupon-choice-grid button span {
  display: grid;
  gap: 4px;
}

.coupon-choice-grid strong {
  font-size: 0.82rem;
}

.coupon-choice-grid small {
  color: #737983;
  font-size: 0.68rem;
}

.coupon-wheel-wrap {
  position: relative;
  width: min(330px, 78vw);
  aspect-ratio: 1;
  margin: 24px auto 18px;
  padding: 10px;
  border: 1px solid #d9dce1;
  border-radius: 50%;
  background: #f1f2f4;
  box-shadow: 0 14px 34px rgba(27, 31, 36, 0.16);
}

.coupon-wheel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  transition-property: transform;
  transition-duration: 4.2s;
  transition-timing-function: cubic-bezier(0.12, 0.72, 0.08, 1);
}

.coupon-wheel-product {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform: rotate(var(--segment-angle));
  pointer-events: none;
}

.coupon-wheel-product > span {
  position: absolute;
  top: 13px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 3px;
  width: 76px;
  transform: translateX(-50%);
}

.coupon-wheel-product img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
}

.coupon-wheel-product small {
  width: 100%;
  overflow: hidden;
  color: #17191d;
  font-size: 0.55rem;
  font-weight: 900;
  text-overflow: ellipsis;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.coupon-wheel-pointer {
  position: absolute;
  top: -12px;
  left: 50%;
  z-index: 4;
  color: #22252a;
  font-size: 2.1rem;
  filter: drop-shadow(0 2px 1px rgba(255,255,255,0.7));
  transform: translateX(-50%);
}

.coupon-wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: #202328;
  color: #f4d94d;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}

.coupon-spin-feedback {
  min-height: 20px;
  color: #6e747d;
  font-size: 0.72rem;
}

.coupon-spin-button,
.coupon-spin-continue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  border: 0;
  border-radius: 5px;
  background: #202328;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.coupon-spin-button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.coupon-win-product {
  display: block;
  width: 150px;
  height: 150px;
  margin: 18px auto;
  object-fit: contain;
  border: 1px solid #e0e2e6;
  border-radius: 8px;
  background: #f5f6f7;
}

.coupon-win-saving {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0 6px;
  padding: 12px 14px;
  border: 1px solid #cce8d9;
  border-radius: 5px;
  background: #eef9f3;
  color: #236845;
  font-size: 0.75rem;
}

.cart-spin-reward,
.purchase-spin-reward {
  display: inline-flex !important;
  align-items: center;
  gap: 5px;
  width: fit-content;
  margin-top: 4px;
  color: #8a7310 !important;
  font-size: 0.62rem !important;
  font-weight: 800;
}

.purchase-item.has-spin-reward {
  border-color: #d8c35a;
  box-shadow: inset 3px 0 #e1b900;
}

@keyframes couponBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes couponModalIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 680px) {
  .discount-spin-products {
    grid-template-columns: 1fr;
  }

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

  .discount-item-actions {
    flex-direction: column;
  }

  .coupon-modal-backdrop {
    align-items: end;
    padding: 10px;
  }

  .coupon-reward-modal {
    max-height: calc(100vh - 20px);
    padding: 26px 18px 20px;
  }

  .coupon-wheel-wrap {
    width: min(285px, 82vw);
  }

  .coupon-wheel-product > span {
    top: 10px;
    width: 62px;
  }

  .coupon-wheel-product img {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coupon-modal-backdrop,
  .coupon-reward-modal {
    animation: none;
  }
}

/* Homepage hero and configurable influencer strip */
.shop-home .hero-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 920px;
  padding-top: 62px;
  padding-bottom: 62px;
  text-align: center;
}

.shop-home .hero-kicker-row {
  justify-content: center;
}

.shop-home .hero-content h1 {
  max-width: 820px;
  font-size: 4.35rem;
}

.shop-home .subtitle {
  max-width: 650px;
}

.shop-home .hero-shop-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 17px;
  color: #f7f8fa;
  font-size: 0.78rem;
  font-weight: 800;
  perspective: 600px;
}

.shop-home .hero-shop-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.shop-home .hero-proof-rotator {
  justify-content: center;
  width: 214px;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid #57502d;
  border-radius: 6px;
  background: #17191e;
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.24);
  transform-origin: center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.shop-home .hero-proof-rotator b {
  font: inherit;
  white-space: nowrap;
}

.shop-home .hero-proof-rotator.is-flipping {
  animation: hero-proof-flip 640ms cubic-bezier(0.22, 0.72, 0.24, 1) both;
}

.shop-home .hero-shop-proof i {
  color: var(--shop-yellow);
}

@keyframes hero-proof-flip {
  0% {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
  44% {
    opacity: 0;
    transform: rotateY(82deg) scale(0.97);
  }
  50% {
    opacity: 0;
    transform: rotateY(90deg) scale(0.96);
  }
  51% {
    opacity: 0;
    transform: rotateY(-90deg) scale(0.96);
  }
  57% {
    opacity: 0;
    transform: rotateY(-82deg) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-home .hero-proof-rotator.is-flipping {
    animation: none;
  }
}

.shop-home .hero-actions {
  justify-content: center;
  margin-top: 20px;
}

.shop-home .hero.has-influencers {
  min-height: 522px;
}

.shop-home .hero.has-influencers .hero-content {
  padding-bottom: 154px;
}

.hero-influencer-strip {
  position: absolute;
  right: 20px;
  bottom: 16px;
  left: 20px;
  z-index: 3;
  display: grid;
  grid-template-columns: 162px minmax(0, 1fr);
  align-items: center;
  max-width: 1240px;
  min-height: 78px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #30333a;
  border-radius: 8px;
  background: #101216;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.hero-influencer-strip[hidden] {
  display: none;
}

.hero-influencer-label {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  align-self: stretch;
  padding: 10px 13px;
  border-right: 1px solid #30333a;
  background: #191b20;
}

.hero-influencer-label > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #514b2b;
  border-radius: 6px;
  background: #272419;
  color: var(--shop-yellow);
  font-size: 0.78rem;
}

.hero-influencer-label > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.hero-influencer-label small {
  color: #9298a2;
  font-size: 0.54rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-influencer-label strong {
  overflow: hidden;
  color: #f7f8fa;
  font-size: 0.69rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-influencer-viewport {
  min-width: 0;
  overflow: hidden;
}

.hero-influencer-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: influencer-marquee var(--influencer-marquee-duration, 28s) linear infinite;
  will-change: transform;
}

.hero-influencer-group {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  padding-right: 8px;
}

.hero-influencer-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  flex: 0 0 190px;
  min-width: 0;
  min-height: 58px;
  padding: 7px 10px;
  border: 1px solid #30333a;
  border-radius: 6px;
  background: #1b1d22;
  color: #fff;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

a.hero-influencer-card:hover,
a.hero-influencer-card:focus-visible {
  border-color: #766c35;
  background: #29271c;
  transform: translateY(-1px);
}

.hero-influencer-avatar {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 2px solid #8b7e3a;
  border-radius: 50%;
  background: #272a31;
  color: var(--shop-yellow);
}

.hero-influencer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-influencer-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.hero-influencer-copy strong {
  overflow: hidden;
  font-size: 0.73rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-influencer-name {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.hero-influencer-name strong {
  min-width: 0;
}

.hero-influencer-name i {
  flex: 0 0 auto;
  color: var(--shop-yellow);
  font-size: 0.62rem;
}

.hero-influencer-copy small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #a7abb4;
  font-size: 0.61rem;
  font-weight: 750;
}

.hero-influencer-copy small i {
  color: var(--shop-yellow);
  font-size: 0.74rem;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-influencer-track {
    animation: none;
  }
}

.admin-settings-grid .influencer-admin-panel {
  grid-column: 1 / -1;
}

.admin-page .influencer-admin-panel {
  padding: 22px;
  border: 1px solid #dfe1e5;
  border-radius: 7px;
  background: #fff;
}

.admin-section-icon-btn {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #d5d8dd;
  border-radius: 5px;
  background: #fff;
  color: #4e545d;
  cursor: pointer;
}

.admin-section-icon-btn:hover,
.admin-section-icon-btn:focus-visible {
  border-color: #b69b19;
  color: #79640d;
}

.influencer-admin-copy {
  margin: -5px 0 16px;
  color: #737982;
  font-size: 0.7rem;
  line-height: 1.55;
}

.admin-influencer-list {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.admin-influencer-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid #e0e2e6;
  border-radius: 6px;
  background: #fafafa;
}

.admin-influencer-identity {
  position: relative;
  width: 52px;
  height: 52px;
}

.admin-influencer-avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  overflow: hidden;
  border: 1px solid #d7dae0;
  border-radius: 50%;
  background: #eef0f2;
  color: #6d747d;
}

.admin-influencer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-influencer-platform-icon {
  position: absolute;
  right: -3px;
  bottom: -2px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #202328;
  color: var(--shop-yellow);
  font-size: 0.62rem;
}

.admin-influencer-fields {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(110px, 0.7fr) minmax(110px, 0.7fr) minmax(170px, 1.25fr) minmax(170px, 1.25fr);
  gap: 8px;
  min-width: 0;
}

.admin-page .admin-influencer-fields input,
.admin-page .admin-influencer-fields select {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid #d7d9de;
  border-radius: 4px;
  background: #fff;
  color: #34383e;
  font-size: 0.68rem;
}

.admin-influencer-remove {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #e3c9cd;
  border-radius: 5px;
  background: #fff;
  color: #a83e4a;
  cursor: pointer;
}

.admin-influencer-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 72px;
  border: 1px dashed #d7dae0;
  border-radius: 6px;
  color: #777d86;
  font-size: 0.72rem;
}

.influencer-admin-panel > .admin-submit {
  margin-left: auto;
}

@media (max-width: 980px) {
  .admin-influencer-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-influencer-fields [data-influencer-image] {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .shop-home .hero-content {
    padding: 48px 18px;
  }

  .shop-home .hero-content h1 {
    max-width: 620px;
    font-size: 3.2rem;
  }

  .shop-home .hero.has-influencers {
    min-height: 530px;
  }

  .shop-home .hero.has-influencers .hero-content {
    padding-bottom: 150px;
  }

  .hero-influencer-strip {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}

@media (max-width: 560px) {
  .shop-home .hero-content {
    padding: 38px 16px;
  }

  .shop-home .hero-kicker-row {
    align-items: center;
  }

  .shop-home .hero-content h1 {
    font-size: 2.55rem;
  }

  .shop-home .hero-shop-proof {
    min-height: 36px;
    font-size: 0.72rem;
  }

  .shop-home .hero-proof-rotator {
    width: 202px;
    min-height: 36px;
    padding: 0 12px;
  }

  .shop-home .hero-actions {
    width: 100%;
  }

  .shop-home .hero.has-influencers {
    min-height: 558px;
  }

  .shop-home .hero.has-influencers .hero-content {
    padding-bottom: 164px;
  }

  .hero-influencer-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-influencer-label {
    display: none;
  }

  .hero-influencer-card {
    flex-basis: 170px;
  }

  .admin-page .influencer-admin-panel {
    padding: 16px;
  }

  .admin-influencer-row {
    grid-template-columns: 48px minmax(0, 1fr) 34px;
    align-items: start;
  }

  .admin-influencer-identity,
  .admin-influencer-avatar {
    width: 44px;
    height: 44px;
  }

  .admin-influencer-fields {
    grid-template-columns: 1fr;
  }

  .admin-influencer-fields [data-influencer-image] {
    grid-column: auto;
  }
}
.admin-auth-pending .admin-shell,
.admin-auth-pending .admin-toast-container {
  visibility: hidden;
}
.admin-order-inventory-warning {
  align-items: center;
  color: #b42318 !important;
  display: inline-flex;
  font-size: 0.78rem !important;
  font-weight: 800;
  gap: 0.4rem;
  margin-top: 0.35rem !important;
}
