:root {
  --green: #ee6d00;
  --green-2: #b44900;
  --leaf: #fff2e7;
  --tomato: #d9412e;
  --sun: #ffb000;
  --ink: #33251b;
  --muted: #79685d;
  --line: #f0d5bf;
  --paper: #fffaf6;
  --white: #ffffff;
  --blue: #e85f00;
  --shadow: 0 12px 32px rgba(180, 73, 0, 0.14);
  --font-main: "Fira Sans", "Avenir Next", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

button {
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  align-items: center;
  gap: 10px;
  padding: 6px clamp(14px, 3vw, 40px);
  background: rgba(255, 250, 246, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.topbar-store {
  grid-template-columns: auto auto auto minmax(260px, 1fr) auto;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 198px;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
}

.brand-mark-commercium {
  width: 178px;
  height: 54px;
  justify-content: start;
}

.nino-logo {
  display: block;
  object-fit: contain;
}

.nino-logo-small {
  width: 58px;
  height: 58px;
}

.commercium-logo {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(185, 71, 0, 0.16));
}

.commercium-logo-full {
  width: min(100%, 260px);
  height: auto;
  max-height: 78px;
  object-fit: contain;
}

.brand-mark-commercium .commercium-logo-full {
  width: 178px;
  height: 54px;
  max-height: 54px;
  object-position: left center;
}

.brand-name {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.05;
  color: var(--green-2);
}

.brand-sub {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 500;
}

.category-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 0 16px;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.compact-nav-button {
  padding-inline: 14px;
}

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

.ui-icon {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ui-icon-filled {
  fill: currentColor;
}

.nav-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #fff1eb;
  color: var(--green-2);
}

.top-search-wrap {
  position: relative;
  width: 100%;
  z-index: 25;
}

.top-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  width: 100%;
  min-height: 46px;
  overflow: hidden;
  border: 1px solid #d8b99e;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 4px 14px rgba(126, 66, 22, 0.05);
}

.top-search:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(238, 109, 0, 0.14);
}

.top-search input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 16px;
  outline: 0;
  font-size: 0.96rem;
  font-weight: 500;
}

.top-search input::placeholder {
  color: #9a887c;
  font-weight: 600;
}

.top-search button {
  display: grid;
  place-items: center;
  border: 0;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.top-search button .ui-icon {
  width: 22px;
  height: 22px;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  right: auto;
  width: min(1040px, calc(100vw - 32px));
  transform: translateX(-50%);
  display: none;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  max-height: min(560px, calc(100vh - 100px));
  overflow: auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 20px 48px rgba(65, 31, 7, 0.18);
}

.top-search-wrap:focus-within .search-suggestions {
  display: grid;
}

.suggestion-column h3,
.suggestion-products h3 {
  margin: 0 0 12px;
  color: var(--green-2);
  font-size: 1.2rem;
  line-height: 1.15;
}

.suggestion-list {
  display: grid;
  gap: 4px;
}

.suggestion-list button {
  display: grid;
  gap: 1px;
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  padding: 7px 10px;
  text-align: left;
}

.suggestion-list button:hover {
  background: #fff1eb;
}

.suggestion-list strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

.suggestion-list span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.suggestion-products-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.suggestion-products-head h3 {
  margin: 0;
}

.suggestion-products-head button {
  border: 0;
  background: transparent;
  color: var(--green);
  font-weight: 900;
  white-space: nowrap;
}

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

.suggestion-product {
  position: relative;
  display: grid;
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.suggestion-product .favorite {
  top: 10px;
  right: 10px;
  z-index: 2;
}

.suggestion-product-main {
  display: grid;
  align-content: start;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 12px 58px;
  text-align: left;
}

.suggestion-product-main img,
.suggestion-product-main .product-art {
  width: calc(100% + 24px);
  height: 112px;
  margin: 0 -12px 6px;
  object-fit: cover;
}

.suggestion-product-main .product-art {
  border-radius: 0;
}

.suggestion-product-main .product-art span {
  width: 42px;
  height: 42px;
  font-size: 0.98rem;
}

.suggestion-product-main span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.suggestion-product-main strong {
  min-height: 42px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 900;
}

.suggestion-product-main small {
  color: var(--green-2);
  font-size: 1rem;
  font-weight: 900;
}

.suggestion-product-main em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.suggestion-cart {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
}

.suggestion-cart .ui-icon {
  width: 21px;
  height: 21px;
}

.suggestion-empty {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.nav-tabs,
.segmented {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-tabs button,
.segmented button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  padding: 0 13px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-tabs button.active,
.segmented button.active {
  background: var(--green);
  color: var(--white);
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.quick-action {
  display: inline-grid;
  place-items: center;
  gap: 1px;
  min-width: 70px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  padding: 2px 8px;
  font-weight: 700;
}

.quick-action .nav-icon {
  width: 32px;
  height: 28px;
  background: transparent;
  color: var(--green-2);
}

.quick-action small {
  color: var(--ink);
  font-size: 0.7rem;
  line-height: 1.05;
  font-weight: 700;
  white-space: nowrap;
}

.quick-action:hover,
.category-menu-button:hover {
  background: #fff1eb;
}

.cart-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-2);
  padding: 0 14px;
  font-size: 0.92rem;
  font-weight: 750;
  white-space: nowrap;
}

.cart-pill .nav-icon {
  width: 24px;
  height: 24px;
  background: transparent;
}

.cart-pill strong {
  color: var(--ink);
  padding-left: 8px;
  border-left: 1px solid #f0c9b2;
  font-size: 0.78rem;
  font-weight: 700;
}

.icon-button,
.primary,
.secondary,
.ghost,
.danger {
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 14px;
  font-weight: 800;
}

.icon-button {
  display: inline-grid;
  min-width: 42px;
  place-items: center;
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(238, 109, 0, 0.16);
}

.secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--green-2);
}

.ghost {
  background: transparent;
  color: var(--green-2);
}

.danger {
  background: #fff1ef;
  color: #9b2518;
  border-color: #f2c7c0;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 9px;
  background: var(--leaf);
  color: var(--green-2);
  font-size: 0.75rem;
  font-weight: 800;
  white-space: nowrap;
}

.badge.warn {
  background: #fff6d8;
  color: #76510a;
}

.badge.hot {
  background: #ffead8;
  color: var(--green-2);
}

.badge.blue {
  background: #ffe7d2;
  color: var(--green-2);
}

.hero {
  min-height: 260px;
  display: flex;
  align-items: center;
  padding: clamp(32px, 5vw, 58px) clamp(18px, 7vw, 132px);
  background:
    linear-gradient(
      90deg,
      rgba(255, 250, 246, 0.98) 0%,
      rgba(255, 250, 246, 0.94) 39%,
      rgba(255, 250, 246, 0.25) 62%,
      rgba(255, 250, 246, 0) 100%
    ),
    url("https://images.unsplash.com/photo-1610348725531-843dff563e2c?auto=format&fit=crop&w=1500&q=88");
  background-size: cover;
  background-position: center right;
  color: var(--ink);
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.hero p {
  max-width: 460px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.45;
  font-weight: 700;
}

.hero-actions,
.row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero .primary {
  min-width: 180px;
  background: var(--green);
  color: var(--white);
}

.hero .secondary {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.panel h2,
.section-head h2 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.25;
  font-weight: 850;
}

.panel p,
.section-head p {
  color: var(--muted);
  margin: 8px 0 0;
  line-height: 1.55;
}

.content {
  padding: 28px clamp(16px, 4vw, 48px) 48px;
}

#categorias,
#catalogo-productos,
.account-hero,
.checkout,
.faq-section,
.newsletter-band,
.returns-strip,
.returns-page,
.legal-page,
.support-layout {
  scroll-margin-top: 112px;
}

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

.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(160px, auto) minmax(160px, auto) auto;
  gap: 10px;
  margin-bottom: 20px;
}

.toolbar-action {
  align-self: end;
  min-height: 48px;
  white-space: nowrap;
}

.store-section {
  margin-bottom: 28px;
}

.categories-page {
  min-height: 68vh;
}

.category-picker-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 247, 238, 0.98), rgba(255, 252, 248, 0.92)),
    radial-gradient(circle at 88% 20%, rgba(244, 119, 33, 0.16), transparent 32%);
}

.category-picker-hero h1 {
  margin: 12px 0 0;
  max-width: 760px;
  color: var(--green-2);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 0.95;
}

.category-picker-hero p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.45;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.45fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
  margin-bottom: 28px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid #f2d2bf;
  border-radius: 8px;
  background: #fff8f4;
  box-shadow: 0 8px 24px rgba(126, 66, 22, 0.07);
}

.faq-intro {
  position: sticky;
  top: 96px;
}

.faq-intro h2 {
  margin: 8px 0 0;
  color: var(--green-2);
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  line-height: 1.08;
}

.faq-intro p {
  margin: 10px 0 18px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 750;
}

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

.faq-item {
  border: 1px solid #f1d7c4;
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 14px;
  align-items: center;
  min-height: 62px;
  padding: 14px 16px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #fff1eb;
  color: var(--green-2);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.18s ease;
}

.faq-item[open] summary strong {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 16px 18px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
}

.service-summary {
  margin: 0;
  padding: 0 clamp(18px, 7vw, 132px);
  border-top: 1px solid #f0ddcf;
  border-bottom: 1px solid #f0ddcf;
  background: rgba(255, 250, 246, 0.96);
  box-shadow: 0 6px 18px rgba(126, 66, 22, 0.05);
}

.service-summary-head h2 {
  margin: 8px 0 0;
  color: var(--green-2);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1.1;
}

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

.service-summary-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 66px;
  padding: 9px clamp(12px, 2vw, 28px);
  border-right: 1px solid #efd8c8;
  background: transparent;
}

.service-summary-item:last-child {
  border-right: 0;
}

.service-summary-item > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: #73665d;
}

.service-summary-item > span .ui-icon {
  width: 22px;
  height: 22px;
  stroke-width: 2.1;
}

.service-summary-item strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.2;
  font-weight: 900;
}

.service-summary-item p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
  font-weight: 700;
}

.section-head.centered {
  justify-content: center;
  text-align: center;
}

.section-head.centered p {
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}

.how-section {
  margin: clamp(34px, 5vw, 56px) 0 28px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid #f2d2bf;
  border-radius: 8px;
  background: #fff1eb;
  box-shadow: 0 8px 24px rgba(126, 66, 22, 0.07);
}

.how-section .section-head {
  margin-bottom: clamp(16px, 2.4vw, 24px);
}

.how-section h2 {
  margin: 8px 0 0;
  color: var(--green-2);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.1;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.how-step {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.how-illustration {
  position: relative;
  width: min(100%, 132px);
  aspect-ratio: 1;
  margin-bottom: 8px;
}

.how-illustration svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 14px rgba(126, 66, 22, 0.08));
}

.how-illustration > span {
  position: absolute;
  left: 4px;
  bottom: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 3px solid #fff1eb;
  border-radius: 50%;
  background: var(--green-2);
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 8px 16px rgba(126, 66, 22, 0.18);
}

.how-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.2;
  font-weight: 900;
}

.how-step p {
  max-width: 210px;
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.36;
  font-weight: 700;
  font-size: 0.9rem;
}

.welcome-strip,
.benefits-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 5px 18px rgba(126, 66, 22, 0.07);
}

.marketing-banner-strip {
  position: relative;
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.marketing-banner-carousel {
  display: block;
}

.marketing-banner-window {
  overflow: hidden;
  border-radius: 8px;
}

.marketing-banner-track {
  display: flex;
  transition: transform 0.32s ease;
  will-change: transform;
}

.marketing-banner-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.marketing-banner-card {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  min-height: clamp(210px, 24vw, 320px);
  overflow: hidden;
  padding: clamp(14px, 2.4vw, 24px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8f4;
  background-position: center;
  background-size: cover;
  box-shadow: 0 10px 28px rgba(126, 66, 22, 0.08);
}

.marketing-banner-card.image-only {
  width: 100%;
  min-height: clamp(190px, 18vw, 280px);
  padding: 0;
  border: 1px solid var(--line);
  background: #fffaf5;
  cursor: pointer;
}

.marketing-banner-card.image-only:focus-visible {
  outline: 3px solid rgba(238, 109, 0, 0.38);
  outline-offset: 3px;
}

.marketing-banner-card.has-image {
  background-color: #fffaf5;
  background-image: none;
}

.marketing-banner-card.has-image::before {
  content: none;
}

.marketing-banner-image {
  display: block;
  width: 100%;
  height: clamp(190px, 18vw, 280px);
  object-fit: contain;
  object-position: center;
  background: #fffaf5;
}

.marketing-banner-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: clamp(14px, 2vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.86);
  box-shadow: 0 12px 28px rgba(51, 32, 20, 0.12);
  backdrop-filter: blur(8px);
}

.marketing-banner-card.has-image .marketing-banner-copy {
  background: rgba(255, 250, 246, 0.76);
}

.marketing-banner-card h2 {
  margin: 8px 0 4px;
  color: var(--green-2);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.05;
}

.marketing-banner-card p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.marketing-banner-card > .primary {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.carousel-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background: rgba(255, 250, 246, 0.82);
  color: var(--green-2);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(51, 32, 20, 0.14);
  transform: translateY(-50%);
}

.carousel-arrow.prev {
  left: 14px;
}

.carousel-arrow.next {
  right: 14px;
}

.carousel-dots {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 14px;
  display: flex;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.8);
  box-shadow: 0 8px 18px rgba(51, 32, 20, 0.1);
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  min-height: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(111, 94, 82, 0.36);
  padding: 0;
}

.carousel-dots button.active {
  width: 22px;
  border-radius: 999px;
  background: var(--green);
}

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

.promotion-gallery-card {
  display: grid;
  gap: 10px;
}

.promotion-gallery-card .marketing-banner-card {
  min-height: clamp(190px, 22vw, 280px);
}

.promotion-gallery-card strong {
  display: block;
  color: var(--green-2);
  font-size: 1rem;
}

.promotion-gallery-card span {
  display: block;
  color: var(--muted);
  font-weight: 750;
  margin-top: 2px;
}

.account-access-panel {
  max-width: 760px;
  margin: 0 auto;
}

.welcome-strip {
  position: relative;
  z-index: 2;
  align-items: center;
  margin-top: -22px;
  padding: 18px clamp(18px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(126, 66, 22, 0.11);
}

.marketing-banner-strip + .welcome-strip {
  margin-top: clamp(18px, 3vw, 34px);
}

.welcome-strip span {
  display: block;
  color: var(--ink);
  font-weight: 850;
}

.welcome-strip strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.2;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 12px;
  flex: 1;
  max-width: 960px;
}

.quick-links button {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  column-gap: 12px;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  padding: 10px 16px;
  font-weight: 800;
  text-align: left;
  box-shadow: 0 8px 18px rgba(126, 66, 22, 0.05);
}

.quick-links button > span {
  display: grid;
  width: 34px;
  height: 34px;
  grid-row: span 2;
  place-items: center;
  border-radius: 50%;
  background: #fff1eb;
  color: var(--green-2);
}

.quick-links button strong {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.2;
}

.quick-links button small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.quick-links .ui-icon {
  width: 19px;
  height: 19px;
}

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

.recommendation-tile {
  display: grid;
  gap: 8px;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 16px;
  text-align: left;
  box-shadow: 0 5px 18px rgba(126, 66, 22, 0.07);
}

.recommendation-tile span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--green-2);
}

.recommendation-tile span .ui-icon {
  width: 23px;
  height: 23px;
}

.recommendation-tile strong {
  color: var(--green-2);
  font-size: 1.05rem;
}

.recommendation-tile small {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.mini-product-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.mini-product {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
  cursor: pointer;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s ease;
}

.mini-product:hover,
.mini-product:focus-visible {
  border-color: var(--green);
  box-shadow: 0 8px 22px rgba(180, 73, 0, 0.12);
  outline: 0;
  transform: translateY(-1px);
}

.mini-product img,
.mini-product .product-art {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.mini-product .product-art span,
.mini-cart-item .product-art span {
  width: 34px;
  height: 34px;
  font-size: 0.82rem;
}

.mini-product .product-art small,
.mini-cart-item .product-art small {
  display: none;
}

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

.mini-product span {
  color: var(--green-2);
  font-weight: 850;
  margin-top: 4px;
}

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

.category-tile {
  display: grid;
  gap: 8px;
  min-height: 166px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 12px;
  text-align: left;
}

.category-tile span {
  color: var(--green-2);
  font-weight: 900;
  line-height: 1.15;
}

.category-tile img {
  width: 100%;
  height: 84px;
  border-radius: 8px;
  object-fit: cover;
}

.category-tile svg {
  width: 100%;
  height: 92px;
  display: block;
}

.category-tile small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.25;
}

.category-tile.teal span {
  color: #177d73;
}
.category-tile.blue span {
  color: #216a9b;
}
.category-tile.green span {
  color: #2b7a3d;
}
.category-tile.purple span {
  color: #82508e;
}
.category-tile.rose span {
  color: #a54d68;
}
.category-tile.brown span {
  color: #9a5a20;
}

.benefits-strip {
  background: #fff7d8;
}

.benefits-strip h2 {
  margin: 8px 0 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.benefits-strip p {
  color: var(--muted);
  margin: 8px 0 0;
}

.returns-strip {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.6fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  margin-bottom: 28px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid #f2d2bf;
  border-radius: 8px;
  background: #fff8f4;
  box-shadow: 0 8px 24px rgba(126, 66, 22, 0.07);
}

.returns-copy h2 {
  margin: 8px 0 0;
  color: var(--green-2);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.1;
}

.returns-copy p {
  margin: 10px 0 16px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.55;
}

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

.returns-grid article {
  min-height: 132px;
  padding: 14px;
  border: 1px solid #f4dcca;
  border-radius: 8px;
  background: var(--white);
}

.returns-grid strong {
  display: block;
  color: var(--green-2);
  font-size: 1.25rem;
  line-height: 1.1;
}

.returns-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.field {
  display: grid;
  gap: 6px;
}

.field span,
.field label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.field textarea {
  min-height: 92px;
  padding: 10px 12px;
  resize: vertical;
}

.login-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(238, 109, 0, 0.1), transparent 28%),
    radial-gradient(circle at 84% 78%, rgba(47, 125, 68, 0.08), transparent 30%),
    linear-gradient(180deg, #fffaf6 0%, #fff6ef 100%);
}

.login-content {
  width: min(100%, 620px);
  margin: 0 auto;
  padding: 28px clamp(18px, 4vw, 48px);
}

.login-only {
  grid-template-columns: 1fr;
}

.login-panel {
  display: grid;
  align-content: center;
  min-height: auto;
  padding: clamp(26px, 4vw, 42px);
  border-color: #efc9ae;
  box-shadow: 0 24px 70px rgba(127, 59, 18, 0.14);
}

.login-panel::before {
  content: "";
  display: block;
  height: 4px;
  margin: calc(clamp(26px, 4vw, 42px) * -1) calc(clamp(26px, 4vw, 42px) * -1) 24px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--green), #f4a23a 48%, #2f7d44);
}

.login-panel .badge {
  justify-self: start;
  min-height: 28px;
  padding: 0 12px;
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.login-panel h2 {
  max-width: 500px;
  margin: 18px 0 10px;
  color: var(--green-2);
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  line-height: 1;
}

.login-panel p,
.identity-card p {
  max-width: 520px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.login-form {
  display: grid;
  gap: 14px;
  max-width: 100%;
  margin-top: 22px;
}

.login-form .field {
  gap: 8px;
}

.login-form .field span {
  color: var(--ink);
  font-size: 0.85rem;
}

.login-form input {
  min-height: 52px;
  border-color: #edc7ad;
  font-size: 1rem;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.login-form input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(238, 109, 0, 0.14);
}

.login-form .primary {
  min-height: 54px;
  margin-top: 4px;
  box-shadow: 0 14px 30px rgba(238, 109, 0, 0.22);
}

.login-brand-mark {
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid #efc9ae;
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf9, #fff2e7);
  box-shadow: 0 12px 26px rgba(180, 73, 0, 0.12);
}

.login-brand-mark-commercium {
  width: 100%;
  height: auto;
  min-height: 0;
  justify-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.login-brand-mark .commercium-logo,
.login-brand-mark .nino-logo-small {
  width: 64px;
  height: 64px;
}

.login-brand-mark-commercium .commercium-logo-full {
  width: min(100%, 480px);
  height: auto;
  max-height: 118px;
}

.identity-card {
  display: grid;
  align-content: start;
}

.identity-mark {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8f2;
}

.identity-mark .commercium-logo,
.identity-mark .nino-logo-small {
  width: 70px;
  height: 70px;
}

.identity-mark .commercium-logo-full {
  width: 150px;
  height: auto;
  max-height: 58px;
}

.login-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  width: min(100% - 36px, 980px);
  margin: 0 auto 22px;
  padding: 14px 18px;
  border: 1px solid rgba(240, 213, 191, 0.75);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  box-shadow: 0 10px 28px rgba(127, 59, 18, 0.06);
  backdrop-filter: blur(10px);
}

.login-footer strong,
.login-footer span {
  display: block;
}

.login-footer strong {
  color: var(--green-2);
  font-size: 0.95rem;
}

.login-footer span,
.login-footer a {
  font-size: 0.86rem;
  font-weight: 700;
}

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

.login-footer a {
  color: var(--green-2);
  text-decoration: none;
}

.login-footer a:hover {
  text-decoration: underline;
}

.notice-card {
  padding: 14px;
  border: 1px solid #f2d2bf;
  border-radius: 8px;
  background: #fff8f4;
}

.notice-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.app-loader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(255, 250, 246, 0.72);
  backdrop-filter: blur(8px);
}

.app-loader-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  width: min(440px, 100%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.app-loader-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.app-loader-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.loader-mark {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
}

.loader-mark::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 3px solid #f2d2bf;
  border-top-color: var(--green);
  border-radius: 50%;
  animation: loader-spin 0.85s linear infinite;
}

.loader-mark span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.loader-lines {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.loader-lines i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff1eb, #ffd9bd, #fff1eb);
  background-size: 220% 100%;
  animation: loader-shimmer 1.25s ease-in-out infinite;
}

.loader-lines i:nth-child(2) {
  width: 78%;
  animation-delay: 0.08s;
}

.loader-lines i:nth-child(3) {
  width: 56%;
  animation-delay: 0.16s;
}

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

@keyframes loader-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.catalog-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 260px;
  gap: 16px;
  align-items: start;
}

.catalog-sidebar,
.mini-cart-panel {
  position: sticky;
  top: 88px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 5px 18px rgba(126, 66, 22, 0.07);
}

.catalog-sidebar {
  display: grid;
  gap: 6px;
  max-height: calc(100vh - 124px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 12px;
  scrollbar-color: var(--orange) #fff1eb;
  scrollbar-width: thin;
}

.catalog-sidebar strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.9rem;
}

.catalog-sidebar button {
  min-height: 36px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  padding: 0 10px;
  font-weight: 850;
  text-align: left;
}

.catalog-sidebar button.active,
.catalog-sidebar button:hover {
  background: #fff1eb;
  color: var(--green-2);
}

.sidebar-note {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  margin-top: 8px;
  padding: 10px;
  border-radius: 8px;
  background: #fff8f4;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
}

.sidebar-note span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #ffead8;
  color: var(--green-2);
}

.sidebar-note .ui-icon {
  width: 18px;
  height: 18px;
}

.sidebar-note p {
  margin: 0;
}

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

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

.catalog-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
}

.catalog-loading-inline {
  color: var(--green-2);
}

.product-card-skeleton {
  min-height: 330px;
  padding: 12px;
  gap: 12px;
}

.skeleton-box,
.skeleton-line {
  display: block;
  border-radius: 8px;
  background: linear-gradient(100deg, #fff4ec 20%, #ffe4d1 38%, #fff4ec 56%);
  background-size: 200% 100%;
  animation: loader-shimmer 1.2s ease-in-out infinite;
}

.skeleton-box.product-image-wrap {
  width: 100%;
  min-height: 180px;
}

.skeleton-line {
  height: 16px;
  margin: 10px 0;
}

.skeleton-line.short {
  width: 42%;
}

.skeleton-line.tiny {
  width: 28%;
}

.product-card,
.panel,
.metric,
.order-row,
.cart-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 5px 18px rgba(126, 66, 22, 0.07);
}

.product-card {
  display: grid;
  overflow: hidden;
}

.product-card-highlight {
  border-color: var(--green);
  box-shadow:
    0 0 0 3px rgba(238, 109, 0, 0.18),
    0 12px 28px rgba(180, 73, 0, 0.16);
}

.product-image-wrap {
  position: relative;
}

.product-card img,
.product-card .product-art {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--leaf);
}

.product-art {
  display: grid;
  align-content: center;
  justify-items: center;
  overflow: hidden;
  border: 1px solid #f1dfd1;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff8f4, #ffe9d7);
  color: var(--green-2);
  text-align: center;
}

.product-art span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  color: inherit;
  font-size: 1.18rem;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(126, 66, 22, 0.08);
}

.product-art small {
  margin-top: 8px;
  color: #7e6c61;
  font-size: 0.78rem;
  font-weight: 750;
}

.product-art-bebidas {
  background: linear-gradient(135deg, #edf7ff, #d6ecff);
  color: #216a9b;
}
.product-art-frescos {
  background: linear-gradient(135deg, #f0faec, #dff4d7);
  color: #2b7a3d;
}
.product-art-limpieza {
  background: linear-gradient(135deg, #f4f0ff, #e8ddfa);
  color: #82508e;
}
.product-art-perfumeria {
  background: linear-gradient(135deg, #fff0f5, #ffe0ea);
  color: #a54d68;
}
.product-art-congelados {
  background: linear-gradient(135deg, #eefbff, #d9f3fb);
  color: #21718b;
}
.product-art-bazar {
  background: linear-gradient(135deg, #effaf7, #dcf1ec);
  color: #177d73;
}
.product-art-golosinas {
  background: linear-gradient(135deg, #fff4dd, #ffe5a8);
  color: #a45c00;
}
.product-art-mascotas {
  background: linear-gradient(135deg, #fff3e3, #f2ddc6);
  color: #9a5a20;
}

.favorite {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-2);
}

.favorite .ui-icon {
  width: 21px;
  height: 21px;
  stroke-width: 2.3;
}

.product-image-wrap .favorite {
  position: absolute;
  top: 10px;
  right: 10px;
}

.offer-flag {
  position: absolute;
  left: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  padding: 0 10px;
  font-size: 0.8rem;
  font-weight: 950;
  box-shadow: 0 8px 16px rgba(126, 66, 22, 0.16);
}

.favorite.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.product-body {
  display: grid;
  gap: 9px;
  padding: 14px;
}

.product-title {
  min-height: 44px;
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.32;
  font-weight: 800;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
}

.price {
  font-size: 1.25rem;
  font-weight: 850;
  color: var(--green-2);
}

.price-stack {
  display: grid;
  gap: 2px;
}

.price-stack > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.old-price {
  color: #9c8c82;
  text-decoration: line-through;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #5f7c39;
  font-size: 0.78rem;
  font-weight: 850;
}

.availability .ui-icon {
  width: 17px;
  height: 17px;
}

.product-stepper {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  justify-items: center;
  min-height: 42px;
  overflow: hidden;
  border: 1px solid var(--green);
  border-radius: 8px;
  background: #fff8f4;
  color: var(--green-2);
}

.product-stepper button {
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
  color: var(--green-2);
  font-size: 1.2rem;
  font-weight: 950;
}

.product-stepper strong {
  font-size: 1rem;
}

.mini-cart-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.mini-cart-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.mini-cart-panel p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.mini-cart-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
  padding: 16px;
}

.mini-cart-head .ghost {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: auto;
  padding: 0;
  color: var(--green);
  font-size: 0.8rem;
}

.mini-cart-head .ui-icon {
  width: 15px;
  height: 15px;
}

.mini-cart-lines {
  display: grid;
  max-height: 260px;
  overflow: auto;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mini-cart-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
}

.mini-cart-item:last-child {
  border-bottom: 0;
}

.mini-cart-item img,
.mini-cart-item .product-art {
  width: 56px;
  height: 56px;
  border: 1px solid #f1e3d8;
  border-radius: 8px;
  object-fit: cover;
  background: #fff8f4;
}

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

.mini-cart-item strong {
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.25;
}

.mini-cart-item span {
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.mini-cart-item small {
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 900;
}

.mini-cart-summary {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.mini-cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.3;
}

.mini-cart-summary strong {
  color: var(--ink);
  white-space: nowrap;
}

.mini-cart-summary .free-shipping {
  color: #3d8a2d;
}

.mini-cart-summary .mini-cart-grand-total {
  align-items: center;
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.mini-cart-grand-total strong {
  font-size: 1.28rem;
}

.mini-cart-panel > .primary {
  min-height: 44px;
  margin: 16px;
}

.free-shipping-meter {
  display: grid;
  gap: 8px;
  padding: 0 16px 16px;
  color: #3d8a2d;
}

.free-shipping-meter p {
  margin: 0;
  color: #3d8a2d;
  font-size: 0.78rem;
  font-weight: 850;
}

.free-shipping-meter span {
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e1db;
}

.free-shipping-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #57a33a;
}

.free-shipping-meter strong {
  color: #4d8b43;
  font-size: 0.8rem;
}

.secure-payment {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: #fffaf6;
}

.secure-payment > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #6d625a;
}

.secure-payment .ui-icon {
  width: 23px;
  height: 23px;
}

.secure-payment strong,
.secure-payment small {
  display: block;
}

.secure-payment strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.secure-payment small {
  margin-top: 2px;
  color: var(--muted);
  font-weight: 750;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  background: rgba(14, 27, 22, 0.46);
}

.drawer.open {
  display: grid;
  justify-items: end;
}

.drawer-panel {
  width: min(100vw, 460px);
  min-height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.drawer-head,
.drawer-foot {
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-foot {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.drawer-body {
  padding: 16px;
  overflow: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  margin-bottom: 10px;
}

.cart-item img,
.cart-item .product-art {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.qty {
  display: inline-grid;
  grid-template-columns: 34px 34px 34px;
  align-items: center;
  justify-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.qty button {
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--leaf);
  color: var(--green-2);
  font-weight: 900;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  color: var(--muted);
}

.summary-line strong {
  color: var(--ink);
}

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

.panel {
  padding: 18px;
}

.panel + .panel {
  margin-top: 14px;
}

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

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

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  flex: 0 0 auto;
}

.checkbox-field span {
  margin: 0;
}

.admin-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.side-nav {
  position: sticky;
  top: 82px;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.side-nav button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  padding: 0 12px;
  font-weight: 800;
  text-align: left;
}

.side-nav button.active {
  background: var(--green);
  color: var(--white);
}

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

.metric {
  padding: 16px;
}

.metric span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-weight: 850;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  padding: 12px 10px;
  text-align: left;
  vertical-align: middle;
}

.table th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.order-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  margin-bottom: 10px;
}

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

.order-main strong {
  overflow-wrap: normal;
}

.order-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--muted);
}

.order-tracking-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 750;
}

.order-tracking-summary strong {
  color: var(--green-2);
}

.order-tracking-summary small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 16px;
}

.empty {
  padding: 32px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: var(--white);
}

.notice {
  border: 1px solid #d8eadf;
  border-radius: 8px;
  background: #f0f8f3;
  padding: 12px;
  color: #164f34;
  line-height: 1.45;
}

.delivery-live-preview {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #d8eadf;
  border-radius: 8px;
  background: #f6fbf7;
}

.delivery-live-preview strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.delivery-live-preview p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(14, 27, 22, 0.52);
}

.modal.open {
  display: grid;
}

.modal-box {
  width: min(100%, 620px);
  max-height: min(86vh, 760px);
  overflow: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.order-modal-box {
  width: min(100%, 1080px);
}

.tenant-box {
  width: min(100%, 840px);
}

.modal-head,
.modal-body,
.modal-foot {
  padding: 18px;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.modal-subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.modal-foot {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.prep-foot-status {
  margin-right: auto;
  color: var(--green-2);
  font-weight: 900;
}

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

.order-summary-card {
  min-width: 0;
  padding: 13px;
  border: 1px solid #f2d2bf;
  border-radius: 8px;
  background: #fffaf6;
}

.order-summary-card span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.order-summary-card strong {
  display: block;
  min-width: 0;
  margin-top: 6px;
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.receipt-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid #f2d2bf;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 247, 239, 0.98), rgba(255, 255, 255, 0.98)), #fff;
}

.receipt-brand,
.receipt-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.receipt-brand {
  justify-content: flex-start;
}

.receipt-brand > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: #fff1e7;
}

.receipt-brand strong,
.receipt-brand small {
  display: block;
}

.receipt-brand small,
.receipt-note,
.receipt-grid span {
  color: var(--muted);
}

.receipt-total {
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 950;
  line-height: 1;
}

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

.receipt-grid div {
  min-width: 0;
  padding: 12px;
  border: 1px solid #f5dccd;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.receipt-grid span {
  display: block;
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.receipt-grid strong {
  display: block;
  margin-top: 5px;
  overflow-wrap: anywhere;
}

.receipt-note {
  margin: 0;
  font-size: 0.95rem;
}

.prep-progress {
  display: grid;
  gap: 10px;
  margin: 4px 0 14px;
  padding: 14px;
  border: 1px solid #f2d2bf;
  border-radius: 8px;
  background: #fff8f4;
}

.prep-progress div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 800;
}

.prep-progress strong {
  color: var(--ink);
}

.prep-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #f1ded1;
}

.prep-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--green));
  transition: width 180ms ease;
}

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

.prep-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.prep-item.prepared {
  border-color: rgba(45, 119, 71, 0.35);
  background: #f5fff8;
}

.prep-check {
  width: 64px;
  height: 64px;
  border: 2px solid #f2d2bf;
  border-radius: 50%;
  background: #fff8f4;
  color: var(--green);
  font-size: 1.55rem;
  font-weight: 950;
}

.prep-item.prepared .prep-check {
  border-color: var(--green);
  background: #eaf8ed;
}

.prep-item-main {
  min-width: 0;
}

.prep-item-main strong,
.prep-item-main span,
.prep-item-main small {
  display: block;
  overflow-wrap: anywhere;
}

.prep-item-main strong {
  color: var(--ink);
  line-height: 1.2;
}

.prep-item-main span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 800;
}

.prep-item-main small {
  margin-top: 3px;
  color: var(--green-2);
  font-weight: 850;
}

.prep-action {
  min-height: 58px;
  white-space: nowrap;
}

.prep-quantity-controls {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(110px, 160px)) minmax(180px, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.prep-quantity-controls label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.prep-quantity-controls input {
  min-height: 46px;
  border: 1px solid #f2d2bf;
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 850;
}

.prep-quantity-controls .missing-reason {
  min-height: 46px;
}

.checkout-pro-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8f4;
}

.checkout-pro-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.08rem;
}

.checkout-pro-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.checkout-pro-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
  box-shadow: inset 0 0 0 1px #f2d2bf;
}

.order-readonly-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.order-readonly-item .prep-item-main strong {
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}

.order-readonly-subtotal {
  color: var(--green-2);
  font-size: 1.05rem;
  white-space: nowrap;
}

.modal-preview-image {
  width: min(220px, 100%);
  aspect-ratio: 1;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.category-modal-preview {
  width: min(260px, 100%);
  min-height: 180px;
  display: grid;
  place-items: center;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffaf6, #fff);
  box-shadow: var(--soft-shadow);
}

.category-modal-preview svg,
.category-modal-preview img {
  width: min(180px, 86%);
  aspect-ratio: 1;
  object-fit: contain;
}

.status-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tracking-card {
  display: grid;
  gap: 16px;
  margin: 20px 0 0;
  padding: 18px;
  border: 1px solid #f2d2bf;
  border-radius: 8px;
  background: #fff8f4;
}

.tracking-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.tracking-head h3 {
  margin: 8px 0 0;
  color: var(--green-2);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.1;
}

.tracking-eta {
  display: grid;
  justify-items: end;
  min-width: 180px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.tracking-eta strong {
  color: var(--green-2);
  font-size: 1.35rem;
  line-height: 1.1;
}

.tracking-eta span,
.tracking-card p {
  color: var(--muted);
  font-weight: 750;
}

.tracking-card p {
  margin: 0;
}

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

.tracking-step {
  display: grid;
  gap: 7px;
  min-height: 94px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
}

.tracking-step span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #fff1eb;
  color: var(--green-2);
  font-weight: 900;
}

.tracking-step strong {
  color: inherit;
  line-height: 1.2;
}

.tracking-step.active {
  border-color: #f2b17a;
  background: #fff1eb;
  color: var(--ink);
}

.tracking-step.active span {
  background: var(--green);
  color: var(--white);
}

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

.tracking-meta span {
  display: grid;
  gap: 2px;
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  font-weight: 750;
}

.tracking-meta strong {
  color: var(--ink);
  font-size: 0.78rem;
}

.account-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(30, 54, 44, 0.06);
}

.account-hero-guest {
  margin-bottom: 16px;
}

.account-hero h1,
.legal-page h1 {
  margin: 6px 0 0;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.avatar {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--green-2);
  font-size: 2rem;
}

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

.profile-nav {
  position: sticky;
  top: 82px;
  display: grid;
  gap: 4px;
}

.profile-nav button {
  min-height: 50px;
  border: 0;
  border-left: 4px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 0 16px;
  text-align: left;
  font-weight: 800;
}

.profile-nav button.active {
  border-left-color: var(--green);
  color: var(--green-2);
  background: var(--leaf);
}

.profile-panel {
  min-height: 420px;
}

.account-login-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.section-head.compact {
  margin-bottom: 0;
}

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

.account-access-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf6;
}

.account-access-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--green-2);
}

.account-access-grid strong {
  color: var(--ink);
  font-size: 1.05rem;
}

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

.profile-form {
  max-width: 920px;
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf6;
}

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

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

.rating-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.rating-product {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.rating-product img,
.rating-product .product-art {
  width: 64px;
  height: 64px;
}

.rating-product strong {
  display: block;
  color: var(--ink);
}

.rating-product span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.rating-stars {
  display: flex;
  gap: 4px;
}

.star-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: #d1a184;
  font-size: 1.2rem;
  cursor: pointer;
}

.star-button.active {
  border-color: var(--orange);
  background: #fff1eb;
  color: var(--orange);
}

.rating-card textarea {
  min-height: 78px;
  resize: vertical;
}

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

.list-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.list-card span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.form-hint {
  display: block;
  margin-top: -4px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.35;
}

.banner-admin-card {
  align-items: center;
  justify-content: start;
}

.banner-admin-thumb {
  display: grid;
  flex: 0 0 96px;
  width: 96px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff7ef;
  color: var(--green-2);
}

.banner-admin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-admin-thumb .ui-icon {
  width: 24px;
  height: 24px;
}

.banner-edit-preview {
  display: grid;
  gap: 8px;
}

.banner-edit-preview img {
  width: 100%;
  max-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.banner-edit-preview span {
  color: var(--muted);
  font-weight: 800;
}

.list-card .text-ok {
  color: var(--green-2);
  font-weight: 850;
}

.list-card .text-warn {
  color: #9b2518;
  font-weight: 850;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.support-list {
  border-top: 1px solid var(--line);
}

.support-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(220px, 0.8fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.support-row h3 {
  margin: 0;
  color: var(--green-2);
}

.support-row p,
.support-row span {
  display: block;
  margin: 4px 0 0;
  color: var(--muted);
}

.support-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-size: 1.4rem;
  font-weight: 900;
}

.newsletter-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px) auto;
  gap: 18px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  border-radius: 8px;
  background: var(--green-2);
  color: var(--white);
}

.newsletter-band h2 {
  margin: 8px 0 0;
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  line-height: 1.15;
}

.newsletter-band p {
  color: rgba(255, 255, 255, 0.78);
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-form input {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 0 12px;
}

.auth-box {
  width: min(92vw, 720px);
}

.auth-box-carrefour {
  width: min(92vw, 480px);
  border-radius: 8px;
}

.auth-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  min-height: 64px;
  padding: 14px 20px;
}

.auth-head strong {
  justify-self: center;
  text-align: center;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  line-height: 1.2;
}

.auth-back {
  justify-self: start;
}

.auth-box-carrefour .modal-body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 20px 24px 24px;
}

.auth-methods {
  display: grid;
  gap: 14px;
  width: min(100%, 520px);
  margin: 0 auto;
}

.auth-methods.compact {
  margin: 18px 0 0;
}

.auth-methods-large {
  width: 100%;
  gap: 14px;
  justify-self: center;
}

.auth-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  padding: 4px 0 8px;
}

.auth-intro h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  line-height: 1.05;
}

.auth-intro p {
  max-width: 560px;
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.auth-intro .auth-option {
  width: 100%;
}

.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 850;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.auth-email-panel {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf6;
}

.auth-tabs {
  width: 100%;
}

.auth-tabs button {
  flex: 1;
}

.auth-helper {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

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

.auth-option {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  min-height: 68px;
  border: 1px solid #eef2ef;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(30, 54, 44, 0.08);
  color: var(--ink);
  padding: 0 22px;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 750;
}

.auth-methods-large .auth-option {
  grid-template-columns: 48px minmax(0, 1fr);
  min-height: 56px;
  border: 1px solid #eef2ef;
  padding: 0 16px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(48, 37, 30, 0.08);
  font-size: 1rem;
  font-weight: 700;
}

.auth-methods-large .auth-option:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 20px 44px rgba(48, 37, 30, 0.14);
}

.auth-option:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.auth-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--blue);
  font-size: 1.45rem;
  font-weight: 900;
}

.auth-icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.auth-icon-lock,
.auth-icon-mail {
  color: var(--ink);
}

.auth-icon-lock svg,
.auth-icon-mail svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-icon-facebook {
  color: #1877f2;
}

.auth-icon-facebook svg {
  fill: currentColor;
}

.auth-terms {
  margin: 16px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.45;
}

.auth-email-screen {
  display: grid;
  justify-self: center;
  width: min(100%, 620px);
  gap: 16px;
}

.auth-email-screen h2 {
  margin: 0;
  color: var(--green-2);
  text-align: center;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.12;
}

.auth-email-screen > p {
  max-width: 560px;
  margin: 0 auto 4px;
  color: var(--muted);
  text-align: center;
  font-size: 1.04rem;
  font-weight: 750;
  line-height: 1.42;
}

.auth-email-form {
  gap: 14px;
}

.auth-email-form .primary {
  min-height: 56px;
  margin-top: 4px;
}

.inline-link {
  min-height: auto;
  padding: 0;
  border: 0;
  color: var(--blue);
}

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

.legal-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.legal-card h2 {
  margin: 0;
  font-size: 1.05rem;
}

.returns-page {
  display: grid;
  gap: 18px;
}

.returns-hero {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid #f2d2bf;
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(255, 248, 244, 0.98), rgba(255, 241, 235, 0.96)),
    url("https://images.unsplash.com/photo-1607083206968-13611e3d76db?auto=format&fit=crop&w=1400&q=78");
  background-size: cover;
  background-position: center;
}

.returns-hero h1 {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--green-2);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
}

.returns-hero p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

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

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto minmax(220px, auto);
  gap: 18px;
  align-items: center;
  padding: 24px clamp(16px, 4vw, 48px);
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--green-2);
  padding: 0 12px;
  font-weight: 800;
  text-decoration: none;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--green);
}

.social-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.social-icon-instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.social-icon-facebook {
  color: #1877f2;
}

.social-icon-facebook svg {
  fill: currentColor;
}

@media (max-width: 1100px) {
  .topbar-store {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .topbar-store .category-menu-button {
    grid-column: 1 / 2;
    grid-row: 2;
  }

  .topbar-store .compact-nav-button {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  .topbar-store .top-search-wrap {
    grid-column: 1 / 4;
    grid-row: 3;
  }

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

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

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

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

  .mini-cart-panel {
    grid-column: 1 / -1;
    position: static;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .recommendation-grid,
  .mini-product-row,
  .how-steps,
  .returns-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .support-row {
    grid-template-columns: 56px minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .receipt-grid {
    grid-template-columns: 1fr;
  }

  .receipt-status {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: 16px;
  }

  #categorias,
  #catalogo-productos,
  .account-hero,
  .checkout,
  .faq-section,
  .newsletter-band,
  .returns-strip,
  .returns-page,
  .legal-page,
  .support-layout {
    scroll-margin-top: 16px;
  }

  .section-head,
  .category-picker-hero,
  .marketing-banner-card,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .marketing-banner-card {
    min-height: 280px;
    justify-content: end;
  }

  .marketing-banner-copy {
    width: 100%;
  }

  .promotion-gallery {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    top: 18px;
    width: 36px;
    height: 36px;
    font-size: 1.6rem;
    transform: none;
  }

  .carousel-arrow.prev {
    left: 12px;
  }

  .carousel-arrow.next {
    right: 12px;
  }

  .carousel-dots {
    left: 50%;
    right: auto;
    bottom: 12px;
    transform: translateX(-50%);
  }

  .topbar {
    position: static;
  }

  .topbar-store,
  .topbar-admin {
    grid-template-columns: 1fr auto;
  }

  .topbar-store .brand,
  .topbar-admin .brand {
    min-width: 0;
  }

  .topbar-store .top-actions,
  .topbar-admin .top-actions {
    justify-self: end;
  }

  .topbar-store .category-menu-button {
    grid-column: 1;
    grid-row: 2;
  }

  .topbar-store .compact-nav-button {
    grid-column: 2;
    grid-row: 2;
  }

  .topbar-store .top-search-wrap {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .search-suggestions {
    grid-template-columns: 1fr;
    max-height: min(620px, calc(100vh - 132px));
  }

  .nav-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .checkout,
  .admin-layout,
  .split,
  .account-hero,
  .account-layout,
  .account-access-grid,
  .rating-grid,
  .support-layout,
  .newsletter-band {
    grid-template-columns: 1fr;
  }

  .welcome-strip,
  .benefits-strip,
  .marketing-banner-card {
    align-items: stretch;
    flex-direction: column;
  }

  .service-summary {
    padding: 0 12px;
  }

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

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

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

  .service-summary-item:nth-child(2) {
    border-right: 0;
  }

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

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

  .catalog-sidebar,
  .mini-cart-panel {
    position: static;
  }

  .catalog-sidebar {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    align-items: center;
  }

  .catalog-sidebar strong,
  .sidebar-note {
    display: none;
  }

  .catalog-sidebar button {
    flex: 0 0 auto;
  }

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

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

  .mini-cart-lines {
    display: grid;
  }

  .side-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .tracking-head,
  .tracking-eta {
    justify-items: start;
  }

  .tracking-head {
    flex-direction: column;
  }

  .tracking-timeline,
  .tracking-meta {
    grid-template-columns: 1fr;
  }

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

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

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

  .login-panel {
    min-height: auto;
  }

  .login-footer {
    display: grid;
    justify-items: start;
  }

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

@media (max-width: 640px) {
  .topbar {
    gap: 8px;
    padding: 8px 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark,
  .nino-logo-small,
  .commercium-logo {
    width: 54px;
    height: 54px;
  }

  .brand-mark-commercium {
    width: 132px;
    height: 44px;
  }

  .brand-mark-commercium .commercium-logo-full {
    width: 132px;
    height: auto;
    max-height: 44px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-sub {
    font-size: 0.72rem;
  }

  .topbar-store .category-menu-button {
    min-height: 42px;
    padding: 0 12px;
  }

  .top-search {
    grid-template-columns: minmax(0, 1fr) 48px;
    min-height: 44px;
  }

  .search-suggestions {
    left: -12px;
    right: -12px;
    width: auto;
    transform: none;
    padding: 14px;
  }

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

  .suggestion-product {
    min-height: auto;
  }

  .suggestion-product-main {
    grid-template-columns: 82px minmax(0, 1fr);
    padding: 10px 58px 10px 10px;
    min-height: 104px;
  }

  .suggestion-product-main img,
  .suggestion-product-main .product-art {
    grid-row: span 4;
    width: 82px;
    height: 82px;
    margin: 0;
    border-radius: 8px;
  }

  .suggestion-product-main strong {
    min-height: 0;
  }

  .quick-action {
    display: none;
  }

  .cart-pill {
    min-height: 42px;
    padding: 0 12px;
  }

  .cart-pill strong {
    display: none;
  }

  .grid,
  .catalog-grid,
  .form-grid,
  .metrics,
  .customer-auth-layout,
  .recommendation-grid,
  .mini-product-row,
  .how-steps,
  .service-summary-grid,
  .returns-grid,
  .returns-policy-grid {
    grid-template-columns: 1fr;
  }

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

  .top-actions,
  .row-actions,
  .hero-actions,
  .newsletter-form,
  .quick-links {
    width: 100%;
  }

  .top-actions button,
  .row-actions button,
  .hero-actions button,
  .drawer-foot button,
  .newsletter-form button {
    flex: 1;
  }

  .topbar .top-actions {
    width: auto;
  }

  .topbar .top-actions button {
    flex: initial;
  }

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

  .quick-links button,
  .benefits-strip button {
    flex: 1;
  }

  .table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .modal {
    padding: 10px;
    place-items: stretch;
  }

  .modal-box {
    max-height: calc(100vh - 20px);
  }

  .modal-foot {
    flex-wrap: wrap;
    position: sticky;
    bottom: 0;
    z-index: 2;
  }

  .modal-foot button {
    flex: 1 1 140px;
    min-height: 48px;
  }

  .prep-foot-status {
    flex: 1 0 100%;
    margin: 0;
  }

  .prep-item {
    grid-template-columns: 62px minmax(0, 1fr);
    padding: 14px;
  }

  .prep-quantity-controls {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .order-readonly-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .order-readonly-subtotal {
    justify-self: start;
  }

  .prep-check {
    width: 62px;
    height: 62px;
  }

  .prep-action {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 52px;
  }

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

  .cart-item img,
  .cart-item .product-art {
    width: 58px;
    height: 58px;
  }

  .list-card,
  .account-hero {
    align-items: stretch;
  }

  .list-card {
    flex-direction: column;
  }

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

  .rating-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .hero {
    min-height: 340px;
  }

  .service-summary {
    margin-top: 0;
    padding: 0 12px;
  }

  .faq-section {
    padding: 20px 14px;
  }

  .returns-strip {
    padding: 18px 14px;
  }

  .faq-item summary {
    min-height: 58px;
    padding: 12px;
  }

  .faq-item p {
    padding: 0 12px 14px;
  }

  .service-summary-item {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: auto;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid #efd8c8;
  }

  .service-summary-item:last-child {
    border-bottom: 0;
  }

  .how-section {
    padding: 22px 16px;
  }

  .how-step {
    grid-template-columns: 94px minmax(0, 1fr);
    column-gap: 14px;
    justify-items: start;
    text-align: left;
  }

  .how-illustration {
    width: 94px;
    grid-row: span 2;
    margin-bottom: 0;
  }

  .how-illustration > span {
    width: 30px;
    height: 30px;
    border-width: 2px;
    bottom: 6px;
    font-size: 0.9rem;
  }

  .how-step p {
    max-width: none;
    margin-top: 4px;
  }

  .auth-option {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 64px;
    padding: 0 14px;
    font-size: 1rem;
  }

  .app-loader {
    align-items: start;
    padding-top: 110px;
  }

  .app-loader-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .loader-mark {
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader-mark::before,
  .loader-lines i {
    animation: none;
  }
}

.marketing-banner-card.image-only.has-image {
  display: block;
  min-height: 0;
  aspect-ratio: 4.8 / 1;
  padding: 0;
}

.marketing-banner-card.image-only.has-image .marketing-banner-image {
  height: 100%;
  min-height: clamp(160px, 18vw, 260px);
  object-fit: contain;
  object-position: center;
  background: #fffaf5;
}

@media (max-width: 860px) {
  .marketing-banner-card.image-only.has-image {
    min-height: 0;
    aspect-ratio: 16 / 7;
    justify-content: initial;
  }

  .marketing-banner-card.image-only.has-image .marketing-banner-image {
    height: 100%;
    min-height: clamp(150px, 34vw, 220px);
  }
}

@media (max-width: 640px) {
  .auth-box-carrefour {
    width: min(94vw, 440px);
  }

  .auth-head {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    min-height: 74px;
    padding: 12px 16px;
  }

  .auth-head strong {
    font-size: 1.25rem;
  }

  .auth-box-carrefour .modal-body {
    align-content: start;
    min-height: auto;
    padding: 22px 18px 28px;
  }

  .auth-methods-large {
    gap: 16px;
  }

  .auth-methods-large .auth-option {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: 70px;
    padding: 0 18px;
    font-size: 1.05rem;
  }

  .auth-icon {
    width: 30px;
    height: 30px;
  }

  .auth-icon svg {
    width: 26px;
    height: 26px;
  }

  .auth-email-screen h2 {
    font-size: 1.45rem;
  }

  .auth-email-screen > p {
    font-size: 0.98rem;
  }

  .auth-terms {
    margin-top: 18px;
    font-size: 0.95rem;
  }
}

.order-readonly-item .prep-item-main strong {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  line-height: 1.25;
}

.report-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(4, minmax(140px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff8f4;
}

.report-filters .primary {
  min-height: 48px;
  white-space: nowrap;
}

.report-split {
  align-items: start;
  margin-top: 16px;
}

.report-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.report-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
}

.responsive-table {
  width: 100%;
  overflow-x: auto;
}

.responsive-table .table {
  min-width: 880px;
}

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

.audit-list article {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid #f5dccd;
  border-radius: 8px;
  background: #fffaf6;
}

.audit-list strong {
  color: var(--ink);
}

.audit-list span,
.audit-list small {
  color: var(--muted);
  font-weight: 750;
}

@media (max-width: 1100px) {
  .report-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .report-filters {
    grid-template-columns: 1fr;
  }

  .report-filters .primary {
    width: 100%;
  }

  .order-modal-box {
    width: min(100%, calc(100vw - 20px));
  }
}
