:root {
  --orange: #e8a045;
  --orange-dark: #f97316;
  --green: #15803d;
  --green-dark: #0f5132;
  --red: #b91c1c;
  --ink: #1a1a1a;
  --muted: #999690;
  --paper: #fafaf8;
  --panel: #ffffff;
  --line: #ded8cf;
  --soft-green: #e7f4eb;
  --soft-orange: #f0ede8;
  --soft-red: #fae9e9;
  --shadow: 0 18px 48px rgba(39, 35, 33, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 10px clamp(16px, 4vw, 54px);
  background: rgba(26, 26, 26, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.topbar .brand {
  order: 1;
}

.topbar .nav {
  order: 2;
}

.topbar .profile-menu {
  order: 3;
  margin-left: auto;
}

.topbar .cart-link {
  order: 4;
}

.menu-toggle {
  display: none;
}

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 2px;
  color: var(--ink);
  background: var(--orange);
}

.cart-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.cart-link.has-items::after {
  content: attr(data-count);
  position: absolute;
  right: -8px;
  top: -8px;
  display: grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.profile-menu {
  position: relative;
  flex: 0 0 auto;
}

.profile-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 2px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.profile-button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.profile-button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.profile-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 30;
  display: grid;
  width: 260px;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 18px 46px rgba(26, 26, 26, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.profile-menu:hover .profile-dropdown,
.profile-menu:focus-within .profile-dropdown,
.profile-menu.profile-open .profile-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.profile-dropdown strong,
.profile-dropdown small {
  display: block;
}

.profile-dropdown small {
  color: var(--muted);
  line-height: 1.4;
}

.profile-dropdown a,
.profile-dropdown button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 9px 10px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 900;
  text-align: left;
}

.customer-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 20px;
}

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

.customer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(26, 26, 26, 0.58);
}

.customer-card {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(520px, 100%);
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.customer-card h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.6rem;
  line-height: 0.95;
}

.customer-card label {
  display: grid;
  gap: 6px;
  font-weight: 900;
}

.customer-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--gray);
}

.customer-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 3px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.customer-tabs button.active {
  color: var(--ink);
  background: var(--orange);
}

.google-login-box {
  display: grid;
  gap: 8px;
}

.google-login-box > div {
  min-height: 44px;
}

.google-fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.google-fallback:disabled {
  color: var(--muted);
  cursor: not-allowed;
  background: #f8f7f5;
}

.customer-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.create-fields {
  display: grid;
  gap: 12px;
}

.customer-card input,
.customer-card select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  background: #fff;
}

.customer-close {
  position: absolute;
  right: 12px;
  top: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-size: 1.4rem;
  font-weight: 900;
}

.brand {
  display: flex;
  align-items: center;
  width: 230px;
  min-width: 230px;
}

.brand img {
  width: 100%;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  flex: 1 1 auto;
  width: auto;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  -webkit-overflow-scrolling: touch;
}

.nav-item-wrap {
  position: relative;
  flex: 0 0 auto;
}

.nav {
  scrollbar-width: none;
}

.nav::-webkit-scrollbar {
  display: none;
}

.nav > .nav-item-wrap > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 11px;
  border-radius: 2px;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.nav > .nav-item-wrap > a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.24s ease;
}

.nav > .nav-item-wrap > a::before {
  content: "›";
  order: 2;
  color: var(--orange);
  font-weight: 900;
}

.nav > .nav-item-wrap:hover > a,
.nav > .nav-item-wrap:focus-within > a,
.nav > .nav-item-wrap > a:hover {
  color: var(--orange);
}

.nav > .nav-item-wrap:hover > a::after,
.nav > .nav-item-wrap:focus-within > a::after {
  width: calc(100% - 20px);
}

.nav-action {
  color: var(--ink) !important;
  background: var(--orange);
}

.nav-action::before,
.nav-action::after {
  display: none;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 35;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  min-width: min(640px, calc(100vw - 32px));
  max-height: 0;
  gap: 10px;
  overflow: hidden;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, max-height 0.28s ease, padding 0.28s ease, border-color 0.18s ease;
}

.nav-item-wrap:hover .nav-submenu,
.nav-item-wrap:focus-within .nav-submenu {
  max-height: 460px;
  padding: 14px;
  border-color: var(--line);
  opacity: 1;
  transform: translateY(0);
}

.nav-menu-group {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.nav-menu-group strong {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-menu-group strong::after {
  content: "›";
  color: var(--ink);
}

.nav-menu-group a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 4px;
  color: #4f4a45;
  border-bottom: 1px solid rgba(222, 216, 207, 0.7);
  font-size: 0.84rem;
  font-weight: 500;
}

.nav-menu-group a::after {
  content: "›";
  color: var(--orange);
  font-weight: 900;
}

.nav-menu-group a:hover {
  color: var(--orange-dark);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  padding: clamp(58px, 8vw, 94px) clamp(16px, 5vw, 72px);
  background: var(--ink);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(26, 26, 26, 0.99) 0%, rgba(26, 26, 26, 0.92) 32%, rgba(26, 26, 26, 0.54) 72%, rgba(26, 26, 26, 0.9) 100%),
    linear-gradient(0deg, rgba(26, 26, 26, 0.96), rgba(26, 26, 26, 0.16)),
    url("assets/hero-magrey-pattern.svg");
  background-position: center, center, center;
  background-size: cover, cover, cover;
  background-repeat: no-repeat;
  opacity: 0.94;
  filter: saturate(0.98) contrast(1.06);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -34% 38%;
  z-index: -1;
  height: 62%;
  background: radial-gradient(circle, rgba(232, 160, 69, 0.14), transparent 62%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.hero-accent {
  width: 48px;
  height: 4px;
  margin-bottom: 24px;
  background: var(--orange);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: #fff;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  line-height: 1;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.02em;
}

p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 1.05rem;
  font-weight: 300;
}

.hero-search {
  display: grid;
  gap: 8px;
  max-width: 620px;
  margin-top: 34px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-search input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 900;
}

.button.primary {
  color: var(--ink);
  background: var(--orange);
}

.button.secondary {
  width: 100%;
  margin-top: 10px;
  color: #fff;
  background: var(--ink);
}

.button.ghost {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.button.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.strip {
  overflow: hidden;
  padding: 15px 0;
  white-space: nowrap;
  background: var(--orange);
}

.strip-track {
  display: inline-flex;
  animation: scm-ticker 24s linear infinite;
}

.strip-track span {
  padding: 0 20px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes scm-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.lines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 26px clamp(16px, 5vw, 72px) 72px;
}

.featured {
  padding: 64px clamp(16px, 5vw, 72px) 20px;
  background: var(--paper);
}

.featured-shell {
  overflow-x: auto;
  overflow-y: hidden;
  margin-inline: calc(clamp(16px, 5vw, 72px) * -1);
  padding: 4px 0 14px;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
  -webkit-overflow-scrolling: touch;
}

.featured-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding-inline: clamp(16px, 5vw, 72px);
  animation: promo-marquee 38s linear infinite;
}

.featured-shell:hover .featured-track,
.featured-shell.is-dragging .featured-track {
  animation-play-state: paused;
}

.featured-shell.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.featured-card {
  position: relative;
  display: grid;
  grid-template-rows: 232px minmax(112px, auto);
  width: 260px;
  min-height: 356px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(39, 35, 33, 0.08);
}

.promo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 9px;
  color: var(--ink);
  border-radius: 2px;
  background: var(--orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-image {
  display: grid;
  height: 232px;
  place-items: center;
  padding: 22px 14px 12px;
  background: #fff;
}

.featured-image img {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.featured-info {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 14px;
  background: #fff;
}

.featured-info strong {
  line-height: 1.22;
}

.featured-info small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.4;
}

.featured-info em {
  color: var(--orange-dark);
  font-style: normal;
  font-weight: 900;
}

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

.line-card {
  min-height: 240px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 34px rgba(39, 35, 33, 0.08);
}

.line-card.cleaning {
  background: var(--soft-orange);
}

.line-card.pets {
  background: var(--soft-green);
}

.line-card.food {
  background: var(--soft-red);
}

.line-kicker {
  display: inline-flex;
  margin-bottom: 40px;
  color: var(--orange-dark);
  font-weight: 900;
}

.info-carousel {
  overflow: hidden;
  padding: 0 clamp(16px, 5vw, 72px) 72px;
  background: var(--paper);
}

.info-head {
  max-width: 820px;
  margin-bottom: 18px;
}

.info-head h2 {
  max-width: 480px;
  margin: 0;
}

.info-rail {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  margin-inline: calc(clamp(16px, 5vw, 72px) * -1);
  padding: 8px 0 10px;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--orange) transparent;
  -webkit-overflow-scrolling: touch;
}

.info-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding-inline: clamp(16px, 5vw, 72px);
  animation: info-marquee 44s linear infinite;
}

.info-rail:hover .info-track,
.info-rail.is-dragging .info-track {
  animation-play-state: paused;
}

.info-rail.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.info-card {
  display: grid;
  align-content: start;
  gap: 9px;
  width: 310px;
  min-height: 170px;
  padding: 18px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(39, 35, 33, 0.08);
}

.info-card span {
  justify-self: start;
  padding: 6px 8px;
  color: var(--ink);
  background: var(--orange);
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card strong {
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.15;
}

.info-card p {
  margin: 0;
  color: #6f6b66;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.45;
}

.info-card.flash {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.info-card.flash strong,
.info-card.flash p {
  color: #fff;
}

.info-card.flash p {
  color: rgba(255, 255, 255, 0.66);
}

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

.catalog-section,
.workspace,
.quote,
.wholesale,
.about {
  padding: clamp(54px, 7vw, 88px) clamp(16px, 5vw, 72px);
}

.catalog-section {
  background: var(--paper);
}

.standalone-shop h1 {
  max-width: 760px;
  color: var(--ink);
}

.standalone-shop .section-title > p:not(.eyebrow) {
  max-width: 720px;
}

.section-title {
  max-width: 820px;
  margin-bottom: 28px;
}

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

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.search-box {
  display: grid;
  gap: 7px;
  width: min(620px, 100%);
  color: var(--ink);
  font-weight: 700;
}

.search-box input,
.advanced-filters select,
.product-form input,
.product-form select,
.product-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
}

.product-form textarea {
  min-height: 108px;
  resize: vertical;
}

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

.filter {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.filter.active {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

.advanced-filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 0 18px;
}

.advanced-filters label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.product-group-title,
.empty-catalog {
  grid-column: 1 / -1;
}

.product-group-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
  padding: 12px 0 4px;
  border-top: 1px solid var(--line);
}

.product-group-title:first-child {
  margin-top: 0;
  border-top: 0;
}

.product-group-title span {
  color: var(--ink);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

.product-group-title strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  padding: 0 10px;
  color: var(--ink);
  border-radius: 2px;
  background: var(--orange);
  font-size: 0.86rem;
}

.empty-catalog {
  padding: 28px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 580px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
}

.product-card.is-soldout {
  background: #fbfaf8;
}

.product-card.is-soldout .product-image {
  opacity: 0.72;
}

.product-image {
  display: grid;
  place-items: center;
  height: 292px;
  color: #fff;
  background: var(--orange);
}

.product-image[data-category="Mascotas"] {
  background: var(--green);
}

.product-image[data-category="Alimentos"] {
  background: var(--red);
}

.product-image.photo {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.product-image.photo img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  padding: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.product-image.photo .secondary-image {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.96);
}

.product-card:hover .product-image.photo .secondary-image {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.product-card:hover .product-image.photo img:first-child:not(:only-child) {
  opacity: 0;
  transform: scale(1.02);
}

.product-image.photo img[src*="static_uploads_Hop"],
.featured-image img[src*="static_uploads_Hop"] {
  max-height: 78%;
}

.product-image span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.8rem;
  font-weight: 900;
}

.stock-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.stock-meta span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 4px;
  padding: 5px 9px;
  color: var(--green-dark);
  background: #e7f4eb;
  font-size: 0.78rem;
  font-weight: 900;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.tag {
  padding: 5px 8px;
  border-radius: 2px;
  color: var(--green-dark);
  background: var(--soft-green);
  font-size: 0.76rem;
  font-weight: 900;
}

.tag.available {
  color: var(--green-dark);
  background: var(--soft-green);
}

.tag.soldout {
  color: var(--red);
  background: var(--soft-red);
}

.product-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.product-card h3 a:hover,
.detail-link:hover {
  color: var(--orange-dark);
}

.product-card p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 70px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.variant-list {
  display: grid;
  gap: 4px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.buy-controls {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 8px;
  margin: 0 0 12px;
}

.buy-controls label {
  display: grid;
  gap: 5px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.buy-controls select,
.buy-controls input {
  width: 100%;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 8px;
  background: #fff;
}

.product-footer {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.product-footer strong {
  color: var(--orange-dark);
}

.add-quote {
  min-height: 40px;
  border: 0;
  border-radius: 2px;
  color: var(--ink);
  background: var(--orange);
  cursor: pointer;
  font-weight: 900;
}

.detail-link {
  display: inline-flex;
  justify-content: center;
  min-height: 36px;
  align-items: center;
  color: var(--green-dark);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-weight: 900;
}

.catalog-preview-cta {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.catalog-preview-cta strong {
  color: var(--ink);
}

.catalog-meta a {
  color: var(--green-dark);
  font-weight: 900;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.32);
}

.whatsapp-float svg {
  width: 33px;
  height: 33px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #1db45a;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  border: 0;
  background: rgba(26, 26, 26, 0.5);
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 81;
  display: grid;
  width: min(430px, 100vw);
  grid-template-rows: auto 1fr auto;
  transform: translateX(100%);
  border-left: 1px solid var(--line);
  color: var(--ink);
  background: var(--panel);
  box-shadow: -22px 0 54px rgba(26, 26, 26, 0.2);
  transition: transform 0.24s ease;
}

.cart-open {
  overflow: hidden;
}

.cart-open .cart-backdrop {
  display: block;
}

.cart-open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer header,
.cart-drawer footer {
  padding: 22px;
}

.cart-drawer header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer h2 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.5rem;
  line-height: 0.95;
}

.cart-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font-size: 1.6rem;
  font-weight: 900;
}

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

.cart-line {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-thumb {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.cart-line strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
  line-height: 1.25;
}

.cart-line small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.cart-qty {
  display: inline-grid;
  grid-template-columns: 34px 42px 34px;
  align-items: center;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.cart-qty button {
  height: 34px;
  border: 0;
  background: transparent;
  font-weight: 900;
}

.cart-qty span {
  text-align: center;
  font-weight: 900;
}

.cart-empty {
  display: grid;
  min-height: 260px;
  place-content: center;
  gap: 8px;
  color: var(--muted);
  text-align: center;
}

.cart-empty strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.cart-drawer footer {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
}

.cart-clear {
  border: 0;
  color: var(--orange-strong);
  background: transparent;
  font-weight: 900;
}

.cart-page {
  background: var(--paper);
}

.cart-hero {
  padding: 72px clamp(16px, 5vw, 72px) 28px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.cart-hero h1 {
  max-width: 760px;
  margin: 0 0 12px;
  color: var(--ink);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.9;
}

.cart-hero p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cart-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 24px;
  padding: 28px clamp(16px, 5vw, 72px) 72px;
  align-items: start;
}

.cart-page-lines,
.checkout-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(39, 35, 33, 0.08);
}

.cart-page-lines {
  position: sticky;
  top: 110px;
  align-self: start;
  max-height: calc(100vh - 174px);
  min-height: 420px;
  overflow-y: auto;
  padding: 20px;
  scrollbar-color: var(--orange) transparent;
}

.cart-lines-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-page-line {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) minmax(96px, auto);
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.cart-page-line:last-child {
  border-bottom: 0;
}

.cart-page-line > strong {
  text-align: right;
}

.cart-page-line small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.cart-page-line .cart-qty {
  grid-column: 2;
  margin-top: 10px;
}

.cart-remove {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  border: 0;
  padding: 0;
  color: var(--orange-strong);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.cart-page-empty {
  display: grid;
  min-height: 360px;
  place-content: center;
  gap: 12px;
  color: var(--muted);
  text-align: center;
}

.cart-page-empty strong {
  color: var(--ink);
  font-size: 1.35rem;
}

.checkout-panel {
  display: grid;
  align-self: start;
  gap: 13px;
  padding: 22px;
}

.checkout-panel h2 {
  margin: 0 0 4px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 3rem;
  line-height: 0.95;
}

.checkout-section {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
}

.checkout-section h3 {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

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

.checkout-fields .wide {
  grid-column: 1 / -1;
}

.invoice-fields,
.billing-address-fields,
.card-fields {
  max-height: 620px;
  overflow: hidden;
  opacity: 1;
  transform-origin: top;
  transition: max-height 0.26s ease, opacity 0.2s ease, transform 0.2s ease, margin 0.2s ease;
}

.invoice-fields.is-collapsed,
.billing-address-fields.is-collapsed,
.card-fields.is-collapsed {
  max-height: 0;
  margin-top: -12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.billing-address-fields {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.checkout-check,
.checkout-radio {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
}

.checkout-check input,
.checkout-radio input {
  width: 18px !important;
  min-height: 18px !important;
  flex: 0 0 18px;
  accent-color: var(--orange);
}

.billing-choice {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.billing-choice .checkout-radio {
  min-height: 52px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.billing-choice .checkout-radio:last-child {
  border-bottom: 0;
}

.shipping-method-box {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 4px;
  color: var(--muted);
  background: #f1f1ef;
  font-weight: 700;
  line-height: 1.45;
}

.shipping-method-box strong {
  color: var(--ink);
}

.checkout-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.checkout-panel label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.checkout-panel input,
.checkout-panel select,
.checkout-panel textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 12px;
  background: #fff;
}

.checkout-panel input::placeholder,
.checkout-panel textarea::placeholder {
  color: #898782;
  font-weight: 800;
}

.payment-options {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.payment-option {
  display: grid !important;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px !important;
  min-height: 72px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

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

.payment-option:has(input:checked) {
  outline: 2px solid #0b63ce;
  outline-offset: -2px;
  background: #f3f5ff;
}

.payment-option input {
  width: 18px !important;
  min-height: 18px !important;
  accent-color: #0b63ce;
}

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

.payment-option small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.payment-option em {
  display: inline-flex;
  min-width: 52px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--green-dark);
  background: #fff;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 900;
}

.card-fields {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-top: 0;
  background: #f4f4f4;
}

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

.checkout-whatsapp {
  color: var(--ink);
  border-color: var(--line);
}

.checkout-panel textarea {
  min-height: 92px;
  resize: vertical;
}

.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 6px;
  padding: 16px;
  border-radius: 4px;
  color: #fff;
  background: var(--ink);
}

.checkout-total span {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 800;
}

.checkout-total strong {
  font-size: 1.3rem;
}

.checkout-panel .form-status {
  color: var(--muted) !important;
}

.checkout-panel.is-disabled {
  opacity: 0.66;
}

.workspace {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background: var(--paper);
}

.wholesale {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  color: #fff;
  background: var(--ink);
}

.wholesale-intro {
  position: sticky;
  top: 122px;
}

.wholesale p {
  color: rgba(255, 255, 255, 0.5);
}

.wholesale-content {
  display: grid;
  gap: 18px;
}

.wholesale-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.wholesale-form label {
  display: grid;
  gap: 7px;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 900;
}

.wholesale-form input,
.wholesale-form select,
.wholesale-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 2px;
  padding: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.wholesale-form input::placeholder,
.wholesale-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.wholesale-form select option {
  color: var(--ink);
}

.wholesale-form textarea {
  min-height: 118px;
  resize: vertical;
}

.wholesale-form input[type="file"] {
  padding: 10px;
  color: rgba(255, 255, 255, 0.74);
}

.wholesale-form .wide,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 0.9rem;
}

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

.wholesale-grid article {
  min-height: 180px;
  padding: 18px;
  border: 1px solid var(--line);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.wholesale-grid strong,
.wholesale-grid span {
  display: block;
}

.wholesale-grid strong {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 1.1rem;
}

.wholesale-grid span {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  color: #fff;
  background: var(--ink);
}

.about-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 0;
  border-radius: 0;
  box-shadow: var(--shadow);
  filter: brightness(0.72) contrast(1.08);
}

.about-copy {
  max-width: 760px;
}

.about-copy h2 {
  color: #fff;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 300;
}

.about-copy blockquote {
  margin: 34px 0 0;
  padding-left: 20px;
  border-left: 3px solid var(--orange);
}

.about-copy blockquote span,
.about-copy blockquote strong {
  display: block;
}

.about-copy blockquote span {
  color: rgba(255, 255, 255, 0.76);
  font-style: italic;
  line-height: 1.6;
}

.about-copy blockquote strong {
  margin-top: 8px;
  color: var(--orange);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.about-timeline article {
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.about-timeline span {
  color: var(--orange);
  font-weight: 900;
}

.about-timeline strong {
  color: #fff;
}

.about-timeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.9rem;
  line-height: 1.5;
}

.trust-section {
  padding: clamp(54px, 7vw, 88px) clamp(16px, 5vw, 72px);
  background: var(--paper);
}

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

.trust-grid a {
  display: grid;
  gap: 10px;
  min-height: 160px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(39, 35, 33, 0.08);
}

.trust-grid a:hover {
  border-color: var(--orange);
}

.trust-grid strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.trust-grid span {
  color: var(--muted);
  line-height: 1.5;
}

.policy-page {
  min-height: 70vh;
  padding: clamp(54px, 7vw, 88px) clamp(16px, 5vw, 72px);
  background: var(--paper);
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.policy-aside {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.policy-aside a {
  color: var(--green-dark);
  font-weight: 900;
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.policy-card h2,
.policy-card h3 {
  margin-bottom: 10px;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.7;
}

.policy-card ul {
  margin: 0;
  padding-left: 20px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(16px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer div {
  flex-direction: column;
  gap: 4px;
}

.site-footer strong {
  color: #fff;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 900;
}

.site-footer a:hover {
  color: var(--orange);
}

.product-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-form label {
  display: grid;
  gap: 7px;
  color: var(--green-dark);
  font-weight: 900;
}

.product-form .wide {
  grid-column: 1 / -1;
}

.quote {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 460px);
  gap: clamp(24px, 5vw, 70px);
  color: #fff;
  background: var(--ink);
}

.quote p,
.quote .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.shipping-note {
  display: grid;
  gap: 6px;
  max-width: 420px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.shipping-note strong {
  color: var(--orange);
}

.shipping-note span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.quote-box {
  padding: 18px;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
}

.quote-header,
.quote-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote-header {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.quote-header button,
.qty button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.quote-items {
  display: grid;
  gap: 10px;
  min-height: 96px;
  padding: 14px 0;
}

.quote-line {
  align-items: start;
  padding: 10px;
  border-radius: 8px;
  background: var(--paper);
}

.quote-line strong,
.quote-line span {
  display: block;
}

.quote-line span {
  color: var(--muted);
  font-size: 0.85rem;
}

.qty {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.qty button {
  width: 28px;
  height: 28px;
}

.empty {
  margin: 0;
  color: var(--muted) !important;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .topbar,
  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar {
    gap: 8px;
  }

  .hero,
  .workspace,
  .quote,
  .wholesale,
  .about,
  .cart-checkout {
    grid-template-columns: 1fr;
  }

  .checkout-panel {
    position: static;
    max-height: none;
    overflow: visible;
  }

  .cart-page-lines {
    position: static;
    max-height: none;
  }

  .wholesale-intro {
    position: static;
  }

  .lines,
  .product-grid,
  .wholesale-grid,
  .advanced-filters,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 620px) {
  .hero::before {
    background-image:
      linear-gradient(90deg, rgba(26, 26, 26, 0.98), rgba(26, 26, 26, 0.74)),
      linear-gradient(0deg, rgba(26, 26, 26, 0.98), rgba(26, 26, 26, 0.36)),
      url("assets/hero-magrey-pattern.svg");
    background-position: center, center, 64% center;
    background-size: cover, cover, auto 100%;
    opacity: 0.9;
  }

  .hero::after {
    inset: auto -20% -24% 0;
    height: 46%;
  }

  .cart-hero {
    padding: 48px 18px 22px;
  }

  .cart-checkout {
    padding: 18px;
  }

  .checkout-fields {
    grid-template-columns: 1fr;
  }

  .checkout-fields .wide {
    grid-column: auto;
  }

  .payment-option {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .payment-option em {
    grid-column: 2;
    justify-self: start;
  }

  .card-fields > div {
    grid-template-columns: 1fr;
  }

  .cart-page-line {
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: start;
  }

  .cart-page-line .cart-qty,
  .cart-page-line > strong {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .cart-thumb {
    width: 78px;
    height: 78px;
  }

  .brand {
    order: 2;
    justify-self: center;
    width: 148px;
    min-width: 0;
  }

  .topbar {
    display: grid;
    grid-template-columns: 44px 1fr 42px 42px;
    gap: 10px;
    padding: 8px 14px 10px;
  }

  .menu-toggle,
  .cart-link,
  .profile-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 2px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
  }

  .menu-toggle {
    order: 1;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .cart-link {
    order: 4;
    justify-self: end;
    color: var(--ink);
    background: var(--orange);
    border-color: var(--orange);
  }

  .profile-menu {
    order: 3;
    justify-self: end;
    margin-left: 0;
  }

  .profile-dropdown {
    right: -52px;
  }

  .cart-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(26, 26, 26, 0.98);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    transition: max-height 0.24s ease, padding 0.24s ease;
  }

  .menu-open .nav {
    max-height: 420px;
    padding: 10px 14px 14px;
  }

  .nav-item-wrap {
    width: 100%;
  }

  .nav > .nav-item-wrap > a {
    width: 100%;
    padding: 13px 10px;
    border-radius: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav > .nav-item-wrap:last-child > a {
    border-bottom: 0;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
  }

  .nav-item-wrap:hover .nav-submenu,
  .nav-item-wrap:focus-within .nav-submenu {
    max-height: 720px;
    padding: 10px;
  }

  .nav-menu-group a {
    color: rgba(255, 255, 255, 0.74);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  h1 {
    font-size: 2.55rem;
  }

  .lines,
  .product-grid,
  .product-form,
  .wholesale-form,
  .wholesale-grid,
  .advanced-filters,
  .about-timeline,
  .trust-grid,
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-aside {
    position: static;
  }

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

  .catalog-meta {
    flex-direction: column;
  }

  .info-carousel {
    padding-bottom: 52px;
  }

  .info-head h2 {
    max-width: 320px;
  }

  .info-card {
    width: 270px;
    min-height: 180px;
  }

  .featured-shell,
  .info-rail {
    scroll-snap-type: x proximity;
  }

  .featured-track,
  .info-track {
    animation: none;
  }

  .featured-card,
  .info-card {
    scroll-snap-align: start;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 29px;
    height: 29px;
  }
}
