:root {
  --orange: #f58220;
  --orange-dark: #d96a0b;
  --ink: #24212b;
  --muted: #706b7c;
  --line: #e7e1d8;
  --paper: #fffaf2;
  --white: #ffffff;
  --green: #2f9e62;
  --blue: #2f7dd3;
  --red: #d94d42;
  --shadow: 0 18px 50px rgba(33, 25, 15, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffdf9;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(255, 253, 249, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand picture,
.brand img {
  display: block;
}

.brand img {
  width: 174px;
  max-width: 42vw;
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.nav a,
.back-link,
.account-tabs button,
.cart-button,
.wishlist-button,
.close-cart {
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
}

.nav a {
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.nav a.active,
.nav a:hover {
  color: #783300;
  background: #fff1e2;
}

.is-hidden {
  display: none !important;
}

.cart-button,
.wishlist-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-color: var(--orange);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.wishlist-button {
  border-color: var(--line);
}

.cart-button strong,
.wishlist-button strong {
  display: grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
}

.wishlist-button strong {
  background: var(--ink);
}

.screen {
  display: none;
  min-height: calc(100vh - 76px);
  padding: clamp(24px, 5vw, 58px) clamp(16px, 5vw, 72px);
}

.screen.active {
  display: block;
}

.notfound-panel {
  min-height: min(68vh, 680px);
  display: grid;
  grid-template-columns: minmax(180px, 280px) minmax(0, 560px);
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(36px, 7vw, 90px);
  border: 1px solid rgba(226, 127, 34, .18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(226, 127, 34, .16), transparent 30%),
    linear-gradient(135deg, #fffaf4, #ffffff 58%, #fff2e2);
  box-shadow: 0 26px 70px rgba(32, 31, 42, .08);
}

.notfound-panel img {
  width: min(100%, 260px);
  height: auto;
  filter: drop-shadow(0 24px 38px rgba(226, 127, 34, .22));
}

.notfound-panel h1 {
  margin: 8px 0 12px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .95;
}

.notfound-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 52ch;
}

.notfound-panel strong {
  color: var(--orange-dark);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 28px;
  background:
    radial-gradient(circle at 80% 20%, rgba(232, 138, 52, .18), transparent 34%),
    linear-gradient(180deg, #fffaf4 0%, #fffdf9 42%, var(--cream) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -12vw;
  top: 80px;
  width: min(72vw, 920px);
  height: min(72vw, 920px);
  border-radius: 42% 58% 48% 52%;
  background:
    radial-gradient(circle at 45% 42%, rgba(255, 255, 255, .88), transparent 19%),
    radial-gradient(circle, rgba(232, 138, 52, .25), rgba(245, 200, 111, .12) 48%, transparent 70%);
  pointer-events: none;
  animation: heroAura 7s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  left: 5vw;
  top: 144px;
  width: min(42vw, 640px);
  height: min(28vw, 420px);
  border: 1px solid rgba(232, 138, 52, .22);
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .44), rgba(255, 241, 226, .52)),
    repeating-linear-gradient(135deg, rgba(232, 138, 52, .08) 0 1px, transparent 1px 18px);
  transform: rotate(-3deg);
  pointer-events: none;
  box-shadow: 0 28px 90px rgba(232, 138, 52, .08);
  animation: heroOutlineDrift 8s ease-in-out infinite;
}

.hero-media {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 620px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  min-height: 640px;
}

.hero-copy {
  position: relative;
  max-width: 720px;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 28px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 10% 18%, rgba(232, 138, 52, .12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(255, 250, 244, .38));
  box-shadow: inset 0 0 0 1px rgba(232, 138, 52, .08);
  backdrop-filter: blur(2px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero h1,
.page-heading h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 88px);
  line-height: .96;
}

.hero h1 {
  white-space: nowrap;
  overflow-wrap: normal;
  font-size: clamp(42px, 7vw, 82px);
}

.hero p:not(.eyebrow),
.page-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-local-line {
  margin-top: 12px;
  color: #4f4960 !important;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.primary-action {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--white);
}

.primary-action.small-action,
.secondary-action.small-action {
  min-height: 38px;
  padding: 8px 12px;
  font-size: 14px;
}

.secondary-action {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.full {
  width: 100%;
}

.hero-board {
  position: relative;
  min-height: 580px;
}

.hero-board picture {
  display: block;
}

.mascot-hero {
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: visible;
}

.hero-mascot {
  position: relative;
  z-index: 2;
  width: min(96%, 610px);
  max-height: 610px;
  object-fit: contain;
  filter: drop-shadow(0 36px 46px rgba(82, 44, 12, .26));
  animation: mascotFloat 5.2s ease-in-out infinite;
}

@keyframes mascotFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-16px) scale(1.018); }
}

@keyframes heroAura {
  0%, 100% { transform: scale(.98) rotate(0deg); opacity: .9; }
  50% { transform: scale(1.04) rotate(4deg); opacity: 1; }
}

@keyframes heroOutlineDrift {
  0%, 100% { transform: translateY(0) rotate(-3deg); opacity: .42; }
  50% { transform: translateY(12px) rotate(-1deg); opacity: .68; }
}

.hero-board img {
  position: absolute;
  width: min(82%, 420px);
  border-radius: 10px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.mascot-hero img {
  position: relative;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
}

.hero-board img:nth-child(1) {
  top: 4%;
  right: 4%;
  transform: rotate(4deg);
}

.hero-board img:nth-child(2) {
  top: 30%;
  left: 0;
  transform: rotate(-7deg);
}

.hero-board img:nth-child(3) {
  right: 0;
  bottom: 0;
  transform: rotate(8deg);
}

.mascot-hero .hero-mascot {
  inset: auto;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  display: block;
  width: min(100%, 620px);
  height: auto;
  max-width: 100%;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
}

.quick-search {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 12px;
  align-items: center;
  max-width: 960px;
  margin: -6px auto 42px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.local-seo-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 18px 20px;
  border: 1px solid #f1d5b8;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 248, 238, .94), rgba(255, 255, 255, .92));
}

.local-seo-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 18px;
}

.local-seo-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.local-seo-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 7px;
  border: 1px solid var(--orange);
  background: var(--orange) !important;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.quick-search label {
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

input[type="radio"],
input[type="checkbox"] {
  width: auto;
  min-height: 0;
  padding: 0;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

.quick-search button,
.game-actions button,
.account-panel button,
.admin-row button,
.video-control {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

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

.service-strip article,
.admin-panel,
.filters,
.account-panel,
.game-card,
.cart-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(33, 25, 15, .06);
}

.service-strip article {
  padding: 22px;
}

.services-heading {
  margin-top: 36px;
}

.service-illustration {
  display: block;
  width: 96px;
  height: 72px;
  margin: -4px 0 14px;
}

.service-illustration svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.ill-main {
  fill: #fff2df;
  stroke: var(--orange-dark);
  stroke-width: 3;
}

.ill-shadow {
  fill: #f7dfbf;
}

.ill-line {
  fill: none;
  stroke: #24212b;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.ill-dot,
.ill-accent {
  fill: var(--orange);
}

.ill-white-line {
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.reassurance-showcase {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 26px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid #f0d8bc;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 130, 32, .12), rgba(255, 250, 242, .9) 42%),
    var(--white);
  box-shadow: 0 18px 42px rgba(33, 25, 15, .07);
}

.reassurance-lead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;
}

.reassurance-lead h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.05;
}

.reassurance-lead p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.reassurance-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(231, 225, 216, .9);
  border-radius: 8px;
  background: rgba(255, 255, 255, .82);
}

.reassurance-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.reassurance-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.reassurance-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.featured {
  margin-top: 46px;
}

.about-snapshot {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  margin-top: 46px;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid #f0d8bc;
  border-radius: 8px;
  background: #fff8ee;
  overflow: hidden;
  position: relative;
}

.about-snapshot::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(245, 130, 32, .13);
}

.about-snapshot h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.04;
}

.about-snapshot p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.about-copy {
  position: relative;
  z-index: 1;
}

.about-copy .secondary-action {
  margin-top: 14px;
}

.about-visual {
  position: relative;
  z-index: 1;
  min-height: 340px;
}

.about-card-stack {
  position: relative;
  min-height: 270px;
}

.about-card-stack picture,
.about-card-stack img {
  position: absolute;
  width: min(78%, 290px);
}

.about-card-stack img {
  display: block;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 22px 46px rgba(33, 25, 15, .18);
  object-fit: cover;
}

.about-card-stack picture:first-child {
  top: 8px;
  left: 0;
  transform: rotate(-6deg);
}

.about-card-stack picture:last-child {
  right: 0;
  top: 72px;
  transform: rotate(7deg);
}

.about-card-stack picture:only-child {
  top: 24px;
  left: 50%;
  right: auto;
  width: min(86%, 340px);
  transform: translateX(-50%) rotate(3deg);
}

.about-note {
  position: absolute;
  right: 10px;
  bottom: 4px;
  width: min(86%, 330px);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 34px rgba(33, 25, 15, .11);
}

.about-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--orange-dark);
  font-size: 20px;
}

.about-note span {
  color: var(--muted);
  font-weight: 700;
}

.how-it-works {
  margin-top: 44px;
}

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

.steps-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.steps-grid strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
}

.steps-grid h3 {
  margin: 14px 0 8px;
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.section-heading,
.page-heading {
  margin-bottom: 24px;
}

.compact h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.catalogue-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
  padding: 18px;
}

.filters label,
.delivery-box label,
.form-grid label,
.return-grid label,
.address-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.checkline {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: center;
  color: var(--ink) !important;
}

.checkline input {
  width: 18px;
  height: 18px;
  min-height: 18px;
}

.material-filter {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  border: 0;
}

.material-filter legend {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.material-filter label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.material-filter input {
  width: 18px;
  height: 18px;
  min-height: 18px;
}

.catalogue-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.catalogue-toolbar select {
  max-width: 240px;
}

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

.carousel-shell {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 12px;
  align-items: center;
}

.game-grid.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 340px);
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 4px 4px 18px;
  scrollbar-color: var(--orange) #fff1e2;
}

.carousel-track .game-card {
  scroll-snap-align: start;
  height: 100%;
}

.carousel-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--orange-dark);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(33, 25, 15, .08);
}

.carousel-arrow:hover {
  border-color: var(--orange);
  background: #fff1e2;
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.catalog-pagination button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.catalog-pagination button:disabled {
  border-color: var(--line);
  background: #f2efe8;
  color: var(--muted);
  cursor: not-allowed;
}

.catalog-pagination span {
  color: var(--muted);
  font-weight: 900;
}

.game-card {
  overflow: hidden;
}

.game-card picture,
.checkout-line picture,
.assistant-recommendations picture {
  display: block;
  overflow: hidden;
}

.game-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  display: block;
  background: #fffaf4;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform .28s ease, filter .28s ease;
}

.game-card:hover > picture img,
.game-card:hover > img {
  transform: scale(1.28);
  filter: saturate(1.03);
}

.game-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge,
.status {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.badge {
  background: #fff1e2;
  color: var(--orange-dark);
}

.badge.blue {
  background: #e8f1ff;
  color: var(--blue);
}

.badge.green,
.status.ok {
  background: #e8f7ef;
  color: var(--green);
}

.badge.red {
  background: #fff0ee;
  color: var(--red);
}

.status.danger {
  background: #fff0ee;
  color: var(--red);
}

.game-body h2,
.game-body h3 {
  margin: 0;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.meta i {
  font-style: normal;
  font-size: 15px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-weight: 900;
}

.game-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.game-actions button.secondary {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.game-actions button.secondary.active {
  border-color: var(--orange);
  background: #fff1e2;
  color: var(--orange-dark);
}

.back-link {
  margin-bottom: 18px;
  padding: 10px 0;
  color: var(--orange-dark);
  font-weight: 900;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(330px, 1fr);
  gap: 26px;
  align-items: start;
}

.detail-gallery {
  display: grid;
  gap: 12px;
}

.detail-main-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #fffaf4;
  box-shadow: var(--shadow);
}

.extension-corner-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(226, 127, 34, .28);
}

.detail-main-image {
  width: 100%;
  max-height: 560px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  display: block;
  background: #fffaf4;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform .32s ease, box-shadow .32s ease, filter .32s ease;
}

.detail-main-frame:hover .detail-main-image {
  transform: scale(1.45);
  filter: saturate(1.04);
}

.extension-link-card {
  margin: 16px 0;
  padding: 18px;
  border: 1px solid rgba(226, 127, 34, .24);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff7ed, #ffffff);
  box-shadow: 0 18px 44px rgba(32, 31, 42, .08);
}

.extension-link-card span {
  display: block;
  color: var(--orange-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
}

.extension-link-card strong {
  display: block;
  margin: 4px 0 12px;
  font-size: 1.15rem;
}

.extension-link-card button {
  border: 1px solid var(--orange);
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  padding: 10px 14px;
}

.extension-list-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.material-summary-card {
  margin: 16px 0;
  padding: 16px;
  border: 1px solid rgba(35, 32, 43, .08);
  border-radius: 16px;
  background: #fffaf4;
}

.material-summary-card span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.material-summary-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.material-summary-card strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(226, 127, 34, .25);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(32, 31, 42, .05);
}

.stripe-refund-note {
  margin: 14px 0;
  padding: 14px 16px;
  border: 1px solid rgba(42, 107, 177, .18);
  border-radius: 14px;
  background: #f2f7ff;
  color: #2d4f78;
  font-weight: 800;
  line-height: 1.5;
}

.mini-admin-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #fff2e6;
  color: var(--orange-dark);
  font-size: .72rem;
  font-style: normal;
}

.detail-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 8px;
}

.detail-gallery-thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.detail-gallery-thumbs button.active {
  border-color: var(--orange);
}

.detail-gallery-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  background: #fffaf4;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform .24s ease;
}

.detail-gallery-thumbs button:hover img {
  transform: scale(1.32);
}

.detail-info {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-info h1 {
  margin: 8px 0 10px;
  font-size: clamp(30px, 3.4vw, 46px);
}

.stat-grid,
.price-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.stat,
.price-option {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.stat {
  position: relative;
  padding-left: 46px;
}

.stat-icon {
  position: absolute;
  left: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #fff1e2;
  font-size: 15px;
}

.price-option.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px #ffe1c5 inset;
}

.price-option button {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.video-module {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.video-current {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  min-height: 54px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  text-align: center;
}

.video-control {
  min-height: 44px;
  border: 0;
  border-radius: 0;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 16px;
  padding: 16px;
}

.video-main {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  background: #1f1c26;
  color: var(--white);
}

.video-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}

.video-main iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
}

.video-placeholder p {
  position: relative;
  max-width: 360px;
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  font-weight: 800;
}


.play-symbol {
  position: relative;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--orange-dark);
  font-size: 30px;
  font-weight: 900;
}

.video-thumbs {
  display: grid;
  gap: 10px;
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}

.thumb {
  position: relative;
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 7px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fffdf9;
  cursor: pointer;
}

.thumb.active {
  border-color: var(--orange);
}

.thumb img {
  width: 94px;
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
}

.thumb strong {
  font-size: 13px;
}

.video-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 6px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
}

.account-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
}

.account-tabs.is-hidden + .account-panel {
  grid-column: 1 / -1;
}

.account-tabs {
  display: grid;
  gap: 8px;
  align-self: start;
}

.account-tabs button {
  min-height: 44px;
  padding: 10px 12px;
  border-color: var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: left;
  font-weight: 900;
}

.account-tabs button.active {
  border-color: var(--orange);
  color: var(--orange-dark);
  background: #fff1e2;
}

.account-tabs .logout-tab {
  margin-top: 12px;
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.account-tabs .logout-tab:hover {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
  color: var(--white);
}

.account-panel,
.admin-panel {
  padding: 20px;
}

.account-section-heading {
  margin-bottom: 18px;
}

.account-section-heading h2 {
  margin: 0 0 6px;
}

.account-section-heading p {
  margin: 0;
  color: var(--muted);
}

.status-list {
  display: grid;
  gap: 14px;
}

.status-list article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.status.pending {
  background: #fff7db;
  color: #8a6300;
}

.auth-layout,
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 18px;
}

.auth-layout section,
.profile-grid section {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.auth-layout h2,
.profile-grid h2 {
  margin-top: 0;
}

.auth-layout p {
  color: var(--muted);
  line-height: 1.45;
}

.auth-layout .form-grid {
  grid-template-columns: 1fr;
}

.auth-layout button {
  width: 100%;
  white-space: normal;
}

.auth-button-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

.auth-button-stack button {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin: 0 !important;
}

.auth-layout section > button {
  display: block;
  margin-top: 12px;
}

.auth-layout section > button + button {
  margin-top: 10px;
}

.auth-layout .quiet-button {
  background: #fff7ee;
  color: var(--orange-dark);
  border-color: #f2d4b2;
}

.password-reset-panel {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid #f2d4b2;
  border-radius: 8px;
  background: #fff7ee;
}

.two-factor-login,
.security-panel {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid #f1d7bd;
  border-radius: 12px;
  background: linear-gradient(145deg, #fffaf2, #ffffff);
}

.security-panel h3 {
  margin: 0;
  font-size: 24px;
}

.muted-text {
  color: var(--muted);
  line-height: 1.55;
}

.security-panel p,
.two-factor-login small,
.two-factor-secret small {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.two-factor-secret {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 10px;
  background: #fff3e4;
}

.two-factor-secret code,
.backup-code-grid code {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 8px;
  background: #25232d;
  color: #fff;
  font-weight: 800;
  letter-spacing: 1px;
}

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

.quiet-button.danger {
  border-color: #f0b6a8;
  background: #fff0ec;
  color: #a4422d;
}

.one-column {
  grid-template-columns: 1fr !important;
}

.account-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.account-summary article {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 8px;
  background: #fff1e2;
}

.account-summary strong {
  color: var(--orange-dark);
  font-size: 26px;
}

.account-summary span {
  color: var(--muted);
  font-weight: 800;
}

.reservation-list {
  display: grid;
  gap: 14px;
}

.reservation-list article {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.reservation-list h2 {
  margin: 8px 0 4px;
}

.reservation-list p {
  margin: 0;
  color: var(--muted);
}

.reservation-subtitle {
  margin-top: 0 !important;
  color: var(--muted);
  font-weight: 800;
}

.reservation-lines {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.reservation-lines div {
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.reservation-lines span,
.reservation-lines small {
  color: var(--muted);
  font-weight: 700;
}

.reservation-logistics {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.reservation-logistics div {
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid #d9eadf;
  border-radius: 8px;
  background: #f0fbf5;
}

.reservation-logistics span {
  color: var(--muted);
  font-weight: 800;
}

.reservation-logistics a {
  color: var(--green);
  font-weight: 900;
}

.reservation-logistics button {
  justify-self: start;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.email-recipient-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.email-recipient-list span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffdf9;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.reservation-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.reservation-card-head h2 {
  margin: 8px 0 4px;
}

.invoice-mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: #fff1e2;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.invoice-mini-button:hover {
  background: var(--orange);
  color: var(--white);
}

.progress-track {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.progress-track span {
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.progress-track .done {
  background: #e8f7ef;
  color: var(--green);
}

.rental-timeline {
  display: grid;
  gap: 12px;
}

.rental-timeline article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: #fffdf9;
}

.rental-timeline span {
  color: var(--muted);
  font-weight: 800;
}

.rental-timeline .muted-step {
  border-left-color: var(--orange);
}

.deposit-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.deposit-table div {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 14px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
}

.deposit-table div:first-child {
  background: #fff1e2;
  color: var(--orange-dark);
}

.deposit-table div:last-child {
  border-bottom: 0;
}

.extend-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

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

.checkout-main,
.checkout-summary {
  display: grid;
  gap: 16px;
}

.checkout-block,
.checkout-summary {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(33, 25, 15, .06);
}

.checkout-step {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.checkout-step span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.checkout-step h2 {
  margin: 0;
}

.checkout-items {
  display: grid;
  gap: 10px;
}

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

.full-field {
  grid-column: 1 / -1;
}

.checkout-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.extension-checkout-line {
  grid-template-columns: 1fr auto;
}

.checkout-line picture,
.checkout-line img {
  display: block;
  width: 72px;
  height: 54px;
}

.checkout-line img {
  border-radius: 6px;
  object-fit: cover;
}

.checkout-line span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.checkout-deposit {
  margin-left: 82px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff1e2;
  color: var(--orange-dark);
  font-weight: 800;
}

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

.checkout-delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.checkout-delivery-grid > div {
  display: grid;
  gap: 10px;
}

.checkout-delivery-grid h3 {
  margin: 0;
}

.choice-card {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  font-weight: 800;
}

.choice-card.compact {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  padding: 10px 12px;
  min-height: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.choice-card.compact input[type="radio"] {
  display: block;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  margin: 0;
}

.choice-card.compact span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  width: 100%;
  align-items: center;
  gap: 12px;
}

.choice-card.compact strong {
  min-width: 0;
}

.choice-card.compact small {
  color: var(--muted);
  font-weight: 800;
  white-space: nowrap;
}

.choice-card.active {
  border-color: var(--orange);
  background: #fff1e2;
}

.payment-mock,
.empty-checkout,
.success-box {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.empty-checkout button {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.summary-row.total {
  border-bottom: 0;
  font-size: 20px;
}

.summary-row.discount {
  color: var(--green);
  font-weight: 900;
}

.promo-checkout-box {
  display: grid;
  gap: 10px;
  margin: 16px 0;
  padding: 14px;
  border: 1px solid #f2d4b2;
  border-radius: 8px;
  background: #fff7ee;
}

.promo-checkout-box label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 900;
}

.promo-checkout-box input {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
}

.promo-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.promo-actions button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.promo-actions button.secondary {
  background: #fff;
  color: var(--orange-dark);
}

.promo-message {
  min-height: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.promo-message.ok {
  color: var(--green);
}

.promo-message.danger {
  color: #b85045;
}

.fine-print {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.success-box {
  margin-top: 14px;
  border-color: #bfe8cf;
  background: #e8f7ef;
  color: var(--green);
  font-weight: 800;
}

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

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

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

.ops-strip div {
  display: grid;
  gap: 4px;
  min-height: 88px;
  padding: 16px;
  border-radius: 8px;
  background: #fff1e2;
}

.ops-strip strong {
  color: var(--orange-dark);
  font-size: 34px;
  line-height: 1;
}

.ops-strip span {
  color: var(--muted);
  font-weight: 800;
}

.admin-access-note {
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  color: var(--muted);
  font-weight: 800;
}

.admin-backoffice {
  margin-bottom: 18px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  align-items: center;
}

.admin-tabs button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.admin-tabs button.active {
  border-color: var(--orange);
  background: #fff1e2;
  color: var(--orange-dark);
}

.admin-module-grid,
.admin-tool-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.admin-module-grid article,
.admin-tool-grid article,
.admin-split section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.admin-module-grid strong {
  display: block;
  color: var(--orange-dark);
  font-size: 28px;
  line-height: 1;
}

.admin-module-grid span,
.admin-tool-button span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.admin-split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  margin-top: 14px;
}

.admin-list-row,
.admin-data-table > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.admin-list-row:last-child,
.admin-data-table > div:last-child {
  border-bottom: 0;
}

.admin-data-table > div:first-child {
  color: var(--orange-dark);
  background: #fff8f0;
  margin: 0 -12px;
  padding: 12px;
}

.admin-tool-button {
  display: grid;
  align-content: center;
  color: var(--ink);
  text-decoration: none;
  width: 100%;
  min-height: 58px;
  margin-bottom: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: left;
  font-weight: 900;
}

.admin-inline-form {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
  margin: 0 0 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.admin-inline-form.compact {
  grid-template-columns: 1.2fr repeat(3, 1fr) auto;
  margin: 12px 0 0;
}

.admin-inline-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.admin-inline-form input,
.admin-inline-form select,
.admin-inline-form textarea {
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.admin-inline-form textarea {
  min-height: 88px;
  resize: vertical;
}

.admin-inline-form .checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-inline-form .checkbox-line input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--orange);
}

.admin-inline-form button,
.stock-actions button,
.admin-tool-grid button {
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.stock-actions {
  display: flex;
  gap: 6px;
}

.stock-actions button {
  width: 38px;
  min-width: 38px;
  padding: 0;
}

.admin-tool-grid .tool-wide {
  grid-column: 1 / -1;
}

.admin-tool-workspace {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 16px;
  align-items: start;
}

.admin-tool-menu {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-tool-menu button {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #fffaf4;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.admin-tool-menu button strong {
  color: var(--ink);
  font-size: 15px;
}

.admin-tool-menu button span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.admin-tool-menu button.active {
  border-color: var(--orange);
  background: #fff1e2;
  box-shadow: inset 3px 0 0 var(--orange);
}

.admin-tool-panel {
  min-height: 360px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.tool-panel-heading {
  margin-bottom: 14px;
}

.tool-panel-heading h3 {
  margin: 0 0 4px;
}

.tool-panel-heading p {
  margin: 0;
  color: var(--muted);
}

.tool-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
}

.tool-action-row button,
.tool-link-button,
.admin-tool-panel > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.tool-link-button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.delivery-admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.delivery-admin-grid section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fffdf9;
}

.delivery-option-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 120px 96px auto;
  gap: 10px;
  align-items: end;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.delivery-option-row:last-child {
  border-bottom: 0;
}

.delivery-option-row button {
  min-height: 42px;
}

.promo-admin-layout {
  display: grid;
  gap: 18px;
}

.promo-form-card,
.promo-code-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fffdf9;
}

.promo-code-list {
  display: grid;
  gap: 10px;
}

.promo-code-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.2fr) minmax(140px, .8fr) minmax(120px, .7fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.promo-code-row > div {
  display: grid;
  gap: 4px;
}

.promo-code-row small,
.promo-code-row span {
  color: var(--muted);
  font-weight: 800;
}

.promo-row-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.promo-row-actions button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: #fff7ee;
  color: var(--orange-dark);
  font-weight: 900;
  cursor: pointer;
}

.production-helper {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid #f2d4b2;
  border-radius: 8px;
  background: #fff7ee;
}

.production-helper code {
  display: block;
  overflow-wrap: anywhere;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.tool-status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf4;
}

.vacation-control-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid #f2d4b2;
  border-radius: 8px;
  background: linear-gradient(180deg, #fffaf4, #fff);
}

.vacation-switch {
  justify-content: start;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
}

.vacation-date-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.vacation-date-grid label,
.vacation-message {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 900;
}

.vacation-date-grid input,
.vacation-message textarea {
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.vacation-message textarea {
  min-height: 120px;
  line-height: 1.5;
}

.vacation-quick-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vacation-quick-row button {
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: #fff7ed;
  color: var(--orange-dark);
  font-weight: 900;
}

.vacation-preview {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border: 1px dashed var(--orange);
  border-radius: 8px;
  background: #fff7ed;
  color: var(--orange-dark);
}

.vacation-control-card > button {
  justify-self: start;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.mail-command-center {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 14px;
}

.mail-command-center aside {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.mail-command-center aside button,
.mail-template-bank button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.mail-command-center aside button.active {
  border-color: var(--orange);
  background: #fff1e2;
  color: var(--orange-dark);
}

.mail-kpis,
.stats-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.mail-kpis article,
.stats-dashboard-grid article {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mail-kpis strong {
  display: block;
  color: var(--orange-dark);
  font-size: 24px;
}

.mail-composer {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.mail-composer textarea {
  min-height: 360px;
  font-size: 16px;
  line-height: 1.55;
}

.mail-workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mail-workflow article {
  padding: 12px;
  border: 1px solid #f2d4b2;
  border-radius: 8px;
  background: #fffaf4;
}

.mail-workflow strong {
  display: block;
  color: var(--orange-dark);
}

.mail-workflow span {
  color: var(--muted);
  font-size: 13px;
}

.campaign-edit-banner {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid #f2d4b2;
  border-radius: 8px;
  background: #fffaf4;
}

.campaign-edit-banner button,
.campaign-recipient-chooser button {
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: #fff7ed;
  color: var(--orange-dark);
  font-weight: 900;
}

.campaign-recipient-chooser {
  display: none;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.campaign-recipient-chooser.show {
  display: grid;
}

.campaign-recipient-chooser p {
  margin: 0;
  color: var(--muted);
}

.campaign-recipient-chooser > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-height: 220px;
  overflow: auto;
  padding-right: 4px;
}

.campaign-recipient-chooser label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 8px;
  align-items: center;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.campaign-recipient-chooser small {
  grid-column: 2;
  color: var(--muted);
}

.schedule-field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.mail-template-bank {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mail-template-bank button {
  padding: 8px 10px;
  color: var(--orange-dark);
}

.mail-history {
  margin-top: 14px;
}

.mail-history article,
.extension-admin-list article {
  display: grid;
  grid-template-columns: auto 1.4fr 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  margin-top: 8px;
}

.icon-button {
  width: 38px;
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: #fff7ed;
  color: var(--orange-dark);
  font-weight: 900;
}

.decision-switch {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-weight: 900;
}

.decision-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.decision-switch i {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 30px;
  border-radius: 999px;
  background: #fee2e2;
  box-shadow: inset 0 0 0 1px #fecaca;
}

.decision-switch i::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .18s ease;
}

.decision-switch input:checked + i {
  background: #dcfce7;
  box-shadow: inset 0 0 0 1px #bbf7d0;
}

.decision-switch input:checked + i::after {
  transform: translateX(28px);
}

.extension-detail-modal dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 0;
}

.extension-detail-modal dl div,
.stats-dashboard-grid article div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.extension-detail-modal dt {
  color: var(--muted);
  font-weight: 800;
}

.extension-detail-modal dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.stats-control-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.stats-control-bar select,
.stats-control-bar button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 8px 10px;
  font: inherit;
  font-weight: 800;
}

.stats-control-bar button {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

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

.admin-notification-center {
  position: relative;
  margin-left: auto;
}

.admin-notification-bell {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: #fff7ed;
  color: var(--orange-dark);
  font-weight: 900;
}

.admin-notification-bell strong {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
}

.admin-notification-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  width: min(360px, 90vw);
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.admin-notification-panel button {
  display: grid;
  width: 100%;
  gap: 3px;
  padding: 10px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 900;
}

.admin-notification-panel article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.admin-notification-panel article:last-child {
  border-bottom: 0;
}

.admin-notification-panel button:last-child {
  border-bottom: 0;
}

.admin-notification-panel .notification-dismiss {
  width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff7ed;
  color: var(--orange-dark);
  text-align: center;
  place-items: center;
}

.admin-notification-panel small {
  color: var(--muted);
  font-weight: 700;
}

.mail-segment-grid,
.mail-template-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.mail-segment-grid article,
.mail-template-list article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.mail-template-list button {
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: #fff7ed;
  color: var(--orange-dark);
  font-weight: 900;
}

.mail-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mail-toolbar button,
.mail-row-actions button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: #fff7ed;
  color: var(--orange-dark);
  font-weight: 900;
}

.mail-preview {
  min-height: 560px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at top left, rgba(232, 138, 52, .18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(102, 167, 215, .18), transparent 34%),
    linear-gradient(180deg, #fbf8f0, #fff);
}

.email-preview-card {
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #efe2d0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(35, 33, 43, .13);
}

.email-preview-topline {
  height: 10px;
  background: linear-gradient(90deg, #d16f1f, #e88a34 42%, #66a7d7);
}

.email-preview-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 32px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 900;
}

.email-preview-header div {
  display: grid;
  gap: 2px;
}

.email-preview-header small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.email-preview-header img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.email-preview-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(220px, .88fr);
  gap: 24px;
  align-items: center;
  padding: 38px 34px;
  background:
    linear-gradient(135deg, rgba(255, 241, 226, .92), rgba(248, 251, 255, .95)),
    #fffaf4;
}

.email-preview-hero small {
  display: block;
  color: var(--orange-dark);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.email-preview-hero h2 {
  margin: 0;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.08;
}

.email-preview-illustration {
  position: relative;
  min-height: 220px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .92), transparent 15%),
    linear-gradient(135deg, rgba(232, 138, 52, .24), rgba(102, 167, 215, .28)),
    #fff;
  box-shadow: inset 0 0 0 1px rgba(232, 138, 52, .2);
  overflow: hidden;
}

.email-preview-illustration i,
.email-preview-illustration b {
  position: absolute;
  display: block;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 22px rgba(35, 33, 43, .12);
}

.email-preview-illustration i:nth-child(1) {
  width: 112px;
  height: 78px;
  left: 26px;
  top: 28px;
  transform: rotate(-7deg);
}

.email-preview-illustration i:nth-child(2) {
  width: 82px;
  height: 82px;
  right: 26px;
  top: 34px;
  background: #fff7ed;
  transform: rotate(10deg);
}

.email-preview-illustration i:nth-child(3) {
  width: 130px;
  height: 64px;
  left: 58px;
  bottom: 28px;
  background: #f8fbff;
  transform: rotate(4deg);
}

.email-preview-illustration b {
  width: 18px;
  height: 18px;
  right: 92px;
  bottom: 48px;
  background: var(--orange);
  border-radius: 50%;
}

.email-preview-content {
  padding: 34px 44px 20px;
}

.email-preview-body {
  padding: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.email-preview-cover {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
}

.email-preview-mascot {
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(35, 33, 43, .16));
}

.email-preview-body a {
  display: inline-block;
  margin: 10px 0;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.email-preview-cta {
  padding: 8px 44px 36px;
}

.email-preview-cta a {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(232, 138, 52, .26);
}

.email-preview-signature {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 0 32px 30px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #f8fbff;
  color: var(--muted);
}

.email-preview-signature strong {
  color: var(--ink);
}

.mail-design-alert .email-preview-topline {
  background: linear-gradient(90deg, #b91c1c, var(--orange));
}

.mail-design-alert .email-preview-hero {
  background: linear-gradient(135deg, #fff1f2, #fff7ed);
}

.mail-design-catalog .email-preview-topline {
  background: linear-gradient(90deg, #66a7d7, var(--orange));
}

.mail-design-service .email-preview-topline {
  background: linear-gradient(90deg, #22c55e, #66a7d7);
}

.email-preview-body img {
  max-width: 100%;
  border-radius: 8px;
  margin: 12px 0;
}

.email-preview-footer {
  padding: 18px 28px;
  border-top: 1px solid var(--line);
  background: #fffdf9;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.mail-template-list textarea {
  min-height: 190px;
}

.automation-trigger {
  display: inline-block;
  margin: 6px 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff1e2;
  color: var(--orange-dark);
  font-weight: 900;
}

.automation-intro {
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid #f2d4b2;
  border-radius: 8px;
  background: #fffaf4;
}

.automation-intro strong {
  color: var(--orange-dark);
  font-size: 18px;
}

.automation-intro p {
  margin: 6px 0 0;
  color: var(--muted);
}

.automation-grid article {
  display: grid;
  gap: 10px;
}

.automation-card-head {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.mail-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.outbox-list article {
  grid-template-columns: 1fr auto;
}

.outbox-dashboard {
  display: grid;
  gap: 14px;
}

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

.outbox-summary article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf4;
}

.outbox-summary strong {
  display: block;
  color: var(--orange-dark);
  font-size: 24px;
}

.outbox-summary span {
  color: var(--muted);
  font-weight: 800;
}

.outbox-list {
  display: grid;
  gap: 10px;
}

.outbox-card {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(120px, 220px) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.outbox-main {
  display: grid;
  gap: 6px;
}

.outbox-main strong {
  color: var(--ink);
  font-size: 17px;
}

.outbox-main p {
  margin: 0;
  color: var(--muted);
}

.outbox-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #f3eadf;
}

.outbox-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #66a7d7);
}

.outbox-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.outbox-schedule {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.outbox-schedule input {
  min-height: 36px;
  max-width: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 9px;
  font: inherit;
}

.outbox-actions button {
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 900;
}

.outbox-actions button.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.status.muted {
  background: #f1f5f9;
  color: #64748b;
}

.switch-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
}

.switch-row input {
  position: absolute;
  opacity: 0;
}

.switch-row span {
  position: relative;
  width: 58px;
  height: 30px;
  border-radius: 999px;
  background: #fee2e2;
  box-shadow: inset 0 0 0 1px #fecaca;
}

.switch-row span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .18s ease;
}

.switch-row input:checked + span {
  background: #dcfce7;
  box-shadow: inset 0 0 0 1px #bbf7d0;
}

.switch-row input:checked + span::after {
  transform: translateX(28px);
}

.site-global-banner {
  display: none;
  overflow: hidden;
  padding: 10px 5vw;
  border-bottom: 1px solid #f2d4b2;
  background: #fff1e2;
  color: var(--orange-dark);
  font-weight: 900;
}

.site-global-banner.show {
  display: block;
}

.site-global-banner .marquee {
  white-space: nowrap;
}

.site-global-banner .marquee span {
  display: inline-block;
  min-width: 100%;
  animation: microludic-marquee 18s linear infinite;
}

@keyframes microludic-marquee {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

.mini-bar-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 140px;
  padding-top: 10px;
}

.mini-bar-chart span {
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: end;
  justify-items: center;
  gap: 4px;
  min-width: 42px;
  height: 125px;
}

.mini-bar-chart i {
  display: block;
  width: 28px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--orange), #f6b05f);
}

.mini-bar-chart b,
.mini-bar-chart small {
  color: var(--muted);
  font-size: 12px;
}

.return-confirm-summary,
.reservation-customer-note {
  margin: 12px 0;
  padding: 12px;
  border: 1px solid #f2d4b2;
  border-radius: 8px;
  background: #fff7ed;
}

.return-confirm-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.reservation-customer-note strong {
  display: block;
  color: var(--orange-dark);
  margin-bottom: 4px;
}

.reservation-customer-note p {
  margin: 0;
  color: var(--muted);
}

.reservation-cancelled-notice {
  margin: 12px 0;
  padding: 12px;
  border: 1px solid #f2b5ad;
  border-radius: 8px;
  background: #fff2f0;
  color: #8f2f25;
}

.reservation-cancelled-notice p {
  margin: 4px 0 0;
  color: #8f2f25;
}

.admin-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.admin-quick-actions button,
.alert-list button {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.game-editor {
  display: grid;
  gap: 20px;
}

.editor-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.editor-heading h2 {
  margin: 0;
}

.editor-heading p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.45;
}

.editor-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.editor-actions button:not(.quiet-button) {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.editor-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.editor-notice {
  min-height: 0;
}

.editor-notice:not(:empty) {
  padding: 12px 14px;
  border: 1px solid #bfe8cf;
  border-radius: 8px;
  background: #e8f7ef;
  color: var(--green);
  font-weight: 800;
}

.editor-section {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.editor-section h3 {
  margin: 0 0 14px;
}

.wide-section {
  grid-column: 1 / -1;
}

.price-preview.large {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 14px;
}

.price-preview.large span {
  display: grid;
  gap: 4px;
}

.media-drop {
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 140px;
  padding: 18px;
  border: 2px dashed #f0c18d;
  border-radius: 8px;
  background: #fff7ed;
  color: var(--orange-dark);
  text-align: center;
}

.media-drop span {
  color: var(--muted);
  font-weight: 800;
}

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

.price-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.price-preview span {
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff1e2;
  color: var(--orange-dark);
  font-weight: 900;
}

.youtube-admin {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.admin-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

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

.legend i {
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.media-list {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.media-list span {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
  color: var(--muted);
  font-weight: 800;
}

.quiet-button {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.auth-button-stack .quiet-button {
  background: #fff7ee;
  color: var(--orange-dark);
  border-color: #f2d4b2;
}

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

.automation-grid article {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.automation-grid strong {
  display: block;
  margin: 10px 0 6px;
}

.automation-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.alert-list {
  display: grid;
  gap: 12px;
}

.alert-list article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.alert-list strong {
  display: block;
}

.alert-list p {
  margin: 4px 0 0;
  color: var(--muted);
}

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

.kanban-board section {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 230px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.kanban-board h3 {
  margin: 0 0 4px;
}

.kanban-board article {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: 8px;
  background: var(--white);
  border-left: 4px solid var(--orange);
  font-weight: 900;
}

.kanban-board span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 220px auto;
  gap: 12px;
  margin-bottom: 16px;
}

.admin-toolbar button,
.admin-table button {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.admin-table {
  display: grid;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.admin-table div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.admin-table div:first-child {
  background: #fff1e2;
  color: var(--orange-dark);
}

.admin-table div:last-child {
  border-bottom: 0;
}

.bo-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
}

.bo-toolbar-spacer {
  flex: 1;
}

.bo-bulk-control,
.bo-bulk-control select,
.bo-bulk-control button,
.bo-action-select,
.bo-filter,
.bo-primary,
.bo-date {
  min-height: 34px;
  border-radius: 4px;
  border: 1px solid var(--orange);
  background: #fff;
  color: var(--orange-dark);
  font-weight: 850;
  padding: 7px 11px;
}

.bo-bulk-control {
  display: inline-flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  border: 0;
}

.bo-bulk-control select {
  width: 210px;
  min-width: 210px;
  border-radius: 5px 0 0 5px;
}

.bo-bulk-control button {
  border-left: 0;
  border-radius: 0 5px 5px 0;
  background: #fff7ef;
}

.bo-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.publish-game-button {
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  box-shadow: 0 12px 24px rgba(201, 111, 36, .14);
}

.bo-search input {
  width: min(300px, 36vw);
  min-height: 34px;
  border: 1px solid #f0c89e;
  border-radius: 4px;
  padding: 7px 10px;
  color: #26315f;
  background: #fff;
}

.bo-table-shell {
  overflow: hidden;
  border: 1px solid #efd8c0;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(30, 64, 175, 0.04);
}

.bo-table-scroll {
  overflow-x: auto;
}

.bo-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-size: 13px;
}

.bo-table th {
  padding: 10px 12px;
  text-align: left;
  color: #7a3d0c;
  background: #fff1df;
  border-bottom: 1px solid #efd8c0;
  font-weight: 900;
  white-space: nowrap;
}

.bo-table th button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.bo-table th button:hover {
  color: var(--orange-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bo-table td {
  padding: 9px 12px;
  color: #666074;
  border-bottom: 1px solid #f1dfcc;
  vertical-align: middle;
}

.bo-table tr:hover td {
  background: #fffaf4;
}

.bo-check {
  width: 34px;
}

.bo-check input {
  width: 15px;
  height: 15px;
  accent-color: var(--orange);
}

.bo-service strong {
  display: block;
  color: #1f1d2a;
  font-weight: 900;
}

.bo-service small,
.bo-muted {
  display: block;
  margin-top: 2px;
  color: #7f88b2;
  font-size: 11px;
  font-weight: 700;
}

.bo-pill {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #eef2ff;
  color: #586078;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.bo-pill.success {
  background: #d9f2bf;
  color: #3d7d21;
}

.bo-pill.warning {
  background: #fff0ae;
  color: #806400;
}

.bo-pill.info {
  background: #fff0de;
  color: var(--orange-dark);
}

.bo-pill.danger {
  background: #ffd8d8;
  color: #b34242;
}

.bo-icon-button,
.bo-mini,
.bo-step,
.bo-dots {
  min-height: 30px;
  border: 1px solid var(--orange);
  background: #fff;
  color: var(--orange-dark);
  font-weight: 900;
  text-decoration: none;
}

.bo-icon-button {
  padding: 5px 9px;
  border-radius: 999px;
}

.bo-mini,
.bo-step {
  padding: 5px 9px;
  border-radius: 5px;
}

.bo-step {
  border-color: #d8d8d8;
  color: #111827;
}

.bo-dots {
  width: 31px;
  padding: 0;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 1px;
}

.bo-row-menu {
  position: relative;
  display: inline-block;
}

.bo-row-menu summary {
  display: grid;
  place-items: center;
  width: 31px;
  min-height: 30px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--orange-dark);
  background: #fff;
  font-weight: 950;
  cursor: pointer;
  list-style: none;
}

.bo-row-menu summary::-webkit-details-marker {
  display: none;
}

.bo-row-menu[open] summary {
  background: var(--orange);
  color: #fff;
}

.bo-row-menu > div {
  position: absolute;
  right: 0;
  z-index: 20;
  display: grid;
  min-width: 210px;
  padding: 6px;
  margin-top: 6px;
  border: 1px solid #efd8c0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(31, 29, 42, 0.16);
}

.bo-row-menu button,
.bo-row-menu a {
  width: 100%;
  min-height: 36px;
  padding: 8px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #2a2733;
  text-align: left;
  text-decoration: none;
  font-weight: 850;
}

.bo-row-menu button:hover,
.bo-row-menu a:hover {
  background: #fff1df;
  color: var(--orange-dark);
}

.bo-empty {
  padding: 20px !important;
  text-align: center;
  color: var(--muted);
}

.bo-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 12px 14px;
  color: #6070a8;
  background: #fbfdff;
  font-size: 12px;
  font-weight: 800;
}

.bo-pagination div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bo-pagination button {
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid var(--orange);
  border-radius: 5px;
  background: #fff;
  color: var(--orange-dark);
  font-weight: 850;
}

.bo-pagination button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  justify-content: flex-end;
  background: rgba(24, 20, 14, .38);
}

.cart-drawer.open {
  display: flex;
}

.cart-panel {
  width: min(460px, 100vw);
  height: 100%;
  padding: 22px;
  overflow: auto;
  border-radius: 0;
}

.close-cart {
  float: right;
  padding: 8px 0;
  color: var(--orange-dark);
  font-weight: 900;
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.cart-limit {
  padding: 10px 12px;
  border: 1px solid #d9eadf;
  border-radius: 8px;
  background: #f0fbf5;
  color: var(--green);
  font-weight: 900;
}

.cart-limit.full {
  border-color: var(--orange);
  background: #fff1e2;
  color: var(--orange-dark);
}

.cart-item {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.deposit-line {
  padding: 9px 10px;
  border-radius: 8px;
  background: #fff1e2;
  color: var(--orange-dark);
  font-weight: 800;
}

.practical-box,
.booking-field,
.similar-section {
  margin-top: 18px;
}

.practical-box {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.practical-box p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.availability-calendar,
.mini-calendar {
  display: grid;
  gap: 7px;
  margin-top: 12px;
}

.mini-calendar {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-head {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  gap: 8px;
  align-items: center;
}

.calendar-head strong {
  text-align: center;
  text-transform: capitalize;
}

.calendar-head button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--orange-dark);
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
}

.calendar-head button:disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: .45;
}

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

.calendar-weekdays span {
  min-height: 24px;
  color: var(--muted);
  font-size: 12px;
}

.availability-calendar span,
.availability-calendar button,
.mini-calendar span {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  font-size: 13px;
}

.availability-calendar button {
  cursor: pointer;
}

.availability-calendar button:disabled {
  cursor: not-allowed;
  opacity: .75;
}

.availability-calendar .selected {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.free {
  background: #e8f7ef;
  color: var(--green);
}

.busy {
  background: #fff0ee;
  color: var(--red);
}

.hold {
  background: #fff7db;
  color: #8a6300;
}

.booking-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}

.return-preview {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #e8f1ff;
  color: var(--blue);
  font-weight: 800;
}

.similar-section {
  padding-top: 30px;
}

.detail-extras {
  display: block;
  margin-top: 28px;
}

.wide-review {
  width: 100%;
}

.microludic-opinion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: center;
  width: 100%;
  margin-bottom: 18px;
  padding: 26px;
  border: 1px solid rgba(232, 138, 52, .28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(232, 138, 52, .16), transparent 34%),
    linear-gradient(135deg, #fffaf3 0%, #ffffff 56%, #fff2e2 100%);
  box-shadow: 0 22px 55px rgba(38, 36, 47, .08);
}

.opinion-copy {
  display: grid;
  gap: 10px;
}

.opinion-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
}

.opinion-copy p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.opinion-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 42px;
  margin-top: 6px;
  padding: 0 16px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(232, 138, 52, .2);
}

.opinion-link:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.opinion-score {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 20px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(38, 36, 47, .22);
}

.opinion-score div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.opinion-score strong {
  font-size: clamp(54px, 7vw, 82px);
  line-height: .9;
}

.opinion-score span {
  color: rgba(255, 255, 255, .72);
  font-weight: 900;
  font-size: 24px;
}

.opinion-score i {
  display: block;
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.opinion-score i b {
  display: block;
  width: var(--score);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffc26d, var(--orange));
}

.opinion-score small {
  color: rgba(255, 255, 255, .78);
  font-weight: 900;
  text-transform: uppercase;
}

.review-module {
  overflow: hidden;
}

.review-header {
  display: grid;
  grid-template-columns: minmax(160px, .35fr) 1fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 18px;
}

.review-score {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 150px;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(145deg, #fff4e7, #ffffff);
  border: 1px solid rgba(232, 138, 52, .22);
  box-shadow: 0 18px 42px rgba(232, 138, 52, .12);
}

.review-score strong {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1;
  color: var(--ink);
}

.review-score span {
  color: var(--muted);
  font-weight: 800;
}

.review-intro {
  display: grid;
  align-content: center;
  gap: 8px;
}

.review-intro h2 {
  margin: 0;
}

.review-intro p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.review-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 0;
}

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

.review-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.review-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card strong {
  color: var(--ink);
}

.review-card small {
  color: var(--muted);
  font-weight: 700;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.review-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.review-pagination button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
}

.review-pagination button.active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.review-empty {
  padding: 20px;
  border: 1px dashed rgba(232, 138, 52, .38);
  border-radius: 8px;
  background: #fff8ef;
  color: var(--muted);
}

.review-form {
  display: grid;
  gap: 12px;
}

.review-rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.review-rating-row button {
  min-width: 46px;
  min-height: 42px;
  border: 1px solid rgba(232, 138, 52, .32);
  border-radius: 999px;
  background: #fffaf4;
  color: var(--orange-dark);
  font-weight: 900;
}

.review-rating-row button.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.review-moderation-list {
  display: grid;
  gap: 12px;
}

.review-moderation-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.review-moderation-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.review-moderation-actions .review-action-button {
  appearance: none;
  min-height: 42px !important;
  padding: 0 18px !important;
  border: 1px solid var(--orange) !important;
  border-radius: 8px !important;
  background: var(--orange) !important;
  color: var(--white) !important;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(229, 137, 53, .16);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.review-moderation-actions .review-action-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(229, 137, 53, .22);
}

.review-moderation-actions .review-action-button.reject {
  border-color: #f0b8a8 !important;
  background: #fff7f3 !important;
  color: #b85045 !important;
  box-shadow: none;
}

.review-moderation-actions .review-action-button.reject:hover {
  background: #ffe9df !important;
}

.review-sent-button,
.review-sent-button:disabled {
  border-color: #cddfd4 !important;
  background: #e8f7ef !important;
  color: var(--green) !important;
  cursor: not-allowed !important;
  opacity: 1;
}

.scale-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  vertical-align: middle;
  border-radius: 50%;
}

.scale-icon.small {
  width: 22px;
  height: 22px;
}

.scale-icon.tiny {
  width: 18px;
  height: 18px;
}

.scale-icon.large {
  width: 76px;
  height: 76px;
  box-shadow: 0 18px 34px rgba(213, 111, 22, .22);
}

.review-reward-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.review-reward-button span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #8a3d08;
  background: #fff2dd;
  border: 1px solid rgba(229, 137, 53, .3);
  border-radius: 999px;
  padding: 2px 7px;
  font-weight: 900;
}

.cart-loyalty-note,
.summary-row.loyalty-earned strong {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-loyalty-note {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(229, 137, 53, .28);
  border-radius: 8px;
  background: #fff6eb;
  color: var(--ink);
  font-weight: 850;
}

.loyalty-panel {
  display: grid;
  gap: 20px;
}

.loyalty-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(229, 137, 53, .24);
  border-radius: 8px;
  background: linear-gradient(135deg, #fffaf4, #fff);
  box-shadow: var(--shadow);
}

.loyalty-hero h2 {
  margin: 0 0 10px;
  font-size: clamp(32px, 4vw, 56px);
}

.loyalty-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.loyalty-balance {
  min-width: 190px;
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.loyalty-balance strong {
  font-size: 48px;
  line-height: 1;
}

.loyalty-balance span,
.loyalty-expiry,
.loyalty-rewards p,
.loyalty-voucher span,
.loyalty-history-row small {
  color: var(--muted);
}

.loyalty-rules,
.loyalty-rewards,
.loyalty-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.loyalty-rules article,
.loyalty-rewards article,
.loyalty-columns section {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.loyalty-rules article,
.loyalty-rewards article {
  display: grid;
  gap: 8px;
}

.loyalty-rewards article.locked {
  opacity: .62;
}

.loyalty-rewards article > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-weight: 900;
}

.loyalty-rewards strong {
  font-size: 32px;
}

.loyalty-rewards button {
  min-height: 42px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
}

.loyalty-rewards button:disabled {
  border-color: var(--line);
  background: #f4eee6;
  color: var(--muted);
}

.loyalty-columns {
  grid-template-columns: 1fr 1fr;
}

.loyalty-voucher,
.loyalty-history-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.loyalty-voucher:last-child,
.loyalty-history-row:last-child {
  border-bottom: 0;
}

.loyalty-history-row span {
  display: grid;
  gap: 4px;
}

.loyalty-history-row strong {
  color: #4d9a62;
}

.loyalty-history-row strong.negative {
  color: var(--orange-dark);
}

.loyalty-history-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
}

.loyalty-history-head h3 {
  margin: 0;
}

.loyalty-history-head small {
  color: var(--muted);
  font-weight: 800;
}

.loyalty-history-page {
  min-height: 196px;
}

.loyalty-history-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.loyalty-history-pager button {
  min-width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.loyalty-history-pager button.active {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.admin-review-pagination {
  justify-content: center;
  margin-top: 16px;
}

.detail-extras article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.condition-list,
.review-list {
  display: grid;
  gap: 10px;
}

.condition-list span,
.review-list p {
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: #fffdf9;
  color: var(--muted);
  line-height: 1.45;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 20px;
}

.assistant-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 35;
}

.assistant-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 132px;
  min-height: 54px;
  margin-left: auto;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: linear-gradient(135deg, #ef9642, #d87022);
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  box-shadow: var(--shadow);
  cursor: pointer;
  padding: 10px 16px;
}

.assistant-toggle::before {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background:
    radial-gradient(circle at 35% 38%, #fff 0 3px, transparent 4px),
    radial-gradient(circle at 65% 38%, #fff 0 3px, transparent 4px),
    linear-gradient(135deg, #1f5d91, #64aee3);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .12);
}

.assistant-panel {
  display: none;
  width: min(440px, calc(100vw - 28px));
  margin-bottom: 10px;
  border: 1px solid #ead8c4;
  border-radius: 18px;
  background: #fffdf9;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.assistant-widget.open .assistant-panel {
  display: block;
}

.assistant-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, .22), transparent 28%),
    linear-gradient(135deg, #25232d, #473426 54%, #d87829);
  color: var(--white);
}

.assistant-head > div {
  display: grid;
  gap: 2px;
}

.assistant-label {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #ffd7ad;
}

.assistant-head button {
  border: 0;
  background: transparent;
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.assistant-messages {
  display: grid;
  gap: 8px;
  max-height: 360px;
  overflow: auto;
  padding: 14px;
}

.assistant-messages p,
.assistant-messages .bot-message {
  margin: 0;
  padding: 12px;
  border-radius: 14px;
  background: #fffdf9;
  line-height: 1.4;
}

.assistant-messages .bot-message {
  border: 1px solid #f1dcc5;
  background: #fff8ef;
}

.assistant-messages .user-message {
  justify-self: end;
  max-width: 86%;
  background: #edf6ff;
  border: 1px solid #d6eafa;
}

.assistant-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 14px 14px;
}

.assistant-quick button {
  flex: 1;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.assistant-loyalty-list {
  display: grid;
  gap: 8px;
  margin: 12px 0;
}

.assistant-loyalty-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(229, 137, 53, .24);
  border-radius: 8px;
  background: #fff7ec;
}

.assistant-choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.assistant-choice-grid button {
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid #e58b35;
  border-radius: 999px;
  background: #fff3e4;
  color: var(--orange-dark);
  font-weight: 900;
  cursor: pointer;
}

.assistant-recommendations {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.assistant-recommendations article {
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #eed8c1;
  border-radius: 14px;
  background: #fff;
}

.assistant-recommendations picture,
.assistant-recommendations img {
  display: block;
  width: 62px;
  height: 48px;
}

.assistant-recommendations img {
  object-fit: contain;
  border-radius: 10px;
  background: #fbfaf6;
}

.assistant-recommendations div {
  display: grid;
  gap: 3px;
}

.assistant-recommendations span,
.assistant-note {
  color: var(--muted);
  font-size: 13px;
}

.assistant-recommendations button {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.about-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.about-tabs button {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.about-tabs button.active {
  border-color: var(--orange);
  color: var(--orange-dark);
  background: #fff1e2;
}

.about-content-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-content-grid article,
.about-story,
.faq-list details,
.contact-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.assistant-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 0 14px 14px;
}

.assistant-input input {
  min-height: 40px;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.assistant-input button {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 42px clamp(18px, 4vw, 56px) 22px;
  border-top: 1px solid #efd8c0;
  background:
    linear-gradient(135deg, rgba(255, 250, 242, .96), rgba(255, 253, 249, .98) 48%, rgba(255, 243, 229, .95)),
    radial-gradient(circle at 88% 22%, rgba(232, 138, 52, .14), transparent 30%);
  color: var(--muted);
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(232, 138, 52, .22);
  border-radius: 70px;
  transform: rotate(16deg);
  pointer-events: none;
}

.footer-topline,
.footer-main,
.footer-copyright {
  position: relative;
  z-index: 1;
}

.footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1360px;
  margin: 0 auto 18px;
  padding: 0 0 20px;
  border: 0;
  border-bottom: 1px solid rgba(232, 138, 52, .2);
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.footer-topline strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.05;
}

.footer-kicker {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  border: 1px solid var(--orange);
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 900;
  text-align: center;
  text-decoration: none !important;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(232, 138, 52, .22);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) repeat(3, minmax(180px, .75fr));
  gap: 22px;
  align-items: stretch;
  max-width: 1360px;
  margin: 0 auto;
}

.footer-main section {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(232, 138, 52, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .68);
}

.footer-brand {
  display: grid;
  align-content: start;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(255, 246, 236, .92)) !important;
  box-shadow: 0 18px 44px rgba(33, 25, 15, .08);
}

.footer-brand picture,
.footer-brand img {
  display: block;
}

.footer-brand img {
  width: min(180px, 64%);
  height: auto;
  margin: 0 0 18px;
}

.footer-brand p {
  max-width: 430px;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid #f1d3b0;
  border-radius: 999px;
  background: #fff8ef;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--ink);
  text-decoration: none;
  transition: transform .18s ease, color .18s ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.footer-socials svg rect,
.footer-socials svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-socials .instagram {
  color: #d62976;
}

.footer-socials .facebook {
  color: #1877f2;
}

.footer-socials .tiktok {
  color: #111111;
}

.footer-socials .youtube {
  color: #ff0033;
}

.footer-socials span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1360px;
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(232, 138, 52, .18);
  text-align: center;
  font-size: 14px;
}

.footer-copyright span {
  color: var(--ink);
  font-weight: 800;
}

.site-footer h2 {
  margin: 0 0 10px;
  font-size: 17px;
  color: var(--ink);
}

.site-footer p {
  margin: 8px 0;
  line-height: 1.5;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.cookie-banner.open,
.cookie-banner.show {
  display: grid;
}

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

.cookie-actions button,
.admin-link-button {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: #a84f00;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
}

.cart-hold-timer {
  padding: 10px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: #fff1e2;
  color: var(--orange-dark);
  font-weight: 900;
}

[data-admin-next-status] {
  border: 1px solid #d8d4cb;
  background: #f2efe8;
  color: #201f2a;
  box-shadow: none;
}

.cart-remove-button {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.compare-bar {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 25;
  display: none;
  align-items: center;
  gap: 12px;
  width: min(760px, calc(100vw - 220px));
  max-width: 760px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: #fff8f0;
  box-shadow: 0 16px 40px rgba(32, 31, 42, 0.16);
}

.compare-bar span {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}

.compare-bar.show {
  display: flex;
}

.app-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(32, 31, 42, 0.38);
}

.app-modal.open {
  display: grid;
}

.modal-panel {
  width: min(860px, 96vw);
  max-height: 88vh;
  overflow: auto;
  padding: 22px;
  border-radius: 8px;
  background: #fffdf9;
  box-shadow: 0 30px 80px rgba(32, 31, 42, 0.24);
}

.modal-close {
  float: right;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.modal-product-editor .editor-heading button,
.modal-panel .editor-heading button,
.admin-product-editor .editor-heading button {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.compare-table > div {
  display: grid;
  grid-template-columns: 160px repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

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

.admin-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.admin-modal-actions button,
.modal-panel > button[data-save-client],
.modal-panel > button[data-confirm-password-reset] {
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.checkout-auth-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.checkout-auth-switch button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.checkout-auth-switch button.active {
  border-color: var(--orange);
  background: #fff1e2;
  color: var(--orange-dark);
}

.checkout-auth-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-auth-form .full,
.checkout-auth-form .social-login-row {
  grid-column: 1 / -1;
}

.checkout-auth-confirmed {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid #d9eadf;
  border-radius: 8px;
  background: #f2fbf5;
}

.checkout-auth-confirmed p {
  flex-basis: 100%;
  margin: 0;
  color: var(--muted);
}

.legal-panel,
.legal-editor {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.legal-editor {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.legal-editor textarea {
  min-height: 220px;
}

.contact-map {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: 8px;
}

#admin > .admin-grid {
  display: none;
}

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

.social-login-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.social-login .social-button,
.social-login-row .social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(32, 31, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.social-login .social-button:hover,
.social-login-row .social-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(32, 31, 42, 0.14);
  filter: saturate(1.04);
}

.social-login .social-icon,
.social-login-row .social-button > span:first-child {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #fff;
  font-size: 19px;
  font-weight: 950;
  line-height: 1;
}

.social-login .google,
.social-login-row .google {
  border: 1px solid #dadce0;
  background: #fff;
  color: #202124;
}

.social-login .google .social-icon,
.social-login-row .google > span:first-child {
  color: #4285f4;
  box-shadow: inset 0 0 0 1px #edf0f4;
}

.social-login .facebook,
.social-login-row .facebook {
  border: 1px solid #1877f2;
  background: #1877f2;
  color: #fff;
}

.social-login .facebook .social-icon,
.social-login-row .facebook > span:first-child {
  color: #1877f2;
  background: #fff;
}

@media (max-width: 680px) {
  .social-login,
  .social-login-row {
    grid-template-columns: 1fr;
  }
}

.about-hero-card,
.polished-story {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf9, #fff6ec);
  margin-bottom: 18px;
}

.premium-about article span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff1e2;
  color: var(--orange-dark);
  font-weight: 900;
}

.story-showcase,
.services-showcase,
.faq-showcase {
  max-width: 1320px;
  margin: 0 auto;
}

.story-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 560px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.story-copy {
  padding: clamp(22px, 4vw, 42px);
  border-left: 5px solid var(--orange);
  background: #fff8ee;
}

.story-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.04;
}

.story-copy p {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.65;
}

.story-photo {
  margin: 0;
}

.story-photo picture,
.story-photo img {
  display: block;
}

.story-photo img {
  width: 100%;
  max-height: 720px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 24px 60px rgba(33, 25, 15, .18);
}

.service-feature-grid {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
}

.refined-about-intro {
  margin-bottom: 24px;
}

.refined-about-intro h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.refined-about-intro p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.service-menu {
  display: grid;
  gap: 12px;
}

.service-menu button {
  min-height: 74px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-align: left;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(33, 25, 15, .06);
}

.service-menu button.active {
  border-color: var(--orange);
  background: #fff1e2;
  color: var(--orange-dark);
}

.service-copy {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(33, 25, 15, .06);
}

.service-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.service-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.faq-showcase {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 100px;
}

.faq-intro h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 48px);
}

.faq-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.faq-mascot-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  margin-top: 28px;
  border: 1px solid #f1d9c0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 74%, rgba(232, 138, 52, .18), transparent 34%),
    linear-gradient(145deg, #fff8ef, #fffdf9);
  box-shadow: 0 18px 44px rgba(33, 25, 15, .12);
  overflow: hidden;
}

.faq-mascot-visual img {
  width: min(82%, 340px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(33, 25, 15, .18));
}

.faq-mascot-visual span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #fff;
  color: var(--orange-dark);
  font-size: 34px;
  font-weight: 950;
  box-shadow: 0 14px 30px rgba(33, 25, 15, .12);
}

.faq-mascot-visual span:nth-child(1) {
  top: 28px;
  left: 22%;
  transform: rotate(-10deg);
}

.faq-mascot-visual span:nth-child(2) {
  top: 12px;
  left: 48%;
  transform: rotate(8deg);
}

.faq-mascot-visual span:nth-child(3) {
  top: 54px;
  right: 17%;
  transform: rotate(13deg);
}

.polished-faq details {
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(33, 25, 15, .05);
}

.polished-faq summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  font-size: 18px;
}

.polished-faq summary::-webkit-details-marker {
  display: none;
}

.polished-faq summary::after {
  content: "+";
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.polished-faq details[open] summary::after {
  content: "-";
}

.polished-faq p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.product-create-form {
  margin-top: 18px;
}

.admin-hint {
  color: var(--muted);
  font-weight: 700;
}

.admin-product-editor {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf9;
}

.product-form-shell {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf9;
  box-shadow: 0 18px 38px rgba(31, 29, 42, 0.06);
}

.product-form-shell > section {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid #f1dfcc;
  border-radius: 10px;
  background: #fff;
}

.bgg-import-panel,
.youtube-import-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #f1dfcc;
  border-radius: 10px;
  background:
    linear-gradient(135deg, #fff8ee, #fffdf9);
}

.bgg-import-panel h3,
.bgg-import-panel p,
.youtube-import-panel h3,
.youtube-import-panel p {
  margin: 0;
}

.bgg-import-panel p:not(.eyebrow),
.youtube-import-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.5;
}

.bgg-search-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 10px;
}

.bgg-token-row {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 10px;
  align-items: end;
  padding: 12px;
  border: 1px dashed #e7c9a9;
  border-radius: 10px;
  background: #fffdf9;
}

.bgg-token-row label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.bgg-import-message {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.bgg-search-row input,
.bgg-token-row input {
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bgg-search-row button,
.bgg-token-row button,
.bgg-preview-card button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.bgg-results {
  display: grid;
  gap: 8px;
}

.bgg-results button {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.bgg-results span,
.bgg-preview-card span {
  color: var(--muted);
  font-weight: 800;
}

.bgg-preview-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border: 1px solid #f0d2b2;
  border-radius: 8px;
  background: #fff;
}

.bgg-preview-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 8px;
  background: #fffaf4;
}

.bgg-preview-card div {
  display: grid;
  gap: 8px;
}

.youtube-results {
  display: grid;
  gap: 10px;
}

.youtube-import-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.youtube-import-card img {
  width: 120px;
  height: 68px;
  border-radius: 7px;
  object-fit: cover;
  background: #fffaf4;
}

.youtube-import-card div {
  display: grid;
  gap: 4px;
}

.youtube-import-card span {
  color: var(--muted);
  font-weight: 800;
}

.youtube-import-card button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.product-form-shell h3 {
  margin: 0;
  color: var(--ink);
}

.compact-heading {
  align-items: center;
  margin-bottom: 16px;
}

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

.admin-product-form label,
.admin-product-form fieldset {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.admin-product-form input,
.admin-product-form select,
.admin-product-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.admin-product-form textarea {
  min-height: 110px;
  resize: vertical;
}

.admin-product-form .material-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-product-form .material-filter legend {
  flex: 0 0 100%;
}

.admin-product-form .material-filter label {
  display: inline-flex;
  width: auto;
  min-height: 32px;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf4;
  color: var(--ink);
  font-size: 13px;
  line-height: 1;
}

.admin-product-form .material-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fffaf4;
  overflow: hidden;
}

.admin-product-form .material-chip label {
  border: 0;
  background: transparent;
  padding-right: 4px;
}

.admin-product-form .material-chip-remove {
  width: 28px;
  min-width: 28px;
  height: 28px;
  min-height: 28px;
  margin-right: 3px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff1e2;
  color: var(--orange-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.admin-product-form .material-chip-remove:hover {
  background: var(--orange);
  color: #fff;
}

.admin-product-form .material-filter input {
  width: 14px;
  height: 14px;
  min-height: 14px;
  padding: 0;
  margin: 0;
  flex: 0 0 14px;
}

.admin-product-form .material-add-choice {
  display: inline-grid;
  grid-template-columns: minmax(220px, 260px) auto;
  gap: 8px;
  align-items: center;
  flex: 1 1 420px;
  min-width: min(100%, 360px);
}

.admin-product-form .material-add-choice input {
  width: 100%;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.admin-product-form .material-add-choice button {
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: #fff7ef;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.admin-product-form .checkbox-line {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #f1d7bd;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff7ed, #ffffff);
  color: var(--ink);
  font-weight: 900;
}

.admin-product-form .checkbox-line input {
  width: 22px;
  height: 22px;
  min-height: 22px;
  accent-color: var(--orange);
}

.admin-product-form .full-field {
  grid-column: 1 / -1;
}

.product-media-manager {
  display: grid;
  gap: 14px;
}

.media-url-store {
  display: none;
}

.media-manager-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto);
  gap: 12px;
  align-items: center;
}

.media-manager-head strong,
.media-manager-head span {
  display: block;
}

.media-manager-head span {
  color: var(--muted);
  font-weight: 700;
}

.media-upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  color: var(--orange-dark);
  background: #fff7ef;
  font-weight: 900;
  cursor: pointer;
}

.media-upload-actions {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 8px;
  align-items: center;
  justify-content: end;
}

.small-action {
  min-height: 42px;
  padding: 9px 12px;
  font-size: 14px;
}

.media-upload-input {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.media-upload-status {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.media-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.media-preview-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffaf4;
}

.media-preview-grid article.primary {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(231, 134, 54, 0.16);
}

.media-preview-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform .25s ease;
}

.media-preview-grid article:hover img {
  transform: scale(1.28);
}

.media-preview-grid article div {
  display: grid;
  gap: 6px;
  padding: 8px;
}

.media-preview-grid button,
.manual-url-field + button {
  min-height: 34px;
  border: 1px solid var(--orange);
  border-radius: 7px;
  background: #fff;
  color: var(--orange-dark);
  font-weight: 850;
}

.media-library-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.media-library-toolbar button,
.media-library-item button {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--orange);
  border-radius: 8px;
  background: #fff7ef;
  color: var(--orange-dark);
  font-weight: 900;
  cursor: pointer;
}

.media-library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.media-library-item {
  display: grid;
  grid-template-rows: 150px auto auto;
  gap: 8px;
  padding: 10px;
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.media-library-item img {
  width: 100%;
  height: 150px;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 6px;
  background: #fffaf4;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform .25s ease, filter .25s ease;
}

.media-library-item:hover img {
  transform: scale(1.28);
  filter: saturate(1.04);
}

.media-library-item > div {
  min-width: 0;
  align-self: start;
}

.media-library-item strong,
.media-library-item span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-library-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.media-library-item.is-used {
  border-color: #b9e5ca;
  background: #f5fcf8;
}

.media-library-item button:disabled {
  border-color: var(--line);
  background: #f2efe8;
  color: var(--muted);
  cursor: not-allowed;
}

.media-library-item button {
  align-self: end;
  width: 100%;
  justify-content: center;
  white-space: nowrap;
}

.manual-url-field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
}

.contact-card {
  display: grid;
  gap: 16px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list p {
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: #fffdf9;
}

@media (max-width: 1020px) {
  .hero-media,
  .catalogue-layout,
  .detail-layout,
  .account-layout,
  .checkout-layout,
  .contact-layout,
  .reassurance-showcase,
  .about-snapshot,
  .story-showcase,
  .service-feature-grid,
  .faq-showcase {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .filters,
  .detail-info {
    position: static;
  }

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

  .video-layout {
    grid-template-columns: 1fr;
  }

  .video-thumbs {
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 1fr);
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 900px) {
  .auth-layout,
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .loyalty-hero,
  .loyalty-rules,
  .loyalty-rewards,
  .loyalty-columns {
    grid-template-columns: 1fr;
  }

  .loyalty-balance {
    width: 100%;
  }

  .topbar {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

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

  .screen {
    padding: 22px 14px;
  }

  .notfound-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding: 30px 18px;
    border-radius: 20px;
  }

  .notfound-panel img {
    width: min(72vw, 220px);
  }

  .hero-media {
    min-height: 0;
  }

  .hero-board {
    min-height: 300px;
  }

  .quick-search,
  .bgg-search-row,
  .bgg-preview-card,
  .youtube-import-card,
  .service-strip,
  .reassurance-list,
  .steps-grid,
  .game-grid,
  .detail-extras,
  .about-content-grid,
  .checkout-delivery-grid,
  .editor-layout,
  .price-preview.large,
  .auth-layout,
  .profile-grid,
  .account-summary,
  .address-form,
  .admin-grid,
  .ops-strip,
  .automation-grid,
  .kanban-board,
  .admin-toolbar,
  .choice-grid,
  .form-grid,
  .return-grid,
  .stat-grid,
  .price-options {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-inline: 14px;
  }

  .footer-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    width: 100%;
  }

  .carousel-track {
    grid-template-columns: none;
    grid-auto-columns: minmax(245px, 82vw);
  }

  .quick-search {
    margin-top: 18px;
  }

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

  .local-seo-strip a {
    justify-content: center;
    width: 100%;
  }

  .review-header,
  .microludic-opinion,
  .review-grid,
  .review-moderation-list article {
    grid-template-columns: 1fr;
  }

  .opinion-score {
    justify-self: stretch;
  }

  .catalogue-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .catalogue-toolbar select {
    max-width: none;
  }

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

  .deposit-table div,
  .rental-timeline article,
  .checkout-line,
  .admin-table div,
  .alert-list article {
    grid-template-columns: 1fr;
  }

  .checkout-deposit {
    margin-left: 0;
  }

  .assistant-widget {
    right: 14px;
    bottom: 14px;
  }

  .editor-heading {
    display: grid;
  }
}

@media (hover: none) and (pointer: coarse) {
  button,
  .primary-action,
  .nav a,
  .account-tabs button,
  .admin-tabs button,
  input,
  select {
    min-height: 46px;
  }
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: auto 1fr auto auto;
    gap: 14px;
    padding-inline: 18px;
  }

  .brand img {
    width: 148px;
  }

  .nav {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

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

  .nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

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

@media (max-width: 900px) {
  body {
    background:
      radial-gradient(circle at 82% 4%, rgba(245, 130, 32, .12), transparent 30%),
      #fffdf9;
  }

  .screen {
    min-height: auto;
    padding: 28px 18px 92px;
  }

  .topbar {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    min-height: auto;
    padding: 10px 14px 8px;
    box-shadow: 0 14px 36px rgba(33, 25, 15, .08);
  }

  .brand img {
    width: 134px;
    max-width: 46vw;
  }

  .nav {
    grid-column: 1 / -1;
    order: 4;
    gap: 8px;
    padding: 4px 0 3px;
  }

  .nav a {
    padding: 9px 12px;
    border: 1px solid #f0deca;
    border-radius: 999px;
    background: rgba(255, 255, 255, .76);
    font-size: 14px;
    font-weight: 900;
  }

  .nav a.active {
    border-color: rgba(245, 130, 32, .45);
    box-shadow: 0 8px 18px rgba(245, 130, 32, .12);
  }

  .cart-button,
  .wishlist-button {
    min-height: 42px;
    padding: 8px 10px;
    border-radius: 999px;
    gap: 7px;
  }

  .cart-button span,
  .wishlist-button span {
    display: inline;
    font-size: 12px;
    line-height: 1;
  }

  .wishlist-button span {
    font-size: 0;
  }

  .wishlist-button span::after {
    content: "Envies";
    font-size: 12px;
  }

  .cart-button strong,
  .wishlist-button strong {
    min-width: 28px;
    height: 28px;
  }

  .hero {
    padding-top: 14px;
  }

  .hero::before {
    right: -26vw;
    top: 120px;
    width: 92vw;
    height: 92vw;
  }

  .hero::after {
    left: -18vw;
    top: 210px;
    width: 76vw;
    height: 46vw;
    border-radius: 30px;
  }

  .hero-media {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
  }

  .hero-copy {
    max-width: none;
    padding: 20px 0 4px;
  }

  .hero-copy::before {
    display: none;
  }

  .hero h1 {
    font-size: clamp(50px, 17vw, 82px);
    white-space: normal;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.45;
  }

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

  .primary-action,
  .quick-search button,
  .checkout-button,
  .full {
    width: 100%;
  }

  .mascot-hero {
    min-height: 260px;
  }

  .mascot-hero .hero-mascot {
    width: min(84vw, 420px);
  }

  .quick-search {
    grid-template-columns: 1fr;
    margin: 8px 0 26px;
    padding: 14px;
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(33, 25, 15, .08);
  }

  .quick-search label {
    font-size: 15px;
  }

  .section-heading,
  .page-heading {
    margin-bottom: 18px;
  }

  .page-heading h1,
  .compact h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .catalogue-layout {
    gap: 16px;
  }

  .filters {
    position: static;
    gap: 12px;
    padding: 14px;
    border-radius: 8px;
  }

  .filters label,
  .material-filter {
    gap: 7px;
  }

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

  .material-filter legend {
    grid-column: 1 / -1;
  }

  .catalogue-toolbar {
    gap: 10px;
  }

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

  .game-card {
    border-radius: 8px;
  }

  .game-card img {
    aspect-ratio: 4 / 3;
  }

  .game-card h3 {
    font-size: 20px;
  }

  .game-actions,
  .compare-actions {
    grid-template-columns: 1fr;
  }

  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-track {
    grid-auto-columns: minmax(245px, 74vw);
    padding-bottom: 16px;
  }

  .detail-layout {
    gap: 16px;
  }

  .detail-media {
    order: 1;
  }

  .detail-info {
    order: 2;
    padding: 16px;
    border-radius: 8px;
  }

  .detail-main-frame {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .detail-main-image {
    height: 100%;
  }

  .detail-gallery-thumbs {
    grid-auto-columns: 78px;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .video-layout {
    gap: 12px;
  }

  .video-player iframe {
    min-height: 220px;
  }

  .availability-calendar {
    padding: 12px;
  }

  .availability-calendar button,
  .availability-calendar span {
    min-height: 42px;
  }

  .account-layout {
    gap: 14px;
  }

  .account-tabs,
  .admin-tabs,
  .about-tabs {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 2px 0 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .account-tabs::-webkit-scrollbar,
  .admin-tabs::-webkit-scrollbar,
  .about-tabs::-webkit-scrollbar {
    display: none;
  }

  .account-tabs button,
  .admin-tabs button,
  .about-tabs button {
    flex: 0 0 auto;
    min-height: 44px;
    border-radius: 999px;
    white-space: nowrap;
  }

  .account-tabs .logout-tab {
    margin-top: 0;
  }

  .account-panel,
  .admin-panel,
  .contact-card {
    padding: 16px;
    border-radius: 8px;
  }

  .auth-layout > section {
    padding: 18px;
  }

  .checkout-layout {
    gap: 14px;
  }

  body {
    overflow-x: hidden;
  }

  .admin-split {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .admin-split section,
  .admin-panel,
  .checkout-block,
  .checkout-summary,
  .checkout-delivery-grid,
  .checkout-delivery-grid > div {
    min-width: 0;
    max-width: 100%;
  }

  .admin-split .admin-list-row {
    grid-template-columns: 1fr;
    gap: 8px 12px;
    align-items: start;
  }

  .admin-split .admin-list-row strong {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .admin-split .admin-list-row span,
  .admin-split .admin-list-row b {
    display: block;
    width: 100%;
    min-width: 0;
    grid-column: auto;
    overflow-wrap: anywhere;
  }

  .admin-tool-button {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .checkout-delivery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .checkout-auth-form,
  .checkout-auth-switch {
    grid-template-columns: 1fr;
  }

  .compare-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    max-width: none;
    transform: none;
    flex-direction: column;
    align-items: stretch;
  }

  .compare-bar .small-action {
    width: 100%;
  }

  .admin-notification-center {
    margin-left: 0;
    width: 100%;
  }

  .admin-notification-bell {
    width: 100%;
  }

  .admin-notification-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 96px;
    width: auto;
    max-height: 70vh;
    overflow: auto;
  }

  .choice-card.compact {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 58px;
    max-width: 100%;
    padding: 12px;
    overflow: hidden;
  }

  .choice-card.compact input[type="radio"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    transform: none !important;
  }

  .choice-card.compact span {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
  }

  .choice-card.compact strong {
    min-width: 0;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .checkout-line {
    align-items: start;
  }

  .cart-drawer {
    background: rgba(24, 20, 14, .5);
  }

  .cart-panel {
    width: 100vw;
    padding: 18px 16px max(22px, env(safe-area-inset-bottom));
    border-radius: 18px 18px 0 0;
    align-self: end;
    height: min(92vh, 760px);
  }

  .admin-backoffice {
    margin-inline: -2px;
  }

  .admin-module-grid,
  .admin-tool-grid,
  .delivery-admin-grid,
  .delivery-option-row,
  .stat-grid,
  .ops-strip,
  .kanban-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bo-table-scroll {
    margin-inline: -16px;
    padding-inline: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .bo-table {
    min-width: 760px;
  }

  .admin-toolbar {
    gap: 10px;
  }

  .admin-toolbar input,
  .admin-toolbar select,
  .admin-toolbar button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .topbar {
    padding-inline: 12px;
  }

  .brand img {
    width: 116px;
  }

  .cart-button,
  .wishlist-button {
    min-height: 40px;
    padding: 7px 9px;
    gap: 6px;
  }

  .cart-button span,
  .wishlist-button span::after {
    font-size: 11px;
  }

  .cart-button strong,
  .wishlist-button strong {
    min-width: 24px;
    height: 24px;
    font-size: 13px;
  }

  .nav {
    margin-inline: -4px;
    padding-inline: 2px;
  }

  .screen {
    padding: 22px 12px 86px;
  }

  .hero h1 {
    font-size: clamp(46px, 18vw, 70px);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .mascot-hero {
    min-height: 220px;
  }

  .quick-search input,
  .quick-search button,
  input,
  select,
  textarea {
    font-size: 16px;
  }

  .service-card,
  .reassurance-card,
  .contact-card,
  .filters,
  .account-panel,
  .admin-panel,
  .legal-editor,
  .checkout-summary,
  .delivery-box {
    padding: 14px;
  }

  .game-grid {
    grid-template-columns: 1fr;
  }

  .carousel-track {
    grid-auto-columns: minmax(245px, 86vw);
  }

  .material-filter {
    grid-template-columns: 1fr;
  }

  .detail-info h2,
  .contact-card h2,
  .account-panel h2 {
    font-size: 24px;
  }

  .price-options button,
  .duration-options button,
  .choice-grid button {
    min-height: 52px;
  }

  .video-player iframe {
    min-height: 190px;
  }

  .availability-calendar button,
  .availability-calendar span {
    min-height: 38px;
    font-size: 13px;
  }

  .admin-module-grid,
  .admin-tool-grid,
  .stat-grid,
  .ops-strip,
  .kanban-board,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .admin-split section,
  .admin-panel,
  .checkout-block,
  .checkout-summary {
    min-width: 0;
  }

  .admin-split .admin-list-row {
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    align-items: start;
  }

  .admin-split .admin-list-row strong {
    overflow-wrap: anywhere;
  }

  .admin-split .admin-list-row span {
    grid-column: 1 / -1;
  }

  .checkout-delivery-grid {
    gap: 12px;
  }

  .choice-card.compact {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 12px;
  }

  .choice-card.compact input[type="radio"] {
    width: 18px;
    height: 18px;
    min-height: 18px;
    transform: none;
  }

  .choice-card.compact span {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
  }

  .choice-card.compact strong {
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .promo-code-row {
    grid-template-columns: 1fr;
  }

  .promo-row-actions {
    justify-content: stretch;
  }

  .promo-row-actions button,
  .promo-actions button {
    width: 100%;
  }

  .modal-card {
    width: min(100%, 96vw);
    max-height: 88vh;
    padding: 16px;
  }

  .assistant-widget {
    right: 12px;
    bottom: 12px;
  }

  .assistant-panel {
    width: calc(100vw - 24px);
    max-height: min(74vh, 620px);
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .footer-topline {
    display: none;
  }

  .footer-brand img {
    width: 150px;
  }
}
/* Anti-bot honeypot: visible to simple bots, invisible to real visitors. */
.bot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
