:root {
  color-scheme: dark;
  --bg: #07090b;
  --bg-soft: #0d1115;
  --surface: #11161b;
  --surface-strong: #161d23;
  --line: #27313a;
  --line-soft: rgba(237, 159, 73, 0.2);
  --text: #f7f5ef;
  --muted: #aeb7bd;
  --muted-strong: #dde3e6;
  --orange: #f97316;
  --orange-bright: #f59e0b;
  --orange-soft: #ffd08a;
  --gold: #f4c76f;
  --green: #14b8a6;
  --teal: #2dd4bf;
  --danger: #ff4d36;
  --success: #39d98a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.12), transparent 34rem),
    radial-gradient(circle at top right, rgba(45, 212, 191, 0.08), transparent 28rem),
    linear-gradient(180deg, #050607 0%, var(--bg) 46%, #0b0f12 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 191, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

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

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

button,
select,
input,
textarea {
  color: var(--text);
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(244, 199, 111, 0.2);
  background: rgba(7, 9, 11, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.header-brand-area {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-wrap: wrap;
}

.ssl-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  border: 1px solid rgba(57, 217, 138, 0.34);
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.1);
  color: #c9fbe3;
  padding: 0 12px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 22px rgba(57, 217, 138, 0.08);
}

.ssl-badge svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border: 2px solid rgba(244, 199, 111, 0.78);
  border-radius: 50%;
  background: radial-gradient(circle, #151b20 0%, #050607 70%);
  object-fit: cover;
  padding: 2px;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12), 0 0 28px rgba(249, 115, 22, 0.28);
}

.brand span {
  overflow-wrap: anywhere;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  min-width: 0;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav .admin-link {
  border-color: rgba(45, 212, 191, 0.36);
  background: rgba(45, 212, 191, 0.08);
  color: var(--text);
  outline: none;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(244, 199, 111, 0.18);
  background: #050607;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  pointer-events: none;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
}

.hero-actions {
  position: relative;
  z-index: 3;
  display: flex;
  width: min(92%, var(--max));
  margin: 0 auto;
  padding: 16px 0 22px;
  gap: 12px;
  flex-wrap: wrap;
  transform: none;
}

.primary-button,
.ghost-button,
.danger-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.primary-button {
  border: 1px solid rgba(244, 199, 111, 0.76);
  background: linear-gradient(135deg, #f97316, #f4b23e);
  color: #15100a;
  padding: 0 22px;
  box-shadow: 0 12px 34px rgba(249, 115, 22, 0.24);
}

.primary-button:hover,
.ghost-button:hover,
.danger-button:hover,
.icon-button:hover,
.primary-button:focus-visible,
.ghost-button:focus-visible,
.danger-button:focus-visible,
.icon-button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.ghost-button {
  border: 1px solid rgba(244, 199, 111, 0.34);
  background: rgba(13, 17, 21, 0.76);
  color: var(--text);
  padding: 0 20px;
}

.danger-button {
  border: 1px solid rgba(255, 77, 54, 0.6);
  background: rgba(255, 77, 54, 0.12);
  color: #ffd2cc;
  padding: 0 18px;
}

.compact {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.86rem;
}

.full {
  width: 100%;
}

.trust-strip,
.store-story,
.category-showcase-section,
.catalog-section,
.reviews-section,
.about-section,
.tracking-section,
.delivery-band,
.site-footer,
.admin-main {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
  box-shadow: var(--shadow);
}

.trust-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px 14px;
  min-width: 0;
  min-height: 112px;
  padding: 18px;
  background: rgba(17, 22, 27, 0.94);
}

.trust-strip strong {
  align-self: end;
  text-transform: uppercase;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.trust-strip small {
  grid-column: 2;
  align-self: start;
  color: var(--muted);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.store-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: clamp(34px, 6vw, 64px) 0 0;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.story-copy h2,
.tracking-panel h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(1.45rem, 2.9vw, 2.55rem);
  line-height: 1.14;
  text-transform: none;
  overflow-wrap: anywhere;
}

.story-copy p:not(.eyebrow),
.tracking-panel p {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.story-grid article {
  min-height: 230px;
  padding: 18px;
  border: 1px solid rgba(244, 199, 111, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(249, 115, 22, 0.16), rgba(45, 212, 191, 0.11)),
    linear-gradient(180deg, rgba(18, 23, 29, 0.98), rgba(7, 9, 11, 0.92)),
    var(--surface);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.story-grid strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(57, 217, 138, 0.52);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.92), rgba(244, 199, 111, 0.92));
  color: #16100a;
  font-size: 1.18rem;
  box-shadow: 0 10px 28px rgba(249, 115, 22, 0.24);
}

.story-grid h3 {
  margin: 18px 0 8px;
  font-size: 1.15rem;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--text);
}

.story-grid p {
  margin: 0;
  color: var(--muted-strong);
}

.line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  grid-row: span 2;
  border: 1px solid rgba(244, 199, 111, 0.5);
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.11);
  color: var(--orange-bright);
}

.line-icon svg,
.search-box svg,
.icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.catalog-section {
  padding: clamp(36px, 7vw, 72px) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-heading h1,
.delivery-band h2,
.admin-hero h1,
.panel-heading h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

.section-heading h1,
.admin-hero h1 {
  max-width: 780px;
  font-size: clamp(1.9rem, 4.8vw, 3.6rem);
  text-transform: uppercase;
}

.section-heading p,
.admin-hero p,
.delivery-band p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--orange-bright);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
  gap: 12px;
  margin-bottom: 16px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(244, 199, 111, 0.22);
  border-radius: 8px;
  background: rgba(17, 22, 27, 0.86);
  color: var(--muted);
}

.search-box input,
.catalog-toolbar select,
.product-form input,
.product-form textarea,
.product-form select,
.settings-form input {
  width: 100%;
  border: 1px solid rgba(244, 199, 111, 0.22);
  background: rgba(7, 9, 11, 0.74);
  color: var(--text);
}

.search-box input {
  min-width: 0;
  border: 0;
  background: transparent;
  outline: none;
}

.catalog-toolbar select {
  min-height: 52px;
  padding: 0 14px;
  border-radius: 8px;
}

.category-row {
  display: flex;
  gap: 10px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.subcategory-row {
  margin-top: 10px;
}

.category-row button {
  flex: 0 0 auto;
  min-height: 40px;
  border: 1px solid rgba(244, 199, 111, 0.2);
  border-radius: 999px;
  background: rgba(17, 22, 27, 0.86);
  color: var(--muted-strong);
  padding: 0 16px;
  font-weight: 900;
}

.subcategory-row button {
  min-height: 36px;
  color: var(--muted);
  font-size: 0.86rem;
}

.category-row button.is-active {
  border-color: rgba(45, 212, 191, 0.48);
  background: rgba(45, 212, 191, 0.1);
  color: var(--text);
}

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

.product-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(244, 199, 111, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(45, 212, 191, 0.05), transparent 40%),
    rgba(17, 22, 27, 0.94);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.product-card:hover .product-media img {
  transform: scale(1.05);
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background:
    radial-gradient(circle at 50% 24%, rgba(249, 115, 22, 0.16), transparent 48%),
    #080b0e;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border: 1px solid rgba(244, 199, 111, 0.62);
  border-radius: 999px;
  background: rgba(7, 9, 11, 0.78);
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.product-badges span {
  max-width: 100%;
  padding: 6px 9px;
  border: 1px solid rgba(244, 199, 111, 0.62);
  border-radius: 999px;
  background: rgba(7, 9, 11, 0.82);
  color: var(--orange-soft);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.1;
}

.product-body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

.product-body h3 {
  min-height: 3.2rem;
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.product-body p {
  margin: 0;
  color: var(--muted);
}

.product-description {
  display: grid;
  gap: 8px;
}

.product-description p {
  min-height: 3.9em;
  line-height: 1.3;
}

.product-description button {
  width: max-content;
  max-width: 100%;
  border: 0;
  background: transparent;
  color: var(--gold);
  padding: 0;
  font-size: 0.84rem;
  font-weight: 950;
  text-align: left;
}

.product-review-box {
  display: grid;
  gap: 7px;
  padding: 9px;
  border: 1px solid rgba(244, 199, 111, 0.18);
  border-radius: 8px;
  background: rgba(7, 9, 11, 0.38);
}

.product-review-box button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 8px;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--muted-strong);
  padding: 0;
  font-weight: 950;
  text-align: left;
}

.product-review-box button strong {
  color: var(--gold);
  font-size: 0.82rem;
}

.product-review-box button small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
}

.product-review-box button span {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--teal);
  font-size: 0.74rem;
}

.product-review-content {
  display: grid;
  gap: 4px;
  color: var(--muted-strong);
  font-size: 0.8rem;
}

.product-review-content p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-rating {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.highlight-section,
.flash-section,
.faq-section {
  padding: clamp(34px, 7vw, 70px) 0 0;
}

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

.compact-card .product-body h3 {
  min-height: 2.8rem;
}

.compact-card .card-actions {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) repeat(3, 42px);
}

.flash-countdown {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(244, 199, 111, 0.28);
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--muted-strong);
  font-weight: 900;
}

.flash-countdown strong {
  color: var(--orange-soft);
}

.flash-countdown small {
  color: var(--muted);
}

.category-showcase-shell,
.category-filter-shell {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 8px;
  align-items: center;
}

.category-showcase-shell .category-showcase,
.category-filter-shell .category-row {
  overflow-x: auto;
  scroll-behavior: smooth;
}

.scroll-arrow {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244, 199, 111, 0.22);
  border-radius: 999px;
  background: rgba(17, 22, 27, 0.82);
  color: var(--muted-strong);
}

.scroll-arrow svg,
.assistant-float svg,
.assistant-header svg,
.mobile-bottom-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faq-list details {
  border: 1px solid rgba(244, 199, 111, 0.18);
  border-radius: 8px;
  background: rgba(17, 22, 27, 0.74);
  padding: 14px 16px;
}

.faq-list summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted-strong);
}

.assistant-float {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid rgba(45, 212, 191, 0.42);
  border-radius: 999px;
  background: rgba(7, 9, 11, 0.94);
  color: var(--text);
  padding: 0 14px;
  font-weight: 950;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.whatsapp-quick {
  position: fixed;
  right: 18px;
  bottom: 140px;
  z-index: 89;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  max-width: calc(100vw - 36px);
  padding: 0 13px;
  border: 1px solid rgba(57, 217, 138, 0.36);
  border-radius: 999px;
  background: rgba(7, 9, 11, 0.9);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.whatsapp-quick[hidden] {
  display: none;
}

.whatsapp-quick svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.assistant-avatar {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--teal));
  color: #090b0d;
  font-size: 0.9rem;
  font-weight: 950;
}

.assistant-panel {
  position: fixed;
  right: 18px;
  bottom: 140px;
  z-index: 91;
  width: min(360px, calc(100vw - 36px));
  overflow: hidden;
  border: 1px solid rgba(244, 199, 111, 0.22);
  border-radius: 8px;
  background: rgba(7, 9, 11, 0.97);
  color: var(--text);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.assistant-panel.is-open {
  opacity: 1;
  transform: translateY(0);
}

.assistant-header {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 32px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid rgba(244, 199, 111, 0.14);
}

.assistant-header strong,
.assistant-header small {
  display: block;
}

.assistant-header small {
  color: var(--muted);
  font-size: 0.78rem;
}

.assistant-header button {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(244, 199, 111, 0.18);
  border-radius: 999px;
  background: rgba(17, 22, 27, 0.82);
  color: var(--muted-strong);
}

.assistant-body {
  display: grid;
  gap: 12px;
  padding: 13px;
}

.assistant-body p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.9rem;
  line-height: 1.35;
}

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

.assistant-lead-form {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(244, 199, 111, 0.16);
}

.assistant-lead-form[hidden] {
  display: none;
}

.assistant-lead-form strong {
  color: var(--text);
  font-size: 0.92rem;
}

.assistant-lead-form span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.assistant-lead-form input {
  width: 100%;
  min-height: 38px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.86rem;
}

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

.assistant-quick-actions button {
  min-height: 38px;
  border: 1px solid rgba(244, 199, 111, 0.18);
  border-radius: 8px;
  background: rgba(17, 22, 27, 0.82);
  color: var(--muted-strong);
  padding: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-align: left;
}

.mobile-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 88;
  display: none;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid rgba(244, 199, 111, 0.2);
  background: rgba(7, 9, 11, 0.96);
  backdrop-filter: blur(14px);
}

.mobile-bottom-nav a {
  display: grid;
  place-items: center;
  gap: 3px;
  min-height: 56px;
  color: var(--muted-strong);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.product-review-content strong {
  color: var(--muted-strong);
  font-size: 0.82rem;
}

.product-review-content p {
  min-height: 0;
  font-size: 0.84rem;
}

.pagination-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.pagination-row button {
  min-width: 38px;
  min-height: 38px;
  border: 1px solid rgba(244, 199, 111, 0.24);
  border-radius: 999px;
  background: rgba(17, 22, 27, 0.86);
  color: var(--muted-strong);
  font-weight: 950;
}

.pagination-row button.is-active {
  border-color: rgba(57, 217, 138, 0.52);
  background: rgba(20, 184, 166, 0.16);
  color: var(--text);
}

.category-pill {
  width: max-content;
  max-width: 100%;
  padding: 5px 9px;
  border: 1px solid rgba(244, 199, 111, 0.2);
  border-radius: 999px;
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.price {
  color: var(--text);
  font-size: 1.48rem;
  font-weight: 950;
}

.old-price {
  color: #8f877d;
  font-weight: 800;
  text-decoration: line-through;
}

.product-meta {
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(4, 46px);
  gap: 10px;
  margin-top: auto;
}

.favorite-button svg {
  fill: transparent;
}

.favorite-button.is-active {
  border-color: rgba(249, 115, 22, 0.58);
  background: rgba(249, 115, 22, 0.16);
  color: var(--orange-soft);
}

.favorite-button.is-active svg {
  fill: currentColor;
}

.icon-button {
  width: 46px;
  min-width: 46px;
  border: 1px solid rgba(244, 199, 111, 0.28);
  background: rgba(45, 212, 191, 0.07);
  color: var(--text);
  padding: 0;
}

.empty-state {
  margin: 28px 0 0;
  padding: 24px;
  border: 1px solid rgba(244, 199, 111, 0.22);
  border-radius: 8px;
  background: rgba(17, 22, 27, 0.88);
  color: var(--muted);
  text-align: center;
}

.tracking-section {
  padding: 0 0 24px;
}

.tracking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 18px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(244, 199, 111, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.11), rgba(17, 22, 27, 0.9)),
    var(--surface);
  box-shadow: var(--shadow);
}

.tracking-panel > div {
  min-width: 0;
}

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

.tracking-form label {
  display: grid;
  gap: 7px;
}

.tracking-form span {
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 900;
}

.tracking-form input {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(244, 199, 111, 0.26);
  border-radius: 8px;
  background: rgba(7, 9, 11, 0.78);
  color: var(--text);
  outline: none;
}

.tracking-form input:focus {
  border-color: rgba(45, 212, 191, 0.58);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.11);
}

.tracking-panel > .ghost-button {
  grid-column: 2;
  justify-self: stretch;
}

.delivery-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 48px;
  padding: 28px;
  border: 1px solid rgba(244, 199, 111, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(45, 212, 191, 0.08), rgba(17, 22, 27, 0.96)),
    var(--surface);
}

.delivery-band h2 {
  max-width: 720px;
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.delivery-copy {
  min-width: 0;
}

.delivery-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 12px;
  color: var(--muted);
}

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

.delivery-timeline article {
  display: grid;
  gap: 8px;
  min-width: 0;
  min-height: 150px;
  padding: 16px;
  border: 1px solid rgba(244, 199, 111, 0.2);
  border-radius: 8px;
  background: rgba(7, 9, 11, 0.52);
}

.delivery-timeline strong {
  color: var(--gold);
  font-size: 0.86rem;
}

.delivery-timeline span {
  color: var(--text);
  font-weight: 900;
  line-height: 1.15;
}

.delivery-timeline small {
  color: var(--muted);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.delivery-list {
  display: flex;
  align-items: center;
  grid-column: 1 / -1;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.delivery-list span {
  padding: 8px 11px;
  border: 1px solid rgba(244, 199, 111, 0.22);
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 900;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 38px;
  border-top: 1px solid rgba(244, 199, 111, 0.16);
}

.footer-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.social-links:empty {
  display: none;
}

.social-link,
.social-links a,
.social-links > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(244, 199, 111, 0.24);
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.06);
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 900;
}

.social-link svg,
.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.social-link.is-disabled {
  opacity: 0.56;
}

.audio-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 75;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  max-width: calc(100vw - 36px);
  padding: 0 14px;
  border: 1px solid rgba(244, 199, 111, 0.34);
  border-radius: 999px;
  background: rgba(7, 9, 11, 0.88);
  color: var(--muted-strong);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.audio-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.audio-toggle[aria-pressed="true"] {
  border-color: rgba(45, 212, 191, 0.46);
  background: rgba(45, 212, 191, 0.12);
  color: var(--text);
}

.top-product-toggle {
  display: none !important;
  border-color: rgba(244, 199, 111, 0.52);
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.18), rgba(20, 184, 166, 0.12)),
    rgba(7, 9, 11, 0.9);
  color: var(--text);
}

.top-product-toggle:hover,
.top-product-toggle:focus-visible {
  border-color: rgba(57, 217, 138, 0.55);
  background: rgba(20, 184, 166, 0.16);
  outline: none;
}

.purchase-popup {
  position: fixed;
  left: 18px;
  bottom: 74px;
  z-index: 76;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 8px;
  width: min(310px, calc(100vw - 36px));
  padding: 10px 11px;
  border: 1px solid rgba(244, 199, 111, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(7, 9, 11, 0.94)),
    var(--surface);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.36);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.purchase-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.purchase-popup strong,
.purchase-popup span,
.purchase-popup small {
  display: block;
}

.purchase-popup strong {
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.purchase-popup span {
  margin-top: 3px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.purchase-popup small {
  margin-top: 5px;
  color: var(--muted);
}

.purchase-popup a {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 6px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 950;
}

.purchase-popup button {
  grid-column: 2;
  grid-row: 1;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(244, 199, 111, 0.2);
  border-radius: 999px;
  background: rgba(7, 9, 11, 0.58);
  color: var(--muted-strong);
}

.purchase-popup button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.product-dialog {
  width: min(860px, calc(100% - 28px));
  max-height: calc(100dvh - 24px);
  overflow: auto;
  border: 1px solid rgba(244, 199, 111, 0.24);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  padding: 0;
  box-shadow: var(--shadow);
}

.share-dialog {
  width: min(560px, calc(100% - 28px));
  border: 1px solid rgba(244, 199, 111, 0.24);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  padding: 0;
  box-shadow: var(--shadow);
}

.share-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.close-share-dialog {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.62);
}

.share-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.share-panel h2,
.share-panel p {
  margin: 0;
}

.share-panel h2 {
  padding-right: 44px;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.share-panel p:not(.eyebrow) {
  color: var(--muted);
}

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

.share-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(244, 199, 111, 0.24);
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.06);
  color: var(--muted-strong);
  padding: 0 13px;
  font-weight: 900;
}

button.share-option {
  width: 100%;
}

.share-option svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.mini-notice {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 95;
  max-width: calc(100vw - 36px);
  padding: 12px 16px;
  border: 1px solid rgba(244, 199, 111, 0.38);
  border-radius: 999px;
  background: rgba(7, 9, 11, 0.94);
  color: var(--text);
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
  opacity: 0;
  transform: translate(-50%, 12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mini-notice.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.close-dialog {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.62);
}

.dialog-product {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
}

.dialog-product img {
  width: 100%;
  height: min(62vh, 440px);
  min-height: 260px;
  object-fit: contain;
  background: #07090b;
}

.dialog-product-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}

.dialog-product-info h2 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.05;
}

.dialog-description {
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.dialog-description p,
.dialog-description ul {
  margin: 0;
}

.dialog-description ul {
  display: grid;
  gap: 8px;
  padding-left: 18px;
}

.dialog-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.dialog-info-grid article {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(244, 199, 111, 0.16);
  border-radius: 8px;
  background: rgba(7, 9, 11, 0.34);
}

.dialog-info-grid strong,
.related-products > strong {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.dialog-info-grid span {
  color: var(--muted-strong);
  font-size: 0.84rem;
  line-height: 1.35;
}

.dialog-review {
  border: 1px solid rgba(244, 199, 111, 0.2);
  border-radius: 8px;
  background: rgba(7, 9, 11, 0.32);
  padding: 12px;
  color: var(--muted-strong);
}

.dialog-review summary {
  color: var(--gold);
  cursor: pointer;
  font-weight: 950;
}

.dialog-review p {
  margin: 8px 0 0;
}

.dialog-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.dialog-action-grid .favorite-button {
  width: 100%;
  min-height: 44px;
  border-radius: 999px;
}

.dialog-action-grid .favorite-button span {
  display: inline;
}

.related-products {
  display: grid;
  gap: 8px;
  padding-top: 4px;
}

.related-products button {
  min-height: 36px;
  border: 1px solid rgba(244, 199, 111, 0.18);
  border-radius: 8px;
  background: rgba(45, 212, 191, 0.06);
  color: var(--muted-strong);
  padding: 8px 10px;
  font-weight: 850;
  text-align: left;
}

.settings-subpanel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(244, 199, 111, 0.16);
  border-radius: 8px;
  background: rgba(7, 9, 11, 0.34);
}

.settings-subpanel h3 {
  margin: 0;
  font-size: 1.08rem;
}

.settings-save-row {
  display: flex;
  justify-content: flex-end;
  padding-top: 2px;
}

.compact-subpanel {
  padding: 13px;
}

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

.taxonomy-grid h4 {
  margin: 0 0 8px;
  color: var(--muted-strong);
}

.taxonomy-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.taxonomy-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(244, 199, 111, 0.22);
  border-radius: 8px;
  background: rgba(17, 22, 27, 0.82);
  padding: 7px;
}

.taxonomy-item span {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 950;
}

.taxonomy-item button,
.taxonomy-list button {
  min-height: 30px;
  border: 1px solid rgba(244, 199, 111, 0.18);
  border-radius: 999px;
  background: rgba(7, 9, 11, 0.52);
  color: var(--muted-strong);
  padding: 0 9px;
  font-size: 0.74rem;
  font-weight: 900;
}

.taxonomy-item button:last-child {
  color: var(--danger);
}

.range-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.settings-form input[type="range"] {
  accent-color: var(--orange);
}

.admin-main {
  padding: 30px 0 56px;
}

.admin-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 30px;
}

.admin-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 12px;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 18px;
  align-items: start;
}

.metrics-panel {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.metrics-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.metrics-actions span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.metrics-filters {
  display: grid;
  grid-template-columns: minmax(120px, 180px) minmax(120px, 180px) minmax(0, 1fr);
  gap: 12px;
  align-items: end;
}

.metrics-filters label {
  display: grid;
  gap: 6px;
}

.metrics-filters span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.period-summary {
  min-height: 46px;
  border: 1px solid rgba(244, 199, 111, 0.16);
  border-radius: 8px;
  background: rgba(7, 9, 11, 0.3);
  color: var(--muted-strong);
  padding: 12px;
  font-weight: 800;
}

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

.metrics-summary article,
.metrics-card {
  min-width: 0;
  border: 1px solid rgba(244, 199, 111, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(45, 212, 191, 0.055), rgba(7, 9, 11, 0.36)),
    rgba(7, 9, 11, 0.42);
}

.metrics-summary article {
  display: grid;
  gap: 6px;
  min-height: 136px;
  padding: 16px;
}

.metrics-summary span {
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metrics-summary strong {
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
}

.metrics-summary small,
.metrics-card p,
.event-list small {
  color: var(--muted);
}

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

.commercial-panel {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
}

.commercial-menu {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.commercial-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(244, 199, 111, 0.2);
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.06);
  color: var(--muted-strong);
  font-size: 0.8rem;
  font-weight: 900;
}

.commercial-menu a:hover,
.commercial-menu a:focus-visible {
  border-color: rgba(45, 212, 191, 0.42);
  color: var(--text);
  outline: none;
}

.commercial-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.commercial-alerts {
  grid-column: span 3;
}

.commercial-list span {
  align-items: flex-start;
}

.metrics-card {
  padding: 18px;
}

.metrics-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.funnel-list,
.day-list,
.event-list {
  display: grid;
  gap: 10px;
}

.funnel-list span,
.day-list span,
.event-list span {
  display: block;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(244, 199, 111, 0.15);
  border-radius: 8px;
  background: rgba(7, 9, 11, 0.36);
  color: var(--muted-strong);
  overflow-wrap: anywhere;
}

.funnel-list strong,
.day-list strong,
.event-list strong {
  color: var(--gold);
}

.event-list small {
  display: block;
  margin-top: 2px;
}

.metrics-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(244, 199, 111, 0.16);
  border-radius: 8px;
}

.table-heading {
  margin: 0;
  padding: 16px 16px 0;
}

.metrics-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.metrics-table th,
.metrics-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(244, 199, 111, 0.12);
  text-align: left;
  vertical-align: top;
}

.metrics-table th {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.metrics-table td {
  color: var(--muted-strong);
  font-weight: 850;
}

.metrics-table td:first-child {
  min-width: 260px;
}

.metrics-table td strong,
.metrics-table td span {
  display: block;
}

.metrics-table td strong {
  color: var(--text);
}

.metrics-table td span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
}

.admin-panel {
  border: 1px solid rgba(244, 199, 111, 0.22);
  border-radius: 8px;
  background: rgba(17, 22, 27, 0.92);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.product-form,
.admin-panel {
  padding: 18px;
}

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

.panel-heading h2 {
  font-size: clamp(1.28rem, 2.4vw, 1.9rem);
}

.product-form,
.settings-form {
  display: grid;
  gap: 14px;
}

.product-form label:not(.upload-box):not(.check-label),
.settings-form label {
  display: grid;
  gap: 7px;
}

.product-form label span,
.settings-form label span {
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 900;
}

.product-form input,
.product-form textarea,
.settings-form input,
.settings-form select {
  min-height: 46px;
  padding: 11px 12px;
  border-radius: 8px;
  outline: none;
}

.product-form textarea,
.settings-form textarea {
  min-height: 112px;
  resize: vertical;
}

.product-form input:focus,
.product-form textarea:focus,
.settings-form select:focus,
.settings-form textarea:focus,
.settings-form input:focus,
.catalog-toolbar select:focus {
  border-color: rgba(45, 212, 191, 0.58);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.11);
}

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

.upload-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 74px;
  border: 1px dashed rgba(244, 199, 111, 0.42);
  border-radius: 8px;
  background: rgba(45, 212, 191, 0.06);
  cursor: pointer;
}

.upload-box input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.upload-icon {
  display: inline-flex;
  color: var(--orange-bright);
}

.upload-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.image-preview {
  overflow: hidden;
  border: 1px solid rgba(244, 199, 111, 0.2);
  border-radius: 8px;
  background: #07090b;
}

.image-preview img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: cover;
}

.logo-preview {
  display: grid;
  place-items: center;
  min-height: 160px;
  overflow: hidden;
  border: 1px solid rgba(244, 199, 111, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(249, 115, 22, 0.12), transparent 54%),
    #07090b;
}

.logo-preview img {
  width: min(190px, 72%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(249, 115, 22, 0.26);
}

.toggle-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.check-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
}

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

.count-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 34px;
  border: 1px solid rgba(244, 199, 111, 0.34);
  border-radius: 999px;
  color: var(--orange-soft);
  font-weight: 950;
}

.admin-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.admin-product-list {
  display: grid;
  gap: 10px;
  max-height: 760px;
  overflow: auto;
  padding-right: 3px;
}

.admin-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(244, 199, 111, 0.16);
  border-radius: 8px;
  background: rgba(7, 9, 11, 0.42);
}

.admin-item img {
  width: 78px;
  height: 78px;
  border-radius: 7px;
  object-fit: cover;
  background: #07090b;
}

.admin-item h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.admin-item p {
  margin: 4px 0 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-item-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.status-dot::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  content: "";
}

.status-dot.is-hidden::before {
  background: var(--danger);
}

.preview-panel {
  margin-top: 18px;
}

.settings-panel {
  margin-top: 18px;
}

.store-preview {
  width: 100%;
  height: 760px;
  border: 1px solid rgba(244, 199, 111, 0.18);
  border-radius: 8px;
  background: #07090b;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: min(420px, calc(100vw - 36px));
  padding: 13px 16px;
  border: 1px solid rgba(244, 199, 111, 0.48);
  border-radius: 8px;
  background: rgba(13, 17, 21, 0.95);
  color: var(--text);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

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

.promo-marquee {
  position: relative;
  z-index: 60;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--promo-bg, #f97316);
  color: var(--promo-color, #11100d);
}

.promo-marquee-track {
  display: flex;
  width: max-content;
  animation: promo-scroll var(--promo-speed, 22s) linear infinite;
}

.promo-marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 34px;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes promo-scroll {
  from {
    transform: translateX(0);
  }

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

.hero {
  display: block;
  min-height: 0;
  background: #050607;
}

.hero img {
  position: static;
  width: 100%;
  max-height: min(54vw, 560px);
  aspect-ratio: 1920 / 680;
  height: auto;
  object-fit: cover;
  object-position: center;
  opacity: 1;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-content {
  position: static;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(244, 199, 111, 0.22);
  border-bottom: 1px solid rgba(244, 199, 111, 0.18);
  background: rgba(5, 6, 7, 0.96);
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content > p:not(.eyebrow) {
  display: none;
}

.hero-content .hero-actions {
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
  padding: 14px 0 16px;
  justify-content: center;
}

.category-showcase-section,
.reviews-section,
.about-section {
  padding: clamp(36px, 7vw, 72px) 0 0;
}

.section-heading h2,
.about-section h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3.6vw, 2.75rem);
  line-height: 1.08;
}

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

.category-showcase-shell .category-showcase {
  grid-auto-flow: column;
  grid-auto-columns: minmax(142px, 1fr);
  grid-template-columns: none;
}

.category-showcase button {
  display: grid;
  gap: 10px;
  min-height: 146px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(244, 199, 111, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(249, 115, 22, 0.1), rgba(7, 9, 11, 0.34)),
    rgba(17, 22, 27, 0.88);
  color: var(--text);
  text-align: left;
}

.category-showcase svg,
.category-row button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.category-showcase strong {
  overflow-wrap: anywhere;
}

.category-showcase span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

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

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

.review-card {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 18px;
  border: 1px solid rgba(244, 199, 111, 0.2);
  border-radius: 8px;
  background: rgba(17, 22, 27, 0.92);
}

.review-stars,
.review-card strong {
  color: var(--gold);
  font-weight: 950;
}

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

.review-card span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 42px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(244, 199, 111, 0.16);
}

.about-section p {
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
}

.footer-brand-block {
  display: grid;
  gap: 6px;
}

.footer-brand-block a {
  color: var(--gold);
  font-weight: 900;
}

.footer-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links button {
  min-height: 34px;
  border: 1px solid rgba(244, 199, 111, 0.22);
  border-radius: 999px;
  background: rgba(7, 9, 11, 0.46);
  color: var(--muted-strong);
  padding: 0 12px;
  font-size: 0.82rem;
  font-weight: 900;
}

.content-dialog {
  width: min(620px, calc(100% - 28px));
  border: 1px solid rgba(244, 199, 111, 0.24);
  border-radius: 8px;
  background: var(--surface);
  color: var(--text);
  padding: 0;
  box-shadow: var(--shadow);
}

.content-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.close-content-dialog {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.62);
}

.content-panel {
  display: grid;
  gap: 14px;
  padding: 30px;
}

.content-panel h2,
.content-panel p {
  margin: 0;
}

.content-panel h2 {
  padding-right: 44px;
  font-size: clamp(1.45rem, 4vw, 2.2rem);
  line-height: 1.08;
}

.content-panel p:not(.eyebrow) {
  color: var(--muted-strong);
}

.settings-form textarea,
.settings-form select,
.product-form select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid rgba(244, 199, 111, 0.22);
  border-radius: 8px;
  background: rgba(7, 9, 11, 0.74);
  color: var(--text);
  outline: none;
}

.settings-form textarea {
  resize: vertical;
}

.settings-form textarea:focus,
.settings-form select:focus,
.product-form select:focus {
  border-color: rgba(45, 212, 191, 0.58);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.11);
}

.banner-preview {
  overflow: hidden;
  border: 1px solid rgba(244, 199, 111, 0.2);
  border-radius: 8px;
  background: #07090b;
}

.banner-preview img {
  width: 100%;
  aspect-ratio: 3.2 / 1;
  object-fit: cover;
}

.admin-secondary-layout {
  margin-top: 18px;
}

.review-admin-list {
  display: grid;
  gap: 10px;
  max-height: 520px;
  overflow: auto;
}

.review-admin-item {
  grid-template-columns: 58px minmax(0, 1fr);
}

.review-score {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(244, 199, 111, 0.4);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.35rem;
  font-weight: 950;
}

.metrics-summary-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-brand-area {
    width: 100%;
    justify-content: space-between;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .trust-strip,
  .category-showcase,
  .review-grid,
  .product-grid,
  .compact-product-grid,
  .admin-layout,
  .metrics-summary,
  .metrics-summary-wide,
  .metrics-grid,
  .commercial-summary,
  .commercial-grid,
  .share-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .store-story,
  .tracking-panel,
  .delivery-band,
  .admin-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-story,
  .about-section,
  .tracking-panel,
  .delivery-band {
    grid-template-columns: 1fr;
  }

  .tracking-panel > .ghost-button {
    grid-column: auto;
    justify-self: start;
  }

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

@media (max-width: 680px) {
  .hero {
    min-height: 0;
  }

  .hero-content {
    padding: 0;
  }

  .hero-content h1 {
    max-width: 92vw;
    font-size: clamp(1.55rem, 8vw, 2.45rem);
    line-height: 1.07;
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 92vw;
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.38;
  }

  .hero img {
    min-height: 0;
    object-position: center top;
  }

  .hero-actions {
    position: static;
    width: min(calc(100% - 32px), var(--max));
    padding: 12px 0 14px;
    transform: none;
    margin-inline: auto;
  }

  .hero::after {
    display: none;
  }

  .primary-button,
  .ghost-button,
  .danger-button {
    min-height: 44px;
  }

  .trust-strip,
  .review-grid,
  .delivery-timeline,
  .metrics-summary,
  .metrics-summary-wide,
  .metrics-grid,
  .commercial-summary,
  .commercial-grid,
  .share-actions,
  .catalog-toolbar,
  .form-grid,
  .compact-product-grid,
  .dialog-info-grid,
  .dialog-product {
    grid-template-columns: 1fr;
  }

  .commercial-alerts {
    grid-column: auto;
  }

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

  .category-showcase button {
    min-height: 86px;
    padding: 10px;
    gap: 6px;
    text-align: center;
    place-items: center;
    background:
      linear-gradient(180deg, rgba(45, 212, 191, 0.08), rgba(249, 115, 22, 0.07)),
      rgba(17, 22, 27, 0.92);
  }

  .category-showcase svg {
    width: 19px;
    height: 19px;
  }

  .category-showcase strong {
    font-size: 0.76rem;
    line-height: 1.08;
  }

  .category-showcase span {
    display: none;
  }

  .story-grid {
    grid-template-columns: repeat(3, minmax(112px, 1fr));
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .story-grid article {
    min-height: 156px;
    padding: 12px;
  }

  .story-grid strong {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .story-grid h3 {
    margin: 12px 0 6px;
    font-size: 0.82rem;
  }

  .story-grid p {
    font-size: 0.78rem;
    line-height: 1.25;
  }

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

  .hero-content .hero-actions {
    width: min(calc(100% - 20px), var(--max));
    margin: 0 auto;
    padding: 10px 0 12px;
  }

  .trust-strip article {
    min-height: 96px;
  }

  .section-heading h1,
  .admin-hero h1 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

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

  .card-actions .primary-button {
    grid-column: 1 / -1;
  }

  .compact-card .card-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .compact-card .card-actions .ghost-button {
    grid-column: 1 / -1;
  }

  .product-body {
    gap: 8px;
    padding: 10px;
  }

  .product-body h3 {
    min-height: 2.5rem;
    font-size: 0.88rem;
  }

  .product-description p {
    min-height: 2.7em;
    font-size: 0.78rem;
  }

  .product-media {
    aspect-ratio: 1 / 0.84;
  }

  .price {
    font-size: 1.08rem;
  }

  .product-meta,
  .category-pill,
  .product-description button {
    font-size: 0.72rem;
  }

  .primary-button,
  .ghost-button,
  .danger-button,
  .icon-button {
    min-height: 38px;
  }

  .dialog-product img {
    height: min(46vh, 300px);
    min-height: 190px;
  }

  .site-footer,
  .footer-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-links {
    justify-content: flex-start;
  }

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

  .audio-toggle {
    display: none;
  }

  .purchase-popup {
    left: 10px;
    bottom: 78px;
    width: min(250px, calc(100vw - 74px));
    padding: 8px 9px;
    border-radius: 999px;
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 6px;
  }

  .purchase-popup strong {
    font-size: 0.74rem;
  }

  .purchase-popup span {
    font-size: 0.68rem;
  }

  .purchase-popup button {
    width: 24px;
    height: 24px;
  }

  .assistant-float {
    right: 10px;
    bottom: 78px;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
  }

  .assistant-float > span:not(.assistant-avatar) {
    display: none;
  }

  .whatsapp-quick {
    right: 62px;
    bottom: 78px;
    width: 44px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-quick span {
    display: none;
  }

  .assistant-panel {
    right: 10px;
    bottom: 128px;
    width: min(330px, calc(100vw - 20px));
    max-height: min(460px, calc(100dvh - 190px));
    overflow: auto;
  }

  .assistant-quick-actions {
    grid-template-columns: 1fr;
  }

  .mobile-bottom-nav {
    display: grid;
  }

  body {
    padding-bottom: 112px;
  }

  main {
    padding-bottom: 42px;
  }

  .catalog-section,
  .highlight-section,
  .flash-section {
    scroll-margin-top: 18px;
    scroll-margin-bottom: 120px;
  }

  .flash-countdown {
    width: 100%;
    justify-content: center;
    border-radius: 8px;
    flex-wrap: wrap;
    text-align: center;
  }

  .store-preview {
    height: 620px;
  }

  .metrics-filters,
  .taxonomy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 440px) {
  .header-brand-area {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .ssl-badge {
    min-height: 28px;
    font-size: 0.7rem;
    padding: 0 10px;
  }

  .brand span {
    font-size: 0.9rem;
  }

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

  .main-nav a {
    padding: 0 11px;
    font-size: 0.84rem;
  }

  .hero img {
    min-height: 0;
  }

  .hero {
    min-height: 0;
  }

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

  .category-showcase-shell,
  .category-filter-shell {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 5px;
  }

  .scroll-arrow {
    width: 32px;
    height: 32px;
  }

  .category-showcase button {
    min-height: 74px;
    padding: 8px;
  }

  .category-showcase strong {
    font-size: 0.74rem;
  }

  .trust-strip,
  .store-story,
  .category-showcase-section,
  .catalog-section,
  .reviews-section,
  .about-section,
  .tracking-section,
  .delivery-band,
  .site-footer,
  .admin-main {
    width: min(calc(100% - 22px), var(--max));
  }

  .product-body,
  .product-form,
  .admin-panel,
  .dialog-product-info {
    padding: 12px;
  }

  .category-row button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.75rem;
  }

  .subcategory-row button {
    min-height: 31px;
    font-size: 0.72rem;
  }
}
