:root {
  --bg: #222222;
  --bg-soft: #2c2c2c;
  --text: #f5f5f5;
  --muted: #aaaaaa;
  --accent: #ffd800;
  --brand-secondary: #222222;
  --border: rgba(255, 255, 255, 0.08);
}

body[data-theme="light"] {
  --bg: #f4f4f4;
  --bg-soft: #ffffff;
  --text: #1c1c1c;
  --muted: #666666;
  --border: rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, sans-serif; background: linear-gradient(180deg, #111, var(--bg)); color: var(--text); }
body[data-theme="light"] { background: linear-gradient(180deg, #ffffff, var(--bg)); }
a { color: inherit; }

/* Public catalog theme mapping:
   - background: always white
   - header background: primary color (--accent)
   - buttons + texts: secondary color (--brand-secondary)
   - button text: primary color (--accent)
*/
.public-layout {
  --bg: #ffffff;
  --bg-soft: #ffffff;
  --text: var(--brand-secondary);
  --muted: rgba(34, 34, 34, 0.72);
  --border: rgba(34, 34, 34, 0.16);
  --catalog-ink: #202020;
  --catalog-line: #dddddd;
  --catalog-muted: #666666;
  background: #ffffff;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.public-layout .public-shell {
  min-height: 100vh;
  background: #ffffff;
}

.public-layout .metric-card,
.public-layout .product-card,
.public-layout .product-detail {
  background: #ffffff;
}

.public-layout .catalog-section-head,
.public-layout .catalog-featured-section,
.public-layout .catalog-grid,
.public-layout .metric-card,
.public-layout .product-detail,
.public-layout .public-variation-block {
  width: min(100%, 1440px);
  margin-left: auto;
  margin-right: auto;
}

.public-layout .catalog-section-head,
.public-layout .catalog-featured-section,
.public-layout .catalog-grid,
.public-layout .catalog-banner,
.public-layout .public-variation-block {
  padding-left: 24px;
  padding-right: 24px;
}

.public-layout .catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: stretch;
  gap: 18px;
}

.public-layout .catalog-grid.catalog-grid-single {
  grid-template-columns: minmax(220px, 280px);
  justify-content: start;
  justify-items: center;
}

.public-layout .product-card {
  width: 100%;
  max-width: none;
  padding: 18px;
  border: 1px solid var(--catalog-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.public-layout .product-card:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.public-layout .product-card img,
.public-layout .product-card .product-carousel {
  width: 100%;
}

.product-card-media {
  display: grid;
  place-items: center;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid var(--catalog-line);
  border-radius: 7px;
  background: #f7f7f7;
  color: #b6b6b6;
  text-decoration: none;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-placeholder span {
  color: #bbbbbb;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.product-card-title {
  margin: 0 0 12px;
  color: var(--brand-secondary);
  font-size: 20px;
  font-weight: 750;
  line-height: 1.14;
  letter-spacing: 0;
}

.product-card-title a {
  color: inherit;
  text-decoration: none;
}

.product-card-category {
  margin: 0 0 14px;
  color: var(--catalog-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-card-category-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 20px);
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-secondary);
  border: 1px solid rgba(34, 34, 34, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card-old-price {
  margin: 0 0 4px;
  color: #777777;
  font-size: 13px;
}

.product-card-price {
  display: block;
  margin: 0;
  color: var(--accent);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.product-card-installment-note {
  margin: 4px 0 0;
  color: #6f6f6f;
  font-size: 12px;
  line-height: 1.35;
}

.catalog-featured-section {
  margin: 0 auto 28px;
}

.catalog-featured-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 14px;
}

.catalog-featured-head h2 {
  margin: 0;
  color: var(--brand-secondary);
  font-size: 26px;
  font-weight: 820;
  line-height: 1.12;
  letter-spacing: 0;
}

.catalog-featured-head p {
  margin: 6px 0 0;
  max-width: 720px;
  color: var(--catalog-muted);
  line-height: 1.5;
}

.catalog-featured-head a {
  flex: 0 0 auto;
  color: var(--brand-secondary);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
}

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

.catalog-featured-section .catalog-grid {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.catalog-featured-carousel-wrap {
  position: relative;
}

.catalog-featured-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 4);
  gap: 18px;
  overflow: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.catalog-featured-carousel::-webkit-scrollbar {
  display: none;
}

.catalog-featured-carousel .product-card {
  scroll-snap-align: start;
}

.catalog-featured-arrow {
  position: absolute;
  top: 42%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--catalog-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-secondary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.catalog-featured-arrow.is-prev {
  left: -12px;
}

.catalog-featured-arrow.is-next {
  right: -12px;
}

.catalog-featured-arrow:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.public-layout .metric-card {
  max-width: 1240px;
}

.public-layout .product-detail {
  max-width: 1040px;
}

.public-layout .button,
.public-layout .auth-form button,
.public-layout .store-search button {
  background: var(--brand-secondary);
  color: var(--accent);
}

.public-layout .store-header-wrap {
  background: var(--catalog-ink);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: none;
}

.public-layout .store-brand,
.public-layout .store-brand-name,
.public-layout .store-cart {
  color: #ffffff;
}

.public-layout .store-cart {
  background: var(--brand-secondary);
  color: var(--accent);
  border-color: transparent;
}

.public-layout .store-search input {
  background: #ffffff;
  color: var(--brand-secondary);
  border-color: rgba(34, 34, 34, 0.2);
}

.public-layout .store-search button {
  background: transparent;
  color: var(--brand-secondary);
}

.public-product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 40px;
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 7px;
  border: 1px solid var(--accent);
  background: transparent;
  color: #111111;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 13px;
  text-decoration: none;
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.public-product-button span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.product-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: stretch;
  margin-top: 14px;
}

.product-card-actions .public-product-button {
  margin-top: 0;
  background: transparent;
  border-color: var(--brand-secondary);
  color: var(--brand-secondary);
}

.product-card-actions .public-product-button:hover {
  background: rgba(0, 0, 0, 0.03);
}

.public-cart-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--brand-secondary);
  border-radius: 7px;
  background: transparent;
  color: var(--brand-secondary);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.public-cart-add:hover,
.public-cart-add.is-added {
  background: rgba(0, 0, 0, 0.03);
  transform: translateY(-1px);
}

.public-cart-add.is-added {
  animation: cart-add-pop 620ms ease;
}

.public-product-button:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
  background: rgba(0, 0, 0, 0.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.public-product-button-detail {
  width: auto;
  min-width: 220px;
  margin: 0 0 16px;
}

.product-detail-whatsapp-button {
  display: flex;
  width: fit-content;
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: #ffffff;
}

@keyframes cart-add-pop {
  0% { transform: scale(1); }
  38% { transform: scale(0.9); }
  72% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.catalog-banner {
  width: min(100%, 1240px);
  margin: 22px auto 18px;
}

.catalog-banner-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.catalog-banner picture,
.catalog-banner img {
  display: block;
  width: 100%;
}

.catalog-banner img {
  max-height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.settings-section {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.settings-section p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.settings-banner-preview {
  overflow: hidden;
  border: 1px dashed var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.settings-banner-preview img {
  display: block;
  width: 100%;
  max-height: 180px;
  object-fit: cover;
}

.settings-banner-preview.is-mobile {
  max-width: 240px;
}

.settings-banner-preview.is-mobile img {
  max-height: 280px;
}

.settings-favicon-preview {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 700;
}

.settings-favicon-preview img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.auth-card, .metric-card, .product-card, .product-detail, .error-page { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 16px; }
.auth-card { width: min(420px, calc(100vw - 32px)); margin: 10vh auto; padding: 32px; }
.auth-form { display: grid; gap: 16px; }
.auth-form input, .auth-form select, .auth-form textarea { width: 100%; padding: 14px 16px; border-radius: 10px; border: 1px solid var(--border); background: #181818; color: var(--text); }
.auth-form select { appearance: none; }
.auth-form button, .button { display: inline-flex; align-items: center; justify-content: center; background: var(--accent); color: #111; font-weight: 700; border: 0; border-radius: 10px; padding: 12px 16px; text-decoration: none; cursor: pointer; }
.admin-frame { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.sidebar { background: #171717; border-right: 1px solid var(--border); padding: 24px; }
body[data-theme="light"] .sidebar { background: #ffffff; }
.brand { font-size: 20px; font-weight: 800; margin-bottom: 24px; }
.menu { display: grid; gap: 8px; }
.menu a, .menu button { padding: 12px 14px; border-radius: 10px; text-decoration: none; color: var(--text); background: transparent; border: 0; width: 100%; text-align: left; font: inherit; cursor: pointer; }
.menu a:hover { background: rgba(255, 216, 0, 0.08); }
.menu button:hover { background: rgba(255, 216, 0, 0.08); }
.admin-content { display: grid; grid-template-rows: auto 1fr; }
.topbar { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; background: rgba(0, 0, 0, 0.18); border-bottom: 1px solid var(--border); }
.page-content { padding: 24px; }
.card-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.catalog-grid { display: grid; gap: 16px; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
.metric-card, .product-card { padding: 18px; }
.metric-card span, .product-card p { color: var(--muted); }
.landing-page {
  min-height: 100vh;
  padding: 24px;
  background:
    linear-gradient(rgba(255, 216, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 216, 0, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #0f0f0f 0%, #171717 58%, #0b0b0b 100%);
  background-size: 44px 44px, 44px 44px, auto;
  color: #f8f8f8;
}

.landing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 14px 16px;
  border: 1px solid rgba(255, 216, 0, 0.14);
  border-radius: 10px;
  background: rgba(18, 18, 18, 0.82);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.landing-top div {
  display: grid;
  gap: 2px;
}

.landing-top strong {
  color: #ffd800;
  font-size: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-top span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.landing-login-open {
  min-height: 40px;
  min-width: 96px;
  border-radius: 8px;
  padding: 9px 14px;
  box-shadow: 0 12px 32px rgba(255, 216, 0, 0.18);
}

.landing-login-modal {
  width: min(420px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #171717;
}

.landing-login-modal::backdrop {
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(3px);
}

.landing-login-box {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.2);
}

.landing-login-box header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.landing-login-box header div {
  display: grid;
  gap: 3px;
}

.landing-login-box header strong {
  font-size: 22px;
  letter-spacing: 0;
}

.landing-login-box header span,
.landing-login-box label {
  color: #667085;
  font-size: 14px;
}

.landing-login-box label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.landing-login-box input {
  width: 100%;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: #171717;
  font: inherit;
  outline: none;
}

.landing-login-box input:focus {
  border-color: rgba(17, 17, 17, 0.32);
  box-shadow: 0 0 0 3px rgba(255, 216, 0, 0.22);
}

.landing-login-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-height: 34px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: #ffffff;
  color: #171717;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 46px;
  width: min(100%, 1180px);
  margin: 78px auto 0;
  padding: 0 0 72px;
}

.landing-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 216, 0, 0.34);
  border-radius: 999px;
  background: rgba(255, 216, 0, 0.1);
  color: #ffd800;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.landing-hero h1 {
  max-width: 760px;
  margin: 22px 0 16px;
  color: #ffffff;
  font-size: clamp(44px, 6.4vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.landing-hero p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.55;
}

.landing-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.landing-hero-actions .button {
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(255, 216, 0, 0.18);
}

.landing-hero-actions a {
  color: #ffd800;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.landing-preview {
  overflow: hidden;
  border: 1px solid rgba(255, 216, 0, 0.18);
  border-radius: 12px;
  background: #121212;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.landing-preview-top {
  display: flex;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #191919;
}

.landing-preview-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffd800;
}

.landing-preview-body {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 360px;
}

.landing-preview-body aside {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: #151515;
}

.landing-preview-body aside strong {
  color: #ffd800;
  font-size: 13px;
}

.landing-preview-body aside span {
  height: 30px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.landing-preview-body main {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 20px;
}

.landing-preview-metric {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 216, 0, 0.18);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 216, 0, 0.16), rgba(255, 255, 255, 0.04));
}

.landing-preview-metric span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.landing-preview-metric strong {
  color: #ffd800;
  font-size: 42px;
  line-height: 1;
}

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

.landing-preview-grid span {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: linear-gradient(180deg, #2a2a2a, #181818);
}

.landing-preview-list {
  display: grid;
  gap: 9px;
}

.landing-preview-list span {
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.landing-catalog-demo {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 0 72px;
}

.landing-demo-customizer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 216, 0, 0.18);
  border-radius: 12px;
  background: rgba(18, 18, 18, 0.88);
  color: #ffffff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.landing-demo-customizer div {
  display: grid;
  gap: 3px;
  margin-right: auto;
}

.landing-demo-customizer div span {
  color: #ffd800;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.landing-demo-customizer div strong {
  font-size: 18px;
  letter-spacing: 0;
}

.landing-demo-customizer label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.landing-demo-customizer input[type="range"] {
  width: 180px;
  height: 18px;
  appearance: none;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  outline: none;
  cursor: ew-resize;
}

.landing-demo-customizer input[type="range"]::-webkit-slider-thumb {
  width: 30px;
  height: 30px;
  appearance: none;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #ffd800;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.34);
}

.landing-demo-customizer input[type="range"]::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #ffd800;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.34);
}

.landing-demo-customizer input[data-landing-demo-primary] {
  background: linear-gradient(90deg, #f3d6c5 0 25%, #d8e7ff 25% 50%, #d7f0df 50% 75%, #fff0a8 75% 100%);
}

.landing-demo-customizer input[data-landing-demo-secondary] {
  background: linear-gradient(90deg, #111111 0 25%, #6b2d5c 25% 50%, #194d4a 50% 75%, #7a4513 75% 100%);
}

.landing-demo-shell {
  --demo-primary: #f3d6c5;
  --demo-secondary: #111111;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 0, 0.18);
  border-radius: 14px;
  background: var(--demo-primary);
  color: #202020;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
}

.landing-demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--demo-primary);
}

.landing-demo-header div {
  display: grid;
  gap: 2px;
}

.landing-demo-header strong {
  color: #111111;
  font-size: 22px;
  letter-spacing: 0;
}

.landing-demo-header span,
.landing-demo-header nav {
  color: #666666;
  font-size: 13px;
}

.landing-demo-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.landing-demo-header nav span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #ffffff;
}

.landing-demo-banner {
  min-height: 210px;
  margin: 18px 22px 0;
  padding: 26px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 82% 34%, color-mix(in srgb, var(--demo-primary) 82%, white 18%) 0 12%, transparent 13%),
    linear-gradient(135deg, var(--demo-secondary) 0%, color-mix(in srgb, var(--demo-secondary) 78%, white 22%) 64%, var(--demo-primary) 64%, var(--demo-primary) 100%);
  color: #ffffff;
}

.landing-demo-banner div {
  display: grid;
  gap: 8px;
  max-width: 430px;
}

.landing-demo-banner span {
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.landing-demo-banner strong {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: 0;
}

.landing-demo-banner small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.landing-demo-featured {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.landing-demo-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
}

.landing-demo-section-head span {
  color: var(--demo-secondary);
  font-size: 22px;
  font-weight: 800;
}

.landing-demo-section-head small {
  color: #777777;
  font-size: 13px;
}

.landing-demo-all-head {
  margin: 22px 0 12px;
}

.landing-demo-carousel {
  overflow: hidden;
  padding: 0 22px;
}

.landing-demo-carousel-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: landingCatalogCarousel 24s linear infinite;
}

.landing-demo-carousel article {
  display: grid;
  flex: 0 0 190px;
  gap: 8px;
  padding: 11px;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.landing-demo-carousel article span,
.landing-demo-products article span {
  color: #202020;
  font-size: 14px;
  font-weight: 700;
}

.landing-demo-carousel article strong,
.landing-demo-products article strong {
  color: #111111;
  font-size: 18px;
}

.landing-demo-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 22px 24px;
}

.landing-demo-products article {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.landing-demo-product-image {
  min-height: 138px;
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 50% 34%, rgba(255, 255, 255, 0.78) 0 14%, transparent 15%),
    linear-gradient(90deg, transparent 44%, rgba(255, 255, 255, 0.45) 45% 55%, transparent 56%),
    linear-gradient(145deg, #ececec, #d8d8d8);
}

.landing-demo-product-image.is-rose {
  background:
    radial-gradient(ellipse at 50% 34%, rgba(255, 255, 255, 0.82) 0 14%, transparent 15%),
    linear-gradient(90deg, transparent 44%, rgba(255, 255, 255, 0.5) 45% 55%, transparent 56%),
    linear-gradient(145deg, #e9b7aa, #b66a67);
}

.landing-demo-product-image.is-black {
  background:
    radial-gradient(ellipse at 50% 34%, rgba(255, 255, 255, 0.72) 0 14%, transparent 15%),
    linear-gradient(90deg, transparent 44%, rgba(255, 216, 0, 0.22) 45% 55%, transparent 56%),
    linear-gradient(145deg, #333333, #101010);
}

.landing-demo-product-image.is-denim {
  background:
    radial-gradient(ellipse at 50% 34%, rgba(255, 255, 255, 0.82) 0 14%, transparent 15%),
    linear-gradient(90deg, transparent 44%, rgba(255, 255, 255, 0.36) 45% 55%, transparent 56%),
    linear-gradient(145deg, #9bb6d6, #416383);
}

.landing-demo-product-image.is-cream {
  background:
    radial-gradient(ellipse at 50% 34%, rgba(255, 255, 255, 0.9) 0 14%, transparent 15%),
    linear-gradient(90deg, transparent 44%, rgba(255, 216, 0, 0.2) 45% 55%, transparent 56%),
    linear-gradient(145deg, #f5ead6, #d3b98c);
}

.landing-demo-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 30px;
  width: 100%;
  padding: 6px 8px;
  border: 0;
  border-radius: 7px;
  background: var(--demo-secondary);
  color: #ffffff;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  cursor: pointer;
}

.landing-whatsapp-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.01 3.2A12.77 12.77 0 0 0 3.25 15.96c0 2.25.59 4.44 1.71 6.37L3.2 28.8l6.62-1.73a12.73 12.73 0 0 0 6.19 1.58h.01a12.75 12.75 0 0 0 0-25.45Zm0 23.29h-.01c-1.87 0-3.7-.5-5.3-1.45l-.38-.23-3.93 1.03 1.05-3.83-.25-.39a10.57 10.57 0 1 1 8.82 4.87Zm5.8-7.91c-.32-.16-1.88-.93-2.17-1.03-.29-.11-.5-.16-.71.16-.21.32-.82 1.03-1 1.24-.18.21-.37.24-.69.08-.32-.16-1.34-.49-2.55-1.57-.94-.84-1.58-1.88-1.76-2.2-.18-.32-.02-.49.14-.65.14-.14.32-.37.48-.55.16-.19.21-.32.32-.53.11-.21.05-.4-.03-.56-.08-.16-.71-1.71-.97-2.34-.26-.61-.52-.53-.71-.54h-.61c-.21 0-.55.08-.84.4-.29.32-1.1 1.08-1.1 2.63 0 1.55 1.13 3.05 1.29 3.26.16.21 2.23 3.4 5.4 4.76.75.32 1.34.52 1.8.66.76.24 1.45.21 1.99.13.61-.09 1.88-.77 2.15-1.51.27-.74.27-1.37.19-1.51-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.01 3.2A12.77 12.77 0 0 0 3.25 15.96c0 2.25.59 4.44 1.71 6.37L3.2 28.8l6.62-1.73a12.73 12.73 0 0 0 6.19 1.58h.01a12.75 12.75 0 0 0 0-25.45Zm0 23.29h-.01c-1.87 0-3.7-.5-5.3-1.45l-.38-.23-3.93 1.03 1.05-3.83-.25-.39a10.57 10.57 0 1 1 8.82 4.87Zm5.8-7.91c-.32-.16-1.88-.93-2.17-1.03-.29-.11-.5-.16-.71.16-.21.32-.82 1.03-1 1.24-.18.21-.37.24-.69.08-.32-.16-1.34-.49-2.55-1.57-.94-.84-1.58-1.88-1.76-2.2-.18-.32-.02-.49.14-.65.14-.14.32-.37.48-.55.16-.19.21-.32.32-.53.11-.21.05-.4-.03-.56-.08-.16-.71-1.71-.97-2.34-.26-.61-.52-.53-.71-.54h-.61c-.21 0-.55.08-.84.4-.29.32-1.1 1.08-1.1 2.63 0 1.55 1.13 3.05 1.29 3.26.16.21 2.23 3.4 5.4 4.76.75.32 1.34.52 1.8.66.76.24 1.45.21 1.99.13.61-.09 1.88-.77 2.15-1.51.27-.74.27-1.37.19-1.51-.08-.13-.29-.21-.61-.37Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

@keyframes landingCatalogCarousel {
  from {
    transform: translateX(0);
  }

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

.landing-pricing-section {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 64px 0 76px;
  border-top: 1px solid rgba(255, 216, 0, 0.12);
}

.landing-section-head {
  display: grid;
  gap: 8px;
  max-width: 620px;
  margin-bottom: 24px;
}

.landing-section-head span {
  color: #ffd800;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.landing-section-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.landing-price-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
}

.landing-price-card.is-featured {
  border-color: rgba(255, 216, 0, 0.72);
  background: linear-gradient(180deg, rgba(255, 216, 0, 0.16), rgba(255, 255, 255, 0.055));
  box-shadow: 0 24px 80px rgba(255, 216, 0, 0.12);
}

.landing-price-card span {
  color: #ffd800;
  font-size: 14px;
  font-weight: 700;
}

.landing-price-card strong {
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0;
}

.landing-price-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.5;
}

.landing-price-card small {
  align-self: end;
  color: #ffd800;
  font-size: 13px;
  font-weight: 700;
}

.landing-plan-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  min-height: 34px;
  margin-top: 4px;
  padding: 8px 12px;
  border-radius: 8px;
  background: #ffd800;
  color: #111111;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(255, 216, 0, 0.16);
}

.landing-plan-whatsapp .landing-whatsapp-icon {
  background-color: #111111;
}

@media (max-width: 980px) {
  .landing-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .landing-page {
    padding: 16px;
  }

  .landing-hero {
    margin-top: 46px;
    padding-bottom: 48px;
  }

  .landing-pricing {
    grid-template-columns: 1fr;
  }

  .landing-demo-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-demo-customizer {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .landing-demo-header nav {
    justify-content: flex-start;
  }

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

  .landing-preview-body {
    grid-template-columns: 86px 1fr;
    min-height: 300px;
  }

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

@media (max-width: 520px) {
  .landing-demo-products {
    grid-template-columns: 1fr;
  }
}
.public-footer {
  display: grid;
  gap: 6px;
  text-align: center;
  padding: 28px 18px 42px;
  color: var(--muted);
}

.public-footer small {
  color: #b8b8b8;
  font-size: 12px;
  line-height: 1.45;
}
.alert { padding: 12px 14px; border-radius: 10px; margin-bottom: 16px; }
.alert-error { background: rgba(255, 80, 80, .12); color: #ffb4b4; }

.products-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 20px;
  align-items: start;
}

.products-main {
  min-width: 0;
}

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

.products-toolbar h1 {
  margin: 0;
}

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

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

.resource-page-head h1,
.resource-page-head p {
  margin: 0;
}

.resource-page-head p {
  margin-top: 6px;
  color: var(--muted);
}

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

.resource-card {
  display: grid;
  gap: 8px;
}

.resource-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.resource-list-row {
  min-height: 62px;
  padding: 12px 14px;
}

.resource-list-row .product-row-thumb {
  width: 40px;
  height: 40px;
  font-size: 11px;
}

.resource-list-row .product-row-main strong {
  font-size: 16px;
}

.token-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 520px) auto;
  align-items: center;
  gap: 12px;
  background: color-mix(in srgb, var(--accent) 14%, var(--admin-surface));
}

.token-result p {
  margin: 4px 0 0;
  color: var(--admin-muted);
}

.token-result code {
  display: block;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--admin-border);
  background: var(--admin-surface-2);
  color: var(--admin-text);
  overflow: auto;
  white-space: nowrap;
}

.token-row {
  cursor: default;
}

.token-row:hover {
  transform: none;
}

.token-row-meta {
  gap: 7px;
}

.token-action-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.token-action-bar form {
  margin: 0;
}

.token-action {
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 7px;
  font-size: 13px;
  line-height: 1;
  box-shadow: none;
}

.token-webhook-modal {
  width: min(560px, calc(100vw - 24px));
}

.token-permissions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.token-permissions span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--admin-border);
  background: var(--admin-surface-2);
  color: var(--admin-muted);
  font-size: 12px;
  font-weight: 700;
}

.token-permission-grid {
  display: grid;
  gap: 10px;
}

.token-permission-option {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-surface);
}

.token-permission-option span {
  display: grid;
  gap: 3px;
}

.token-permission-option small {
  color: var(--admin-muted);
  font-weight: 700;
}

.api-docs {
  display: grid;
  gap: 16px;
}

.api-doc-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-surface);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.10);
}

.api-doc-card h2,
.api-doc-card p {
  margin: 0;
}

.api-doc-card p {
  color: var(--admin-muted);
  line-height: 1.55;
}

.api-doc-card pre {
  margin: 0;
  max-width: 100%;
  overflow: auto;
  padding: 14px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-bg-deep);
  color: var(--admin-text);
  font-size: 13px;
  line-height: 1.55;
}

.api-doc-card code {
  font-family: Consolas, Monaco, "Courier New", monospace;
}

.api-doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}

.api-doc-grid > div {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-surface-2);
}

.api-doc-grid strong {
  display: block;
  margin-bottom: 5px;
}

.api-endpoint-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.api-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 30px;
  padding: 5px 9px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.api-method.get { background: rgba(85, 217, 121, 0.14); color: #55d979; }
.api-method.post { background: rgba(255, 216, 0, 0.14); color: #ffd800; }
.api-method.put,
.api-method.patch { background: rgba(86, 156, 255, 0.15); color: #8bbaff; }
.api-method.delete { background: rgba(240, 107, 107, 0.15); color: #f06b6b; }

.dashboard-date-filter {
  display: flex;
  align-items: end;
  gap: 8px;
}

.dashboard-date-filter label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.dashboard-date-filter input {
  min-height: 42px;
  width: 150px;
}

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

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

.product-list-selectbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
}

.product-select-all,
.product-row-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-select-all input,
.product-row-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.product-selection-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

.product-selection-row.is-selected .product-row {
  border-color: color-mix(in srgb, var(--accent) 62%, var(--border));
  background: color-mix(in srgb, var(--admin-surface, rgba(255, 255, 255, 0.03)) 82%, var(--accent) 18%);
}

.product-row-checkbox {
  justify-content: center;
  min-height: 78px;
  cursor: pointer;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.product-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.product-row-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

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

.product-row-thumb.is-subproduct {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.product-row-children {
  margin: -2px 0 2px 92px;
  padding-left: 18px;
  border-left: 2px solid var(--border);
  display: grid;
  gap: 8px;
}

.product-variation-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed var(--border);
  background: color-mix(in srgb, var(--admin-surface, rgba(255, 255, 255, 0.015)) 82%, transparent);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.product-row:hover,
.product-variation-row:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 216, 0, 0.35);
}

.product-row-main, .product-row-meta {
  display: grid;
  gap: 4px;
}

.product-row-main span,
.product-row-meta span {
  color: var(--muted);
  font-size: 14px;
}

.product-row-meta {
  justify-items: end;
}

.product-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: capitalize;
  background: rgba(255,255,255,0.06);
}

.status-active { color: #9bffad; }
.status-draft { color: #ffd86b; }
.status-inactive { color: #ff8f8f; }
.status-suspended { color: #ffb86b; }

.pagination-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

[data-products-list-container] {
  transition: opacity 0.16s ease;
}

[data-products-list-container].is-loading {
  opacity: 0.58;
  pointer-events: none;
}

.empty-state {
  border: 1px dashed var(--border);
  border-radius: 8px;
  color: var(--muted);
  padding: 22px;
  text-align: center;
}

.button-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

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

.product-sidebar {
  position: sticky;
  top: 16px;
  display: grid;
  gap: 14px;
}

.product-sidebar-action {
  width: 100%;
}

.sidebar-card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.sidebar-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.product-modal {
  width: min(1180px, calc(100vw - 24px));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0;
  background: var(--bg);
  color: var(--text);
}

.product-modal::backdrop {
  background: rgba(0, 0, 0, 0.65);
}

.product-modal-form {
  padding: 20px;
  max-width: none;
}

.product-modal-head,
.product-modal-footer,
.modal-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-modal-footer-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-modal-head h2,
.product-modal-head p,
.modal-section-head p {
  margin: 0;
}

.product-modal-head p,
.modal-help,
.modal-image-note,
.modal-section-head p,
.product-modal-footer {
  color: var(--muted);
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 18px 0;
  align-items: start;
}

.modal-section {
  display: grid;
  gap: 10px;
  align-content: start;
}

.product-modal-description {
  grid-column: 1 / -1;
}

.product-modal-images {
  grid-column: 1 / -1;
}

.modal-section input,
.modal-section select,
.modal-section textarea,
.product-modal input,
.product-modal select,
.product-modal textarea {
  width: 100%;
}

.modal-image-note {
  font-size: 13px;
}

.product-existing-images {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-images-field {
  display: grid;
  gap: 10px;
  color: var(--admin-muted);
  font-size: 14px;
  font-weight: 700;
}

.product-images-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  width: 100%;
}

.product-images-grid .product-existing-images,
.product-images-grid .image-input-preview {
  display: contents;
}

.product-images-grid .modal-image-note {
  flex-basis: 100%;
}

.product-image-add {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  min-height: 96px;
  padding: 0;
  border: 1px dashed color-mix(in srgb, var(--accent) 58%, var(--admin-border));
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 10%, var(--admin-surface));
  color: var(--admin-text);
  cursor: pointer;
}

.product-image-add:hover {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 16%, var(--admin-surface));
}

.product-image-add input {
  position: absolute;
  width: 1px !important;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.product-image-add span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--accent);
  color: #151515;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.existing-image-thumb {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  cursor: grab;
}

.existing-image-thumb.is-dragging {
  opacity: 0.46;
}

.existing-image-thumb.is-drop-target {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 32%, transparent);
}

.existing-image-thumb.is-primary {
  border-color: var(--accent);
}

.existing-image-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.existing-image-order {
  position: absolute;
  left: 5px;
  bottom: 5px;
  max-width: calc(100% - 10px);
  padding: 2px 5px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.74);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  pointer-events: none;
}

.existing-image-thumb button {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.76);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.modal-section-head {
  margin-bottom: 14px;
}

.modal-variation-builder {
  position: relative;
  padding: 0;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--admin-surface) 94%, white 6%);
  overflow: hidden;
}

.modal-variation-builder::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 62%, var(--admin-border));
  opacity: 0.45;
}

.modal-variation-builder:not(.is-collapsed)::before,
.modal-variation-builder:hover::before {
  opacity: 1;
}

.variation-panel-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: auto;
  flex: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--admin-text);
  text-align: left;
  cursor: pointer;
  font-weight: 500;
}

.variation-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.variation-panel-copy {
  display: grid;
  gap: 4px;
  justify-items: start;
  text-align: left;
}

.variation-panel-toggle:hover {
  background: color-mix(in srgb, var(--admin-surface-3) 42%, transparent);
}

.variation-panel-toggle strong {
  display: block;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.2;
}

.variation-panel-toggle span:not(.variation-panel-icon),
.variation-panel-toggle p {
  color: var(--admin-muted);
  font-weight: 500 !important;
}

.variation-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--admin-border);
  color: var(--admin-muted);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.modal-variation-builder:not(.is-collapsed) .variation-panel-icon {
  transform: rotate(45deg);
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 46%, var(--admin-border));
}

.variation-panel-body {
  display: grid;
  gap: 18px;
  padding: 0 18px 18px;
}

.modal-variation-builder.is-collapsed .variation-panel-body {
  display: none;
}

.modal-variation-builder.is-collapsed .variation-actions {
  display: none;
}

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

.variation-actions .button {
  width: auto;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: none;
}

.variation-actions-bottom {
  margin-top: 12px;
}

.variation-attributes {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.variation-attribute {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  background: color-mix(in srgb, var(--admin-surface-2) 88%, white 12%);
  display: grid;
  gap: 9px;
}

.variation-attribute-head {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) minmax(260px, 1.2fr) auto;
  gap: 12px;
  align-items: end;
}

.variation-attribute-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.variation-attribute-head label {
  margin: 0;
}

.variation-attribute-head input {
  height: 42px;
  min-height: 42px;
}

.variation-attribute-head .button {
  min-height: 42px;
  padding: 8px 14px;
  box-shadow: none;
}

.variation-attribute-head .variation-generate-button {
  border-color: var(--accent);
  background: var(--accent);
  color: #151515;
}

.variation-attribute-head .variation-trash-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  padding: 0;
  border-color: color-mix(in srgb, var(--admin-danger) 42%, var(--admin-border));
  color: var(--admin-danger);
}

.variation-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.variation-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  padding: 3px 6px 3px 8px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 15%, var(--admin-surface));
  border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--admin-border));
  font-size: 12px;
  font-weight: 600;
}

.variation-chip button {
  width: 17px;
  height: 17px;
  min-height: 17px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

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

.variation-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.variation-list-item:hover {
  border-color: rgba(255, 216, 0, 0.35);
}

.variation-list-item.is-product-style {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.015);
  border-style: dashed;
}

.variation-item-main,
.variation-item-meta {
  display: grid;
  gap: 4px;
}

.variation-item-meta {
  justify-items: end;
}

.variation-item-main span,
.variation-item-meta span {
  color: var(--muted);
  font-size: 13px;
}

.variation-row {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  display: grid;
  gap: 14px;
}

.variation-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.variation-row-grid {
  display: grid;
  grid-template-columns: 1.1fr .7fr .7fr .55fr auto;
  gap: 10px;
  align-items: start;
}

.variation-images {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
}

.variation-image-option {
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}

.variation-image-option img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.variation-file-list {
  display: grid;
  gap: 8px;
  width: 100%;
}

.variation-image-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: inherit;
  text-align: left;
}

.variation-image-row.is-selectable {
  cursor: pointer;
}

.variation-image-row.is-selectable:hover {
  border-color: rgba(255, 216, 0, 0.35);
}

.variation-image-row.is-selected {
  border-color: rgba(255, 216, 0, 0.4);
  background: rgba(255,255,255,0.03);
}

.variation-image-row .product-row-left,
.variation-list-item .product-row-left {
  flex: 1 1 auto;
  min-width: 0;
}

.variation-image-row .product-row-thumb,
.variation-image-row .product-row-thumb.is-subproduct {
  flex: 0 0 88px;
  width: 88px;
  height: 88px;
  border-radius: 8px;
}

.variation-image-row .variation-item-main,
.variation-list-item .product-row-main {
  min-width: 0;
}

.variation-image-row .variation-item-main strong,
.variation-image-row .variation-item-main span,
.variation-list-item .product-row-main strong,
.variation-list-item .product-row-main span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.variation-list-item .product-row-main strong,
.variation-list-item .product-row-main span {
  font-weight: 500;
}

.variation-image-row .variation-item-meta,
.variation-list-item .product-row-meta {
  flex: 0 0 auto;
}

.variation-image-action {
  white-space: nowrap;
}

.variation-image-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.72);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

body[data-theme="light"] .variation-image-remove {
  background: rgba(23, 32, 46, 0.74);
  color: #fff;
}

.variation-image-remove:hover,
.existing-image-thumb button:hover {
  background: #d62e2e;
  border-color: #d62e2e;
  transform: scale(1.04);
}

.variation-edit-modal {
  width: min(980px, calc(100vw - 24px));
}

.image-remove-modal {
  width: min(560px, calc(100vw - 24px));
}

.product-modal-footer {
  margin-top: 18px;
}

.button-danger {
  background: rgba(214, 46, 46, 0.18);
  color: #ffd7d7;
  border: 1px solid rgba(214, 46, 46, 0.55);
}

.button-danger:hover {
  background: rgba(214, 46, 46, 0.26);
}

dialog::backdrop {
  backdrop-filter: blur(2px);
}

.store-header-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.92), rgba(20, 20, 20, 0.8));
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

body[data-theme="light"] .store-header-wrap {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
}

.store-header {
  width: min(1440px, calc(100vw - 48px));
  margin: 0 auto;
  min-height: 92px;
  padding: 18px 24px;
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(320px, 1fr) 64px;
  align-items: center;
  gap: 22px;
}

.store-brand {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  text-decoration: none;
}

.store-logo {
  max-height: 58px;
  width: auto;
  max-width: 290px;
  object-fit: contain;
}


.public-variation-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.public-variation-block {
  background: #ffffff;
  border: 0;
  border-radius: 8px;
  margin: 8px 0 12px;
  padding: 0;
}

.public-variation-option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid var(--brand-secondary);
  background: #ffffff;
  color: var(--brand-secondary);
  font-size: 12px;
  line-height: 1.15;
}

.public-variation-option.is-active {
  border-color: var(--brand-secondary);
  box-shadow: 0 0 0 1px var(--brand-secondary) inset;
}

.public-layout .public-variation-option {
  background: #ffffff;
  color: var(--brand-secondary);
  border-color: var(--brand-secondary);
}

.variation-swatch {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.26);
  display: inline-block;
}
.store-brand-name {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 6px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0;
}

.store-search {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 820px;
  justify-self: center;
}

.store-search input {
  width: 100%;
  min-height: 54px;
  padding: 12px 58px 12px 18px;
  border-radius: 999px;
  border: 1px solid #d7d7d7;
  background: #ffffff;
  color: #222222;
  font-size: 16px;
  font-weight: 450;
}

body[data-theme="light"] .store-search input {
  background: #ffffff;
}

.store-search button {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 34px;
  min-height: 54px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  color: var(--brand-secondary);
  transform: translateY(-50%);
  cursor: pointer;
}

.store-search button span {
  display: none;
}

.store-search button svg {
  display: block;
}

.store-search button:hover {
  background: transparent;
}

.store-cart {
  justify-self: end;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  text-decoration: none;
}

.store-cart-wrap {
  position: relative;
  justify-self: end;
}

.store-cart {
  position: relative;
  cursor: pointer;
}

.store-cart-count {
  position: absolute;
  right: -5px;
  top: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: var(--brand-secondary);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.store-cart.is-bumping {
  animation: cart-add-pop 620ms ease;
}

.store-cart-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  width: min(340px, calc(100vw - 28px));
  padding: 12px;
  border: 1px solid rgba(34, 34, 34, 0.14);
  border-radius: 10px;
  background: #ffffff;
  color: var(--brand-secondary);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.store-cart-items {
  display: grid;
  gap: 8px;
  max-height: 280px;
  overflow: auto;
}

.store-cart-empty {
  margin: 0;
  color: rgba(34, 34, 34, 0.62);
}

.store-cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(34, 34, 34, 0.1);
  border-radius: 8px;
}

.store-cart-item strong,
.store-cart-item span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.store-cart-item span {
  margin-top: 2px;
  color: rgba(34, 34, 34, 0.62);
  font-size: 12px;
}

.store-cart-item button {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(34, 34, 34, 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--brand-secondary);
  cursor: pointer;
}

.store-cart-checkout {
  margin-top: 12px;
}

.store-cart-checkout.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

body[data-theme="light"] .store-cart {
  background: #ffffff;
}

.catalog-section-head {
  padding: 0 24px 12px;
}

.catalog-categories-bar {
  width: 100%;
  margin-top: 0;
  padding: 0 24px 18px;
  background: var(--catalog-ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.catalog-categories {
  width: min(100%, 1440px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.catalog-category-item {
  position: relative;
}

.catalog-category-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 38px;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--brand-secondary);
  text-decoration: none;
  font-weight: 750;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.catalog-category-caret {
  font-size: 17px;
  line-height: 1;
  transform: rotate(90deg);
}

.catalog-category-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.catalog-category-link:focus-visible {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}

.catalog-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 35;
  min-width: 220px;
  padding: 8px;
  border: 1px solid rgba(34, 34, 34, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.catalog-category-item > .catalog-submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.catalog-submenu .catalog-category-item {
  width: 100%;
}

.catalog-submenu .catalog-category-link {
  width: 100%;
  justify-content: space-between;
  border-color: transparent;
  border-radius: 8px;
  background: transparent;
  color: var(--catalog-ink);
  padding: 9px 10px;
}

.catalog-submenu .catalog-submenu {
  top: -8px;
  left: 100%;
}

.catalog-submenu .catalog-category-item > .catalog-submenu::before {
  left: -10px;
  right: auto;
  top: 0;
  width: 10px;
  height: 100%;
}

.catalog-category-item:hover > .catalog-submenu,
.catalog-category-item:focus-within > .catalog-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.catalog-submenu .catalog-category-link:hover,
.catalog-submenu .catalog-category-link.is-active,
.catalog-category-item.is-active-branch > .catalog-category-link {
  background: color-mix(in srgb, var(--accent) 28%, white 72%);
}

.product-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: block;
}

.product-carousel-link {
  position: absolute;
  inset: 0;
  display: block;
}

.product-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-secondary);
  font-size: 20px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  transition: opacity 160ms ease, background 160ms ease, border-color 160ms ease;
}

.product-carousel:hover .product-carousel-arrow,
.product-carousel:focus-within .product-carousel-arrow {
  opacity: 1;
}

.product-carousel-arrow.is-prev {
  left: 8px;
}

.product-carousel-arrow.is-next {
  right: 8px;
}

.product-carousel-arrow:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.product-carousel-large {
  max-width: 560px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 12px;
}

.product-page-wrap {
  width: min(1200px, calc(100vw - 48px));
  margin: 0 auto 24px;
}

.product-marketplace-layout {
  padding: 22px;
  border-radius: 8px;
  border-color: var(--catalog-line);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.product-marketplace-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.product-marketplace-media {
  min-width: 0;
}

.product-marketplace-info {
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding-top: 0;
}

.product-single-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--catalog-line);
}

.product-single-image.is-placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.product-marketplace-info h1 {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: 0;
}

.product-short-description {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.55;
}

.product-related-section {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--catalog-line);
}

.catalog-empty-search {
  display: grid;
  justify-items: center;
  width: min(720px, calc(100vw - 48px));
  margin: 64px auto 48px;
  padding: 44px 28px;
  text-align: center;
}

.catalog-empty-search-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border: 1px solid var(--catalog-line);
  border-radius: 999px;
  color: var(--brand-secondary);
  background: rgba(0, 0, 0, 0.025);
}

.catalog-empty-search h1 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.catalog-empty-search p {
  max-width: 520px;
  margin: 0;
  color: var(--catalog-muted);
  font-size: 16px;
  line-height: 1.55;
}

.catalog-empty-search-button {
  margin-top: 24px;
  text-decoration: none;
}

.catalog-infinite-sentinel {
  display: grid;
  place-items: center;
  min-height: 72px;
  padding: 18px 24px 8px;
  color: var(--catalog-muted);
  font-size: 13px;
  text-align: center;
}

.catalog-infinite-sentinel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
}

.catalog-infinite-sentinel.is-loading span::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 9px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  border-top-color: var(--brand-secondary);
  border-radius: 999px;
  animation: catalog-loading-spin 700ms linear infinite;
}

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

.product-marketplace-price {
  display: block;
  color: var(--accent);
  font-size: 28px;
  font-weight: 850;
  margin: 0 0 14px;
}

.product-marketplace-old-price {
  margin: 0 0 4px;
  color: #777777;
  font-size: 16px;
}

.product-marketplace-installment-note {
  margin: 0 0 6px;
  color: var(--catalog-muted);
  font-size: 14px;
  line-height: 1.4;
}

.variation-block-title {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
}

.product-marketplace-description {
  margin-top: 22px;
  border-top: 1px solid var(--catalog-line);
  padding-top: 18px;
}

.product-marketplace-description h2 {
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--catalog-ink);
  font-weight: 760;
}

.product-marketplace-description p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-marketplace-description p + p,
.product-marketplace-description ul,
.product-marketplace-description ol {
  margin-top: 10px;
}

.product-marketplace-description ul,
.product-marketplace-description ol {
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 380ms ease;
}

.carousel-image.is-active {
  opacity: 1;
}

@media (max-width: 1200px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .admin-frame { grid-template-columns: 1fr; }
  .sidebar { position: sticky; top: 0; z-index: 5; }

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

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

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

  .catalog-featured-carousel {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .store-header {
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr) 54px;
    gap: 10px;
    padding: 12px 16px;
  }

  .store-brand {
    grid-column: 1;
  }

  .store-cart-wrap {
    grid-column: 3;
  }

  .store-search {
    grid-column: 2;
    max-width: 100%;
  }

  .catalog-categories-bar {
    padding: 0 16px 12px;
  }

  .catalog-categories {
    justify-content: center;
  }

  .product-marketplace-top {
    grid-template-columns: 1fr;
  }

  .product-single-image,
  .product-carousel-large {
    aspect-ratio: 1 / 1;
    height: auto;
    max-width: 100%;
  }

  .variation-row-grid {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    position: static;
  }
}

@media (max-width: 620px) {
  .store-header {
    grid-template-columns: minmax(120px, 1fr) minmax(0, 1.2fr) 44px;
  }

  .store-search {
    grid-column: 2;
  }

  .store-brand {
    grid-column: 1;
  }

  .store-cart-wrap {
    grid-column: 3;
  }

  .store-brand-name {
    font-size: 20px;
  }

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

  .public-layout .catalog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .catalog-featured-head {
    align-items: start;
    flex-direction: column;
  }

  .catalog-featured-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .catalog-featured-carousel {
    grid-auto-columns: 100%;
  }

  .catalog-featured-arrow {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .catalog-featured-arrow.is-prev {
    left: 4px;
  }

  .catalog-featured-arrow.is-next {
    right: 4px;
  }

  .public-layout .product-card {
    padding: 14px;
  }

  .product-card-title {
    font-size: 19px;
  }

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

  .public-product-button {
    min-height: 38px;
    padding-left: 9px;
    padding-right: 9px;
    font-size: 12px;
  }

  .product-carousel-large {
    max-width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .product-page-wrap {
    width: min(1200px, calc(100vw - 24px));
  }

  .product-marketplace-layout {
    padding: 14px;
  }
}

/* Public catalog responsive header and grid */
.public-layout .store-search-toggle {
  display: none;
}

.public-layout .catalog-category-link.is-active {
  background: var(--accent);
  color: var(--brand-secondary);
  border-color: var(--accent);
}

.public-layout .catalog-submenu .catalog-category-link.is-active {
  color: var(--catalog-ink);
}

.public-layout .catalog-categories-dropdown {
  display: none;
}

@media (max-width: 760px) {
  .public-layout .store-header-wrap {
    position: sticky;
    top: 0;
  }

  .public-layout .store-header {
    width: 100%;
    min-height: 66px;
    padding: 10px 14px;
    grid-template-columns: minmax(0, 1fr) 44px 44px;
    gap: 8px;
  }

  .public-layout .store-brand {
    grid-column: 1;
    min-width: 0;
    overflow: hidden;
  }

  .public-layout .store-logo {
    max-width: min(190px, 52vw);
    max-height: 42px;
  }

  .public-layout .store-brand-name {
    max-width: 100%;
    padding: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 20px;
  }

  .public-layout .store-search-toggle,
  .public-layout .store-cart {
    width: 42px;
    height: 42px;
    min-height: 42px;
    border-radius: 8px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-secondary);
    color: var(--accent);
    cursor: pointer;
  }

  .public-layout .store-search-toggle {
    grid-column: 2;
  }

  .public-layout .store-cart-wrap {
    grid-column: 3;
  }

  .public-layout .store-search {
    position: absolute;
    left: auto;
    right: 58px;
    top: calc(100% + 8px);
    z-index: 40;
    display: none;
    width: min(320px, calc(100vw - 84px));
    max-width: 320px;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(34, 34, 34, 0.14);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  }

  .public-layout .store-search::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 16px;
    width: 12px;
    height: 12px;
    border-left: 1px solid rgba(34, 34, 34, 0.14);
    border-top: 1px solid rgba(34, 34, 34, 0.14);
    background: #ffffff;
    transform: rotate(45deg);
  }

  .public-layout .store-search.is-open {
    display: grid;
  }

  .public-layout .store-search input {
    min-height: 44px;
    padding-right: 44px;
    border-radius: 10px;
  }

  .public-layout .store-search button {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 38px;
    min-height: 38px;
    height: 38px;
    padding: 0;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: var(--brand-secondary);
    transform: translateY(-50%);
    box-shadow: none;
  }

  .public-layout .store-search button:hover {
    background: transparent;
    transform: none;
    box-shadow: none;
  }

  .public-layout .store-search button span {
    display: none;
  }

  .public-layout .store-search button svg {
    display: block;
  }

  .public-layout .catalog-categories-bar {
    padding: 8px 14px 10px;
    background: var(--catalog-ink);
  }

  .public-layout .catalog-categories-desktop {
    display: none;
  }

  .public-layout .catalog-categories-dropdown {
    position: relative;
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

  .public-layout .catalog-categories-dropdown summary {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid rgba(34, 34, 34, 0.18);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #ffffff;
    color: var(--brand-secondary);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
  }

  .public-layout .catalog-categories-dropdown summary::-webkit-details-marker {
    display: none;
  }

  .public-layout .catalog-categories-dropdown[open] summary svg {
    transform: rotate(180deg);
  }

  .public-layout .catalog-category-menu {
    position: static;
    z-index: 30;
    max-height: min(360px, 58vh);
    overflow: auto;
    margin-top: 6px;
    padding: 8px;
    border: 1px solid rgba(34, 34, 34, 0.14);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  }

  .public-layout .catalog-category-menu a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 10px 9px calc(10px + (var(--category-depth, 0) * 16px));
    border-radius: 8px;
    color: var(--brand-secondary);
    text-decoration: none;
    font-weight: 750;
  }

  .public-layout .catalog-mobile-submenu {
    margin: 0;
  }

  .public-layout .catalog-mobile-submenu summary {
    min-height: 42px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    list-style: none;
  }

  .public-layout .catalog-mobile-submenu summary::-webkit-details-marker {
    display: none;
  }

  .public-layout .catalog-mobile-submenu summary a {
    flex: 1;
  }

  .public-layout .catalog-mobile-submenu summary span {
    width: 34px;
    text-align: center;
    transform: rotate(90deg);
    transition: transform 160ms ease;
  }

  .public-layout .catalog-mobile-submenu[open] > summary span {
    transform: rotate(270deg);
  }

  .public-layout .catalog-mobile-submenu-list {
    display: grid;
    gap: 2px;
  }

  .public-layout .catalog-category-menu a:hover,
  .public-layout .catalog-category-menu a.is-active {
    background: color-mix(in srgb, var(--accent) 28%, white 72%);
  }

  .public-layout .catalog-grid,
  .public-layout .catalog-grid.catalog-grid-single {
    width: 100%;
    grid-template-columns: 1fr;
    justify-content: stretch;
    justify-items: stretch;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .catalog-banner img {
    max-height: none;
    height: auto;
    object-fit: contain;
    border-radius: 0;
  }

  .catalog-banner {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 14px;
    padding: 0 !important;
  }

  .public-layout .product-card {
    max-width: none;
    width: 100%;
  }
}

/* Internal admin panel */
.admin-layout {
  --admin-bg: #111318;
  --admin-bg-deep: #0c0e12;
  --admin-surface: #181b22;
  --admin-surface-2: #202530;
  --admin-surface-3: #262c38;
  --admin-text: #f8fafc;
  --admin-muted: #aeb7c7;
  --admin-border: rgba(226, 232, 240, 0.14);
  --admin-border-strong: rgba(255, 216, 0, 0.38);
  --admin-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --admin-hover: rgba(255, 216, 0, 0.11);
  --admin-danger: #ff6b6b;
  --bg: var(--admin-bg);
  --bg-soft: var(--admin-surface);
  --text: var(--admin-text);
  --muted: var(--admin-muted);
  --border: var(--admin-border);
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 216, 0, 0.12), transparent 32rem),
    linear-gradient(145deg, var(--admin-bg-deep), var(--admin-bg) 46%, #151923);
  color: var(--admin-text);
}

.admin-layout[data-theme="light"] {
  --admin-bg: #eef2f7;
  --admin-bg-deep: #dfe6f0;
  --admin-surface: #ffffff;
  --admin-surface-2: #f7f9fc;
  --admin-surface-3: #edf2f8;
  --admin-text: #17202e;
  --admin-muted: #5f6f84;
  --admin-border: rgba(23, 32, 46, 0.13);
  --admin-border-strong: rgba(198, 162, 0, 0.48);
  --admin-shadow: 0 22px 54px rgba(24, 38, 60, 0.13);
  --admin-hover: rgba(255, 216, 0, 0.22);
  background:
    radial-gradient(circle at top left, rgba(255, 216, 0, 0.22), transparent 30rem),
    linear-gradient(145deg, #ffffff, var(--admin-bg) 54%, #e6edf6);
}

.admin-layout a,
.admin-layout button,
.admin-layout input,
.admin-layout select,
.admin-layout textarea,
.admin-layout summary {
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.admin-layout button,
.admin-layout summary {
  font: inherit;
}

.admin-frame {
  grid-template-columns: 280px minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 20px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 18rem),
    linear-gradient(145deg, #11151d 0%, #0b0e14 54%, #141821 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 18px 0 54px rgba(0, 0, 0, 0.22);
}

.admin-layout[data-theme="light"] .sidebar {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 18rem),
    linear-gradient(145deg, #11151d 0%, #0b0e14 54%, #141821 100%);
  border-right-color: rgba(255, 255, 255, 0.08);
  box-shadow: 18px 0 50px rgba(24, 38, 60, 0.16);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  margin-bottom: 18px;
  padding: 8px 8px 14px;
  color: #f8fafc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.brand-client {
  display: grid;
  gap: 3px;
  min-width: 0;
  align-items: center;
}

.brand-client img {
  display: block;
  max-width: 112px;
  max-height: 34px;
  object-fit: contain;
  object-position: left center;
}

.brand-client small {
  color: rgba(248, 250, 252, 0.48);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.brand-client.has-no-logo small {
  color: rgba(248, 250, 252, 0.68);
  font-size: 12px;
}

.brand-catalog-link {
  margin-left: auto;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(248, 250, 252, 0.68);
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand-catalog-link:hover {
  color: #ffffff;
  border-color: rgba(255, 216, 0, 0.46);
  background: rgba(255, 216, 0, 0.1);
  box-shadow: 0 10px 24px rgba(255, 216, 0, 0.08);
}

.brand-mark {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(145deg, #ffe766, var(--accent));
  color: #151515;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(255, 216, 0, 0.2);
}

.brand:has(.brand-client.has-no-logo) .brand-mark {
  display: inline-flex;
}

.menu {
  gap: 7px;
}

.menu a,
.menu button {
  position: relative;
  min-height: 42px;
  padding: 11px 13px 11px 15px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(248, 250, 252, 0.66);
  font-weight: 760;
  letter-spacing: 0;
  overflow: hidden;
}

.menu a:hover,
.menu button:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: translateX(3px);
}

.menu a.is-active {
  background:
    linear-gradient(90deg, rgba(255, 216, 0, 0.2), rgba(255, 216, 0, 0.07)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 216, 0, 0.34);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 10px 24px rgba(0, 0, 0, 0.14);
}

.menu a.is-active::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  bottom: 11px;
  width: 3px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(255, 216, 0, 0.55);
}

.menu-logout {
  margin-top: 8px;
}

.sidebar-footer {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.sidebar-footer .theme-toggle,
.sidebar-footer form,
.sidebar-footer .menu-logout {
  width: 100%;
}

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

.admin-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(3, 7, 18, 0.62);
  backdrop-filter: blur(4px);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 4;
  min-height: 72px;
  padding: 16px 28px;
  background: color-mix(in srgb, var(--admin-bg) 82%, transparent);
  border-bottom: 1px solid var(--admin-border);
  backdrop-filter: blur(16px);
}

.admin-menu-toggle,
.product-sidebar-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 8px;
  border: 1px solid var(--admin-border);
  background: var(--admin-surface);
  color: var(--admin-text);
  cursor: pointer;
  font-weight: 800;
}

.admin-menu-toggle span,
.product-sidebar-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.product-sidebar-toggle {
  background: var(--accent);
  border-color: transparent;
  color: #151515;
  box-shadow: 0 10px 22px rgba(255, 216, 0, 0.13);
}

.admin-menu-toggle:hover,
.product-sidebar-toggle:hover {
  background: var(--admin-hover);
  border-color: var(--admin-border-strong);
}

.product-sidebar-toggle:hover {
  background: color-mix(in srgb, var(--accent) 84%, #ffffff 16%);
  border-color: transparent;
}

.topbar-user {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: var(--admin-muted);
}

.topbar-user strong {
  color: var(--admin-text);
}

.theme-toggle {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--admin-border);
  background: var(--admin-surface);
  color: var(--admin-text);
  cursor: pointer;
  font-weight: 800;
}

.theme-toggle:hover,
.button-ghost:hover {
  background: var(--admin-hover);
  border-color: var(--admin-border-strong);
  transform: translateY(-1px);
}

.page-content {
  width: min(1480px, 100%);
  padding: 30px;
}

.page-content-wide {
  width: 100%;
  max-width: none;
}

.page-content > h1,
.products-toolbar h1 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
}

.panel-card,
.metric-card,
.sidebar-card,
.product-row,
.product-variation-row,
.variation-row,
.variation-attribute,
.variation-list-item,
.variation-image-row,
.variation-image-option {
  background: color-mix(in srgb, var(--admin-surface) 94%, white 6%);
  border: 1px solid var(--admin-border);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.10);
}

.admin-layout[data-theme="light"] .panel-card,
.admin-layout[data-theme="light"] .metric-card,
.admin-layout[data-theme="light"] .sidebar-card,
.admin-layout[data-theme="light"] .product-row,
.admin-layout[data-theme="light"] .product-variation-row,
.admin-layout[data-theme="light"] .variation-row,
.admin-layout[data-theme="light"] .variation-attribute,
.admin-layout[data-theme="light"] .variation-list-item,
.admin-layout[data-theme="light"] .variation-image-row,
.admin-layout[data-theme="light"] .variation-image-option {
  background: var(--admin-surface);
  box-shadow: 0 12px 28px rgba(24, 38, 60, 0.08);
}

.panel-card {
  border-radius: 8px;
}

.metric-card,
.sidebar-card {
  border-radius: 8px;
  padding: 20px;
}

.metric-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
}

.metric-card:hover,
.sidebar-card:hover {
  border-color: var(--admin-border-strong);
  transform: translateY(-2px);
}

.metric-card span,
.metric-card p,
.sidebar-card p,
.products-toolbar p {
  color: var(--admin-muted);
  line-height: 1.55;
}

.metric-card strong {
  font-size: 20px;
  line-height: 1.2;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.auth-form {
  gap: 15px;
}

.auth-form label,
.modal-section label {
  display: grid;
  gap: 8px;
  color: var(--admin-muted);
  font-size: 14px;
  font-weight: 700;
}

.product-category-field {
  display: grid;
  gap: 8px;
  color: var(--admin-muted);
  font-size: 14px;
  font-weight: 700;
}

.product-category-selector {
  display: grid;
  gap: 7px;
}

.auth-form input,
.auth-form select,
.auth-form textarea,
.dashboard-date-filter input,
.modal-section input,
.modal-section select,
.modal-section textarea,
.product-modal input,
.product-modal select,
.product-modal textarea {
  min-height: 38px;
  border-radius: 8px;
  border: 1px solid var(--admin-border);
  background: var(--admin-surface-2);
  color: var(--admin-text);
  outline: none;
}

.product-modal input,
.product-modal select {
  padding: 7px 10px;
}

.product-modal input[type="file"] {
  min-height: 40px;
  padding: 8px 10px;
}

.auth-form textarea,
.modal-section textarea,
.product-modal textarea {
  min-height: 118px;
  resize: vertical;
}

.product-category-picker {
  display: grid;
  gap: 6px;
  max-height: 178px;
  overflow: auto;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid var(--admin-border);
  background: var(--admin-surface-2);
}

.selo-product-picker {
  max-height: 320px;
}

.selo-product-search {
  margin-bottom: 8px;
}

.selo-product-empty {
  padding: 10px;
  text-align: center;
}

.product-category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-height: 22px;
  align-items: flex-start;
}

.product-category-chip {
  min-height: 22px;
  padding: 2px 5px 2px 7px;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--admin-border));
  background: color-mix(in srgb, var(--accent) 15%, var(--admin-surface));
  font-size: 11px;
  font-weight: 800;
}

.product-category-chip button {
  width: 16px;
  height: 16px;
  min-height: 16px;
  border-radius: 5px;
}

.rich-text-field {
  display: grid;
  gap: 8px;
  color: var(--admin-muted);
  font-size: 14px;
  font-weight: 700;
}

.rich-text-field .trumbowyg-box,
.rich-text-field .trumbowyg-editor-box {
  margin: 0;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-surface-2);
  color: var(--admin-text);
  overflow: hidden;
}

.rich-text-field .trumbowyg-button-pane {
  min-height: 38px;
  padding: 4px 6px;
  border-bottom: 1px solid var(--admin-border);
  background: color-mix(in srgb, var(--admin-surface-2) 86%, white 14%);
}

.rich-text-field .trumbowyg-button-pane::after {
  display: none;
}

.rich-text-field .trumbowyg-button-pane button {
  width: 30px;
  height: 30px;
  min-height: 30px;
  margin: 0 2px;
  border-radius: 7px;
  background: transparent;
  box-shadow: none;
}

.rich-text-field .trumbowyg-button-pane button:hover,
.rich-text-field .trumbowyg-button-pane button.trumbowyg-active {
  background: color-mix(in srgb, var(--accent) 14%, var(--admin-surface));
}

.rich-text-field .trumbowyg-button-pane button svg {
  fill: var(--admin-text);
}

.rich-text-field .trumbowyg-editor,
.rich-text-field .trumbowyg-textarea {
  min-height: 230px;
  padding: 12px;
  background: var(--admin-surface-2);
  color: var(--admin-text);
  font-size: 14px;
  line-height: 1.55;
}

.rich-text-field .trumbowyg-textarea {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.rich-text-head,
.rich-text-toolbar,
.rich-text-mode {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rich-text-head {
  justify-content: space-between;
}

.rich-text-mode,
.rich-text-toolbar {
  flex-wrap: wrap;
}

.auth-form .rich-text-mode button,
.auth-form .rich-text-toolbar button {
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-surface-2);
  color: var(--admin-text);
  box-shadow: none;
  font-size: 13px;
  font-weight: 750;
}

.auth-form .rich-text-mode button.is-active,
.auth-form .rich-text-mode button:hover,
.auth-form .rich-text-toolbar button:hover {
  border-color: var(--admin-border-strong);
  background: color-mix(in srgb, var(--accent) 12%, var(--admin-surface));
  box-shadow: none;
  transform: none;
}

.rich-text-editor {
  min-height: 180px;
  padding: 12px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-surface-2);
  color: var(--admin-text);
  outline: none;
  line-height: 1.6;
  overflow: auto;
}

.rich-text-editor:focus {
  border-color: var(--admin-border-strong);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}

.rich-text-field textarea:not([hidden]) {
  display: block;
  min-height: 180px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.55;
}

.image-input-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.image-input-preview[hidden] {
  display: none;
}

.image-input-preview-item {
  position: relative;
  display: grid;
  gap: 6px;
  width: 96px;
  height: 96px;
  padding: 0;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-surface-2);
  overflow: hidden;
}

.image-input-preview-item img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  background: var(--admin-surface-3);
}

.image-input-preview-item span {
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 5px;
  overflow: hidden;
  padding: 3px 5px;
  border-radius: 5px;
  background: rgba(15, 23, 42, 0.72);
  color: #ffffff;
  font-size: 10px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.image-input-preview-item button {
  position: absolute;
  top: 4px;
  right: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-height: 22px;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  box-shadow: none;
}

.modal-section .product-category-option {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 7px 9px;
  border-radius: 6px;
  color: var(--admin-text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.modal-section .product-category-option[hidden] {
  display: none !important;
}

.modal-section .product-category-option:hover {
  background: rgba(255, 255, 255, 0.05);
}

.modal-section .product-category-option input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  accent-color: var(--admin-primary);
}

.admin-checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-surface-2);
  color: var(--admin-text);
  cursor: pointer;
}

.admin-checkbox-line input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  accent-color: var(--admin-primary);
}

.auth-form input:hover,
.auth-form select:hover,
.auth-form textarea:hover,
.modal-section input:hover,
.modal-section select:hover,
.modal-section textarea:hover {
  border-color: color-mix(in srgb, var(--admin-border-strong) 70%, var(--admin-border));
}

.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus,
.modal-section input:focus,
.modal-section select:focus,
.modal-section textarea:focus,
.product-modal input:focus,
.product-modal select:focus,
.product-modal textarea:focus {
  border-color: var(--admin-border-strong);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
}

.auth-form input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--accent);
}

.product-highlight-line {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  margin-top: 2px;
  padding: 8px 10px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-surface-2);
  color: var(--admin-text) !important;
  cursor: pointer;
}

.product-highlight-line input {
  width: 16px !important;
  height: 16px;
  min-height: 16px !important;
  margin: 0;
  flex: 0 0 auto;
}

.product-highlight-line span {
  line-height: 1.2;
}

.auth-form input[type="color"] {
  cursor: pointer;
}

.auth-form button,
.button,
.admin-layout form button[type="submit"] {
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #151515;
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(255, 216, 0, 0.13);
}

.auth-form button:hover,
.button:hover,
.admin-layout form button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255, 216, 0, 0.2);
  filter: saturate(1.04);
}

.menu form button[type="submit"],
.sidebar-footer form button[type="submit"] {
  min-height: 38px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(248, 250, 252, 0.68);
  box-shadow: none;
}

.menu form button[type="submit"]:hover,
.sidebar-footer form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--admin-danger) 16%, transparent);
  border-color: color-mix(in srgb, var(--admin-danger) 44%, transparent);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(255, 107, 107, 0.08);
}

.sidebar-footer .theme-toggle {
  min-height: 38px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(248, 250, 252, 0.68);
  box-shadow: none;
}

.sidebar-footer .theme-toggle:hover {
  background: rgba(255, 216, 0, 0.1);
  border-color: rgba(255, 216, 0, 0.4);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(255, 216, 0, 0.08);
}

.button-ghost {
  background: var(--admin-surface-2);
  border-color: var(--admin-border);
  color: var(--admin-text);
  box-shadow: none;
}

.button-danger {
  background: color-mix(in srgb, var(--admin-danger) 18%, var(--admin-surface));
  color: #ffe8e8;
  border-color: color-mix(in srgb, var(--admin-danger) 58%, transparent);
  box-shadow: none;
}

.admin-layout[data-theme="light"] .button-danger {
  color: #8f1f1f;
}

.alert {
  border: 1px solid var(--admin-border);
  border-radius: 8px;
}

.products-shell {
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 24px;
}

.products-toolbar {
  min-height: 60px;
  margin-bottom: 20px;
}

.products-toolbar-actions,
.product-sidebar-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.products-toolbar-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.products-search {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: min(100%, 420px);
}

.products-search input,
.products-search select {
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid var(--admin-border);
  background: var(--admin-surface);
  color: var(--admin-text);
  padding: 0 12px;
}

.products-search input {
  min-width: 220px;
  flex: 1;
}

.products-search select {
  min-width: 170px;
}

.product-sidebar-head {
  display: none;
}

.product-row {
  border-radius: 8px;
  min-height: 78px;
  background: var(--admin-surface);
}

.product-row:hover,
.product-variation-row:hover,
.variation-list-item:hover,
.variation-image-row.is-selectable:hover {
  background: color-mix(in srgb, var(--admin-surface) 84%, var(--accent) 16%);
  border-color: var(--admin-border-strong);
  box-shadow: var(--admin-shadow);
  transform: translateY(-2px);
}

.admin-layout .token-row:hover {
  background: var(--admin-surface);
  border-color: var(--admin-border);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.10);
  transform: none;
}

.product-row-thumb {
  width: 68px;
  height: 68px;
  border-radius: 6px;
  background: var(--admin-surface-3);
}

.product-row-thumb.is-subproduct {
  width: 48px;
  height: 48px;
  border-radius: 6px;
}

.product-row-children {
  margin-left: 102px;
  margin-right: 0;
  border-left-color: var(--admin-border-strong);
}

.product-row-main strong,
.variation-item-main strong {
  color: var(--admin-text);
}

.product-status {
  min-width: 78px;
  border: 1px solid currentColor;
  background: color-mix(in srgb, currentColor 10%, transparent);
  font-weight: 800;
}

.status-active { color: #55d979; }
.status-draft { color: #d7a700; }
.status-inactive { color: #f06b6b; }
.status-suspended { color: #d98b31; }

.product-sidebar {
  top: 94px;
  align-content: start;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--admin-surface) 92%, white 8%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.admin-layout[data-theme="light"] .product-sidebar {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(24, 38, 60, 0.08);
}

.product-sidebar .button,
.product-sidebar-action {
  width: 100%;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  border-color: var(--admin-border);
  background: var(--admin-surface-2);
  color: var(--admin-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: none;
}

.product-sidebar [data-open-product-modal] {
  border-color: color-mix(in srgb, var(--accent) 62%, var(--admin-border));
  background: color-mix(in srgb, var(--accent) 17%, var(--admin-surface));
  color: var(--admin-text);
}

.product-sidebar [data-open-bulk-selos] {
  background: transparent;
}

.product-sidebar .button-danger {
  border-color: color-mix(in srgb, var(--admin-danger) 52%, var(--admin-border));
  background: color-mix(in srgb, var(--admin-danger) 13%, var(--admin-surface));
  color: color-mix(in srgb, var(--admin-danger) 72%, #ffffff);
}

.product-sidebar .button:hover,
.product-sidebar-action:hover {
  border-color: var(--admin-border-strong);
  background: color-mix(in srgb, var(--accent) 13%, var(--admin-surface));
  box-shadow: none;
  transform: translateY(-1px);
}

.product-sidebar .button-danger:hover {
  border-color: color-mix(in srgb, var(--admin-danger) 72%, var(--admin-border));
  background: color-mix(in srgb, var(--admin-danger) 18%, var(--admin-surface));
  color: #ffffff;
}

.product-sidebar .button:disabled,
.product-sidebar-action:disabled {
  opacity: 0.52;
  cursor: not-allowed;
  transform: none;
}

.product-sidebar form {
  margin: 0;
}

.product-modal {
  max-height: calc(100vh - 36px);
  overflow: auto;
  background: var(--admin-surface);
  border: 1px solid var(--admin-border-strong);
  border-radius: 8px;
  box-shadow: var(--admin-shadow);
}

.product-modal::backdrop,
dialog::backdrop {
  background: rgba(3, 7, 18, 0.72);
  backdrop-filter: blur(5px);
}

.product-modal-form {
  padding: 24px;
}

.product-modal-head {
  position: sticky;
  top: 0;
  z-index: 2;
  margin: -24px -24px 10px;
  padding: 18px 24px;
  background: color-mix(in srgb, var(--admin-surface) 90%, transparent);
  border-bottom: 1px solid var(--admin-border);
  backdrop-filter: blur(14px);
}

.product-modal-head h2 {
  line-height: 1.1;
}

.product-modal-grid {
  gap: 20px;
  align-items: stretch;
  margin-top: 10px;
}

.modal-section,
.modal-variation-builder {
  padding: 18px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-surface-2);
}

.modal-section {
  align-content: start;
}

.product-modal-details,
.product-modal-meta {
  gap: 10px;
  height: 100%;
}

.product-modal-description {
  grid-column: 1 / -1;
}

.product-modal-images {
  grid-column: 1 / -1;
}

.modal-section-head {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--admin-border);
}

.modal-variation-builder {
  position: relative;
  padding: 0;
  background: color-mix(in srgb, var(--admin-surface) 94%, white 6%);
  overflow: hidden;
}

.auth-form .variation-panel-toggle {
  background: transparent;
  border: 0;
  color: var(--admin-text);
  box-shadow: none;
}

.auth-form .variation-panel-toggle:hover {
  background: color-mix(in srgb, var(--admin-surface-3) 42%, transparent);
  box-shadow: none;
  filter: none;
  transform: none;
}

.auth-form .variation-actions .button,
.auth-form .rich-text-mode button,
.auth-form .rich-text-toolbar button,
.auth-form .trumbowyg-button-pane button {
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid var(--admin-border);
  border-radius: 8px;
  background: var(--admin-surface-2);
  color: var(--admin-text);
  box-shadow: none;
  font-size: 13px;
  font-weight: 750;
}

.auth-form .variation-actions .button {
  width: auto;
}

.auth-form .variation-attribute-actions .button {
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: none;
  font-size: 13px;
  font-weight: 800;
}

.auth-form .variation-attribute-actions .variation-generate-button {
  border-color: var(--accent);
  background: var(--accent);
  color: #151515;
}

.auth-form .variation-attribute-actions .variation-trash-button {
  width: 42px;
  padding: 0;
  border-color: color-mix(in srgb, var(--admin-danger) 42%, var(--admin-border));
  background: var(--admin-surface-2);
  color: var(--admin-danger);
}

.auth-form .trumbowyg-button-pane button {
  width: 30px;
  height: 30px;
  min-height: 30px;
  padding: 0;
}

.auth-form .variation-actions .button:hover,
.auth-form .rich-text-mode button.is-active,
.auth-form .rich-text-mode button:hover,
.auth-form .rich-text-toolbar button:hover,
.auth-form .trumbowyg-button-pane button:hover,
.auth-form .trumbowyg-button-pane button.trumbowyg-active {
  border-color: var(--admin-border-strong);
  background: color-mix(in srgb, var(--accent) 12%, var(--admin-surface));
  box-shadow: none;
  filter: none;
  transform: none;
}

.modal-variation-builder .modal-section-head {
  padding: 16px 18px;
  border-bottom: 0;
}

.modal-variation-builder:not(.is-collapsed) .modal-section-head {
  border-bottom: 1px solid var(--admin-border);
}

.variation-chip {
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 18%, var(--admin-surface));
  color: var(--admin-text);
  min-height: 24px;
  padding: 3px 6px 3px 8px;
  font-size: 12px;
  font-weight: 600;
}

.variation-chip button {
  width: 17px;
  height: 17px;
  min-height: 17px;
}

.product-category-chip {
  min-height: 24px;
  padding: 3px 6px 3px 8px;
  font-size: 12px;
  font-weight: 600;
}

.product-category-chip button {
  width: 17px;
  height: 17px;
  min-height: 17px;
}

.variation-list-item,
.variation-row,
.variation-attribute,
.variation-image-row,
.product-variation-row {
  border-radius: 8px;
}

.existing-image-thumb {
  border-radius: 8px;
  background: var(--admin-surface-3);
}

.product-modal-footer {
  position: sticky;
  bottom: 0;
  margin: 18px -24px -24px;
  padding: 18px 24px;
  background: color-mix(in srgb, var(--admin-surface) 92%, transparent);
  border-top: 1px solid var(--admin-border);
  backdrop-filter: blur(14px);
}

.admin-layout details {
  border-top: 1px solid var(--admin-border);
  padding-top: 12px;
}

.admin-layout summary {
  width: fit-content;
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--accent);
  font-weight: 800;
}

.admin-layout summary:hover {
  background: var(--admin-hover);
}

@media (max-width: 1100px) {
  body.is-admin-menu-open,
  body.is-product-sidebar-open {
    overflow: hidden;
  }

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

  .variation-attribute-head {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .variation-panel-head {
    grid-template-columns: 1fr;
  }

  .variation-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .products-shell {
    grid-template-columns: 1fr;
  }

  .product-sidebar-toggle,
  .product-sidebar-head {
    display: flex;
  }

  .product-sidebar-toggle {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }

  .product-sidebar-head {
    justify-content: space-between;
  }

  .product-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 30;
    width: min(340px, calc(100vw - 52px));
    height: 100vh;
    padding: 18px;
    overflow: auto;
    align-content: start;
    align-items: start;
    background: var(--admin-surface);
    border-left: 1px solid var(--admin-border-strong);
    box-shadow: -18px 0 44px rgba(0, 0, 0, 0.24);
    transform: translateX(105%);
    transition: transform 180ms ease;
  }

  .product-sidebar .button,
  .product-sidebar-action {
    width: 100%;
    min-height: 38px;
    height: auto;
    padding: 8px 12px;
    line-height: 1.2;
    white-space: nowrap;
    align-self: stretch;
    justify-self: stretch;
  }

  .product-sidebar .sidebar-card {
    width: 100%;
    min-height: 0;
    padding: 16px;
  }

  body.is-product-sidebar-open .product-sidebar {
    transform: translateX(0);
  }
}

@media (max-width: 920px) {
  .admin-frame {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    width: min(300px, calc(100vw - 52px));
    height: 100vh;
    padding: 18px;
    overflow: auto;
    transform: translateX(-105%);
    transition: transform 180ms ease;
  }

  body.is-admin-menu-open .sidebar {
    transform: translateX(0);
  }

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

  .menu a:hover,
  .menu button:hover,
  .menu a.is-active {
    transform: translateY(-1px);
  }

  .menu a.is-active::before {
    display: none;
  }

  .topbar {
    top: 0;
    padding: 14px 18px;
    gap: 10px;
  }

  .admin-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }

  .page-content {
    padding: 20px;
  }

  .admin-layout .auth-form > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 620px) {
  .topbar {
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .page-content {
    padding: 16px;
  }

  .resource-page-head,
  .token-result,
  .product-row,
  .product-variation-row,
  .variation-list-item,
  .product-modal-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .resource-head-actions {
    justify-content: stretch;
  }

  .resource-head-actions .button {
    width: 100%;
  }

  .token-result {
    grid-template-columns: 1fr;
  }

  .products-toolbar-actions {
    justify-content: flex-end;
  }

  .products-search {
    width: 100%;
    min-width: 0;
    flex-wrap: wrap;
  }

  .products-search input,
  .products-search select {
    min-width: min(100%, 220px);
    flex: 1 1 180px;
  }

  .dashboard-date-filter {
    align-items: end;
    flex-wrap: wrap;
  }

  .products-toolbar {
    align-items: flex-start;
  }

  .product-list-selectbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-selection-row {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .product-row-meta,
  .variation-item-meta {
    justify-items: start;
  }

  .product-row-left {
    align-items: flex-start;
  }

  .product-row-children {
    margin-left: 40px;
    padding-left: 12px;
  }

  .existing-image-thumb {
    width: 96px;
    height: 96px;
  }

  .variation-image-row .product-row-thumb,
  .variation-image-row .product-row-thumb.is-subproduct {
    flex-basis: 76px;
    width: 76px;
    height: 76px;
  }

  .product-modal {
    width: calc(100vw - 16px);
  }

  .product-modal-form {
    padding: 18px;
  }

  .product-modal-head {
    margin: -18px -18px 16px;
    padding: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .product-modal-footer {
    margin: 16px -18px -18px;
    padding: 16px 18px;
  }
}
