: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);
}

.menu-toggle,
.cart-link {
  display: none;
}

.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;
  width: 100%;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
  -webkit-overflow-scrolling: touch;
}

.nav {
  scrollbar-width: none;
}

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

.nav a {
  padding: 10px 11px;
  border-radius: 2px;
  white-space: nowrap;
}

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

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

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

.hero-copy {
  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-shell.is-dragging a {
  pointer-events: 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 {
  overflow: hidden;
  background: #fff;
}

.product-image.photo img {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  padding: 0;
}

.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;
}

.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;
}

.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 {
    grid-template-columns: 1fr;
  }

  .wholesale-intro {
    position: static;
  }

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

}

@media (max-width: 620px) {
  .brand {
    justify-self: center;
    width: 148px;
    min-width: 0;
  }

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

  .menu-toggle,
  .cart-link {
    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 {
    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 {
    justify-self: end;
    color: var(--ink);
    background: var(--orange);
    border-color: var(--orange);
  }

  .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 a {
    width: 100%;
    padding: 13px 10px;
    border-radius: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

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

  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;
  }
}
