:root {
  --ink: #07111f;
  --navy: #0b1730;
  --navy-2: #102447;
  --paper: #ffffff;
  --mist: #f4f7fb;
  --line: #dfe7f2;
  --text: #102033;
  --muted: #66768f;
  --blue: #1769ff;
  --blue-2: #4a8dff;
  --green: #18a957;
  --amber: #f5a623;
  --danger: #e5484d;
  --shadow: 0 24px 70px rgba(7, 17, 31, .16);
  --font-head: 'Outfit', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--mist);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
body.drawer-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
main { min-width: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  height: 82px;
  padding: 0 clamp(18px, 3vw, 48px);
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(223, 231, 242, .9);
  backdrop-filter: blur(18px);
}

.brand {
  grid-column: 2;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 190px;
  height: 68px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.brand img { width: 184px; height: 58px; object-fit: contain; }
.primary-nav {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1 1 auto;
  gap: clamp(14px, 2vw, 26px);
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}
.header-actions {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}
.primary-nav a:hover { color: var(--blue); }
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 80;
  display: grid;
  min-width: 210px;
  padding: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(7, 17, 31, .14);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}
.nav-menu a {
  padding: 10px 12px;
  color: var(--text);
  border-radius: 10px;
}
.nav-menu a:hover {
  color: var(--blue);
  background: var(--mist);
}
.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(245, 166, 35, .65);
  outline-offset: 3px;
}

.quote-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 8px 10px 8px 18px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--blue), #0d4fd1);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(23, 105, 255, .24);
  font-family: var(--font-head);
  font-weight: 800;
}
.quote-pill strong {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 999px;
}

.profile-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 46px;
  padding: 10px 18px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(7, 17, 31, .08);
}

.mobile-app-nav {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 70;
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  padding: 7px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(223, 231, 242, .95);
  border-radius: 22px;
  box-shadow: 0 18px 52px rgba(7, 17, 31, .22);
  backdrop-filter: blur(18px);
}
.mobile-nav-item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 3px;
  min-width: 0;
  min-height: 54px;
  padding: 7px 2px 6px;
  color: var(--muted);
  border-radius: 16px;
  font-size: .68rem;
  font-weight: 900;
}
.mobile-nav-item.active,
.mobile-nav-item:active {
  color: var(--blue);
  background: rgba(23, 105, 255, .09);
}
.mobile-icon {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 11px;
  font-family: var(--font-head);
  font-size: .74rem;
  font-weight: 900;
}
.mobile-nav-item.active .mobile-icon {
  background: var(--blue);
}
.mobile-quote-link strong {
  position: absolute;
  top: 5px;
  right: 7px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  color: var(--paper);
  background: var(--danger);
  border: 2px solid var(--paper);
  border-radius: 999px;
  font-size: .64rem;
  line-height: 1;
}

.market-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  gap: clamp(30px, 5vw, 76px);
  min-height: calc(100vh - 78px);
  padding: clamp(44px, 7vw, 86px) clamp(18px, 4vw, 64px) 58px;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    radial-gradient(circle at 78% 20%, rgba(23, 105, 255, .34), transparent 31%),
    radial-gradient(circle at 62% 82%, rgba(24, 169, 87, .18), transparent 28%),
    linear-gradient(135deg, #07111f 0%, #0b1730 48%, #112a4f 100%);
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
}
.market-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(244, 247, 251, .92));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 680px;
}
.trust-line, .section-kicker {
  display: inline-flex;
  margin: 0 0 16px;
  color: var(--amber);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--font-head); letter-spacing: 0; }
.hero-copy h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.3rem, 8vw, 6.9rem);
  line-height: .86;
  font-weight: 900;
}
.hero-sub {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.75;
}
.hero-actions, .hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 14px;
  border: 0;
  font-family: var(--font-head);
  font-weight: 900;
}
.btn-primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--blue), #0a55df);
  box-shadow: 0 18px 42px rgba(23, 105, 255, .28);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 10px;
  padding: 13px 22px;
  color: var(--paper);
  background: linear-gradient(135deg, #1fbf63, #128c42);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(24, 169, 87, .24);
  font-family: var(--font-head);
  font-weight: 900;
}
.btn-whatsapp:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(24, 169, 87, .28);
}
.btn-whatsapp:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.btn-secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
}
.hero-proof strong { color: var(--paper); }

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: 590px;
  perspective: 1200px;
}
.stage-card, .crate {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .3);
  transform-style: preserve-3d;
  animation: floatSoft 7s ease-in-out infinite;
}
.stage-card {
  padding: 22px;
  color: var(--paper);
  background: linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .06));
  backdrop-filter: blur(20px);
  border-radius: 26px;
}
.card-rfq {
  top: 62px;
  right: 48px;
  width: min(360px, 80vw);
  transform: rotateY(-12deg) rotateX(8deg);
}
.card-dashboard {
  left: 18px;
  bottom: 66px;
  width: 310px;
  transform: rotateY(13deg) rotateX(7deg);
  animation-delay: -1.5s;
}
.mini-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .56);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
}
.quote-line, .dash-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, .08);
  border-radius: 14px;
}
.quote-line.muted { color: rgba(255, 255, 255, .68); }
.dash-row { justify-content: flex-start; }
.dash-row i {
  width: 10px;
  height: 10px;
  background: var(--blue-2);
  border-radius: 999px;
}
.dash-row.active i { background: var(--green); }
.crate {
  display: grid;
  place-items: center;
  width: 138px;
  height: 138px;
  color: var(--paper);
  background: linear-gradient(145deg, #f3a738, #925d16);
  border-radius: 28px;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  animation-delay: -.75s;
}
.crate::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 2px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
}
.crate-a { left: 36%; top: 240px; transform: rotateX(54deg) rotateZ(-17deg); }
.crate-b { right: 4%; bottom: 86px; width: 112px; height: 112px; background: linear-gradient(145deg, #2f81ff, #0f3b91); transform: rotateX(52deg) rotateZ(14deg); }
.crate-c { left: 12%; top: 92px; width: 96px; height: 96px; background: linear-gradient(145deg, #2acb78, #116236); transform: rotateX(52deg) rotateZ(16deg); animation-delay: -2.2s; }
.orbit-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  transform: rotateX(68deg) rotateZ(-18deg);
}
.ring-a { inset: 108px 16px 96px 40px; }
.ring-b { inset: 164px 82px 162px 110px; }
@keyframes floatSoft {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}

.catalog-shell, .process-band, .contact-band, .business-footer {
  padding: clamp(50px, 7vw, 86px) clamp(18px, 4vw, 64px);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}
.section-heading.narrow { display: block; max-width: 760px; }
.section-heading h2, .contact-band h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: .95;
  font-weight: 900;
}
.section-heading p, .contact-band p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, .38fr) minmax(280px, 1fr);
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 46px rgba(7, 17, 31, .08);
}
.home-filter-state { display: none; }
.home-filter-state .category-strip,
.home-filter-state #category-strip {
  display: none;
}
.search-box, .category-select-box {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.category-select-box {
  grid-template-columns: auto minmax(0, 1fr);
}
.search-box span, .category-select-box span {
  color: var(--blue);
  font-family: var(--font-head);
  font-weight: 900;
}
.search-box input, .category-select-box select {
  min-width: 0;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--text);
}
.category-select-box select {
  width: 100%;
  font-weight: 800;
}
.category-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 10px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
}
.category-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-height: 40px;
  padding: 9px 14px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}
.category-chip.active, .category-chip:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.home-catalog .product-grid {
  grid-template-columns: none;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 330px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 12px;
  scroll-snap-type: inline mandatory;
}
.home-catalog .product-grid::after {
  content: "";
  width: 1px;
}
.home-catalog .product-card {
  min-height: 430px;
  border-color: rgba(23, 105, 255, .16);
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(7, 17, 31, .08);
  scroll-snap-align: start;
}
.home-catalog .product-card.featured {
  border-color: rgba(23, 105, 255, .24);
}
.home-more {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 18px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(7, 17, 31, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card.featured { border-color: rgba(245, 166, 35, .55); }
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(23, 105, 255, .24);
  box-shadow: 0 28px 70px rgba(7, 17, 31, .13);
}
.product-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.product-orbit {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  color: var(--paper);
  background: linear-gradient(145deg, #1a66ff, #0b315f);
  border-radius: 22px;
  box-shadow: inset 0 1px rgba(255, 255, 255, .28), 0 18px 30px rgba(23, 105, 255, .2);
  transform: rotateX(8deg) rotateZ(-5deg);
  font-family: var(--font-head);
  font-weight: 900;
}
.product-clean, .product-laundry { background: linear-gradient(145deg, #20bb72, #0b5a32); }
.product-amenity, .product-eco { background: linear-gradient(145deg, #f4ad36, #875312); }
.product-chair { background: linear-gradient(145deg, #64748b, #172033); }
.product-kitchen, .product-plate { background: linear-gradient(145deg, #263b66, #07111f); }
.product-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  color: var(--green);
  background: rgba(24, 169, 87, .1);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 900;
}
.badge.featured { color: #a06100; background: rgba(245, 166, 35, .15); }
.product-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.15;
  min-height: 2.7em;
  overflow-wrap: anywhere;
}
.prod-cat {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.product-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  min-height: 4.65em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: auto 0 16px;
}
.product-meta span {
  padding: 10px;
  background: var(--mist);
  border-radius: 12px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}
.product-meta strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: .9rem;
}
.card-actions {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
}
.qty-control {
  display: grid;
  grid-template-columns: 32px 1fr 32px;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.qty-control button {
  height: 100%;
  border: 0;
  background: var(--mist);
  color: var(--text);
  font-weight: 900;
}
.qty-control input {
  min-width: 0;
  border: 0;
  outline: 0;
  text-align: center;
  font-weight: 900;
}
.btn-add-quote {
  min-height: 44px;
  border: 0;
  border-radius: 14px;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--font-head);
  font-weight: 900;
  transition: background .18s ease, transform .18s ease;
}
.btn-add-quote:hover { background: var(--blue); transform: translateY(-1px); }
.btn-add-quote.just-added { background: var(--green); }
.empty-results, .loading-card {
  padding: 28px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  grid-column: 1 / -1;
  text-align: center;
}

.combo-window {
  margin: 24px 0 30px;
  padding: 22px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 58%, #f6fbf5 100%);
  border: 1px solid rgba(23, 105, 255, .14);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(7, 17, 31, .08);
}
.combo-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.combo-head h3 {
  margin: 0;
  font-size: 1.6rem;
}
.combo-head p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.combo-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 340px);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 8px;
  scroll-snap-type: inline mandatory;
}
.combo-card {
  min-height: 326px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(7, 17, 31, .06);
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
}
.combo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(7, 17, 31, .12);
}
.combo-media {
  display: grid;
  place-items: center;
  height: 142px;
  background: linear-gradient(135deg, #edf4ff, #f7fbf5);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.combo-card h4 {
  min-height: 50px;
  margin: 0;
  font-family: var(--font-head);
  font-size: 1.18rem;
  line-height: 1.08;
}
.combo-card p {
  min-height: 44px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}
.combo-card small {
  display: block;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.combo-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-weight: 900;
}

.process-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 105, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 105, 255, .04) 1px, transparent 1px),
    #ffffff;
  background-size: 36px 36px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.process-grid article {
  position: relative;
  min-height: 210px;
  padding: 28px;
  background: linear-gradient(180deg, #fff, #f9fbff);
  border: 1px solid rgba(23, 105, 255, .12);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(7, 17, 31, .06);
}
.process-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 900;
}
.process-grid h3 { margin: 16px 0 8px; font-size: 1.35rem; }
.process-grid p { margin: 0; color: var(--muted); line-height: 1.65; }

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--paper);
  background:
    radial-gradient(circle at 84% 36%, rgba(23, 105, 255, .28), transparent 30%),
    linear-gradient(135deg, #07111f, #0c1b34);
}
.contact-band h2 { color: var(--paper); }
.contact-band p { color: rgba(255, 255, 255, .72); }

.business-footer {
  color: rgba(255, 255, 255, .78);
  background: #07111f;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-brand img {
  width: 190px;
  height: auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.footer-brand p {
  max-width: 680px;
  margin: 0;
  line-height: 1.7;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0;
}
.footer-grid div {
  padding: 18px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
}
.footer-grid span {
  display: block;
  color: var(--amber);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--paper);
  font-family: var(--font-head);
  font-size: 1.2rem;
}
.footer-grid p {
  margin: 10px 0 0;
  line-height: 1.65;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-weight: 800;
}
.footer-bottom a {
  color: var(--paper);
}

.about-page {
  background: #f4f7fb;
}
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(58px, 7vw, 94px) clamp(18px, 4vw, 64px);
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 22%, rgba(23, 105, 255, .3), transparent 34%),
    linear-gradient(135deg, #07111f, #102447);
}
.about-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: .88;
}
.about-hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
  line-height: 1.75;
}
.about-panel {
  align-self: center;
  padding: 22px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .26);
}
.about-panel strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-head);
  font-size: 1.35rem;
}
.about-panel div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, .08);
  border-radius: 12px;
}
.about-section, .business-details {
  padding: clamp(50px, 7vw, 86px) clamp(18px, 4vw, 64px);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.about-grid article, .details-list div {
  padding: 20px;
  background: var(--paper);
  border: 1px solid rgba(23, 105, 255, .12);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(7, 17, 31, .06);
}
.about-grid span, .details-list span {
  display: block;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.about-grid strong, .details-list strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.2rem;
}
.about-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}
.business-details {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) 1fr;
  gap: 28px;
  background: #fff;
}
.business-details h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: .95;
}
.business-details p {
  color: var(--muted);
  line-height: 1.7;
}
.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  background: rgba(7, 17, 31, .6);
  backdrop-filter: blur(5px);
}
.drawer-backdrop.open { display: block; }
.quote-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  display: none;
  width: min(480px, 100vw);
  height: 100vh;
  padding: 24px;
  overflow-y: auto;
  background: var(--paper);
  box-shadow: -30px 0 80px rgba(7, 17, 31, .22);
  transform: translateX(102%);
  transition: transform .32s cubic-bezier(.2, .8, .2, 1);
}
.quote-drawer.open { display: block; transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h2 { margin: 0; font-size: 2rem; }
.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--mist);
  color: var(--text);
  font-weight: 900;
}
.quote-items {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}
.cart-empty {
  margin: 0;
  padding: 18px;
  color: var(--muted);
  background: var(--mist);
  border-radius: 16px;
}
.quote-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color .18s ease, background .18s ease;
}
.quote-row:hover { border-color: rgba(23, 105, 255, .26); background: #fbfdff; }
.quote-row h4 { margin: 0 0 6px; font-family: var(--font-head); }
.quote-row p { margin: 0; color: var(--muted); font-size: .85rem; }
.quote-row .remove {
  align-self: start;
  border: 0;
  color: var(--danger);
  background: transparent;
  font-weight: 900;
}
.quote-row .qty-control { grid-column: 1 / -1; }

.rfq-form {
  display: grid;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.form-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.form-title strong { font-family: var(--font-head); }
.form-title span { color: var(--muted); font-size: .82rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.form-grid label.full { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  min-height: 44px;
  padding: 12px;
  color: var(--text);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  text-transform: none;
}
.form-grid textarea { resize: vertical; }
.full-width { width: 100%; }
.rfq-message {
  min-height: 20px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}
.rfq-message.success { color: var(--green); }
.rfq-message.error { color: var(--danger); }

.detail-drawer, .profile-drawer { width: min(620px, 100vw); }
.detail-visual {
  display: grid;
  place-items: center;
  min-height: 260px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #eef5ff, #f8fbf5);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.detail-visual .product-image {
  width: 100%;
  height: 260px;
  object-fit: contain;
}
.detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.detail-meta span {
  display: grid;
  gap: 5px;
  padding: 12px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.detail-meta strong {
  color: var(--ink);
  font-family: var(--font-head);
  font-size: .98rem;
  text-transform: none;
  overflow-wrap: anywhere;
}
.combo-items-detail, .profile-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 18px;
}
.combo-items-detail div, .profile-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.profile-list.mini {
  margin-bottom: 0;
}
.profile-card, .profile-rfq {
  padding: 16px;
  background: linear-gradient(180deg, #fff, #f9fbff);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(7, 17, 31, .06);
}
.profile-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.35rem;
}
.profile-card span, .profile-card small, .profile-rfq small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}
.profile-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.profile-details div {
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.profile-details span {
  display: block;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.profile-details strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  overflow-wrap: anywhere;
}
.drawer-subhead {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 1.18rem;
}
.profile-rfq {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}
.profile-rfq > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.profile-rfq p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.profile-logout {
  width: 100%;
  margin-top: 12px;
  color: var(--ink);
  background: var(--mist);
  border-color: var(--line);
}
.profile-password-form {
  display: grid;
  gap: 10px;
}
.profile-password-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--text);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
}
.form-message {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  color: var(--blue);
  background: rgba(23, 105, 255, .1);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .market-hero { grid-template-columns: 1fr; }
  .hero-stage { min-height: 470px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-catalog .product-grid { grid-template-columns: none; }
  .about-hero, .business-details { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
  body.drawer-open { padding-bottom: 0; }
  .mobile-app-nav { display: grid; }
  .site-header { grid-template-columns: auto 1fr; height: auto; min-height: 62px; padding: 8px 12px; }
  .primary-nav { display: none; }
  .brand { grid-column: 1; min-width: 118px; width: 118px; height: 46px; justify-content: flex-start; }
  .brand img { width: 116px; height: 38px; }
  .header-actions { grid-column: 2; justify-content: flex-end; gap: 8px; }
  .profile-pill {
    max-width: 152px;
    min-height: 38px;
    padding: 8px 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: .82rem;
  }
  .site-header .quote-pill { display: none; }
  .market-hero { min-height: auto; padding: 34px 16px 36px; gap: 22px; }
  .hero-copy { max-width: none; }
  .trust-line, .section-kicker { margin-bottom: 10px; font-size: .72rem; }
  .hero-copy h1 { font-size: clamp(2.55rem, 13.5vw, 3.75rem); line-height: .94; }
  .hero-sub { margin-top: 16px; font-size: .98rem; line-height: 1.6; }
  .hero-actions { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 22px; }
  .hero-proof {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(136px, 1fr);
    gap: 8px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }
  .hero-proof::-webkit-scrollbar { display: none; }
  .hero-proof span {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    border-radius: 14px;
    scroll-snap-align: start;
  }
  .hero-stage { min-height: 310px; overflow: hidden; perspective: 900px; }
  .stage-card { padding: 16px; border-radius: 20px; }
  .card-rfq { right: 0; top: 18px; width: min(315px, 92vw); }
  .card-dashboard { left: 0; bottom: 18px; width: min(280px, 82vw); }
  .crate { width: 92px; height: 92px; border-radius: 20px; font-size: 1.25rem; }
  .crate-a { left: 48%; top: 162px; }
  .crate-b { right: 2%; bottom: 52px; width: 76px; height: 76px; }
  .crate-c { left: 6%; top: 74px; width: 72px; height: 72px; }
  .ring-a { inset: 78px 10px 72px 16px; }
  .ring-b { inset: 126px 52px 118px 62px; }
  .catalog-shell, .process-band, .contact-band, .business-footer { padding: 42px 16px; }
  .section-heading { display: block; }
  .section-heading h2, .contact-band h2 { font-size: clamp(2.1rem, 12vw, 3rem); line-height: 1; }
  .section-heading p { margin-top: 12px; }
  .catalog-toolbar { grid-template-columns: 1fr; gap: 10px; margin-bottom: 16px; padding: 10px; border-radius: 18px; }
  .search-box, .category-select-box { padding: 11px 12px; border-radius: 14px; }
  .category-strip { margin-left: -16px; margin-right: -16px; padding: 0 16px 12px; scrollbar-width: none; }
  .category-strip::-webkit-scrollbar,
  .combo-rail::-webkit-scrollbar,
  .home-catalog .product-grid::-webkit-scrollbar { display: none; }
  .category-chip { min-height: 38px; padding: 8px 12px; font-size: .86rem; }
  .combo-window { margin: 18px -4px 24px; padding: 14px; border-radius: 16px; }
  .combo-head { display: block; }
  .combo-head h3 { font-size: 1.28rem; }
  .combo-head p { margin-top: 10px; }
  .combo-rail { grid-auto-columns: minmax(238px, 82vw); gap: 12px; }
  .combo-card { min-height: 292px; }
  .product-grid { grid-template-columns: 1fr; }
  .home-catalog .product-grid { grid-template-columns: none; grid-auto-columns: minmax(244px, 82vw); gap: 12px; margin-left: -16px; margin-right: -16px; padding-left: 16px; padding-right: 16px; }
  .home-catalog .product-card { min-height: 390px; }
  .product-card { min-height: auto; padding: 14px; border-radius: 18px; }
  .product-top { margin-bottom: 12px; }
  .product-orbit { width: 74px; height: 74px; border-radius: 18px; }
  .product-badges { gap: 6px; max-width: 58%; }
  .badge { max-width: 100%; min-height: 24px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; font-size: .68rem; }
  .product-card h3, .product-card p { min-height: auto; }
  .product-card h3 { font-size: 1.08rem; }
  .product-card p { margin-top: 10px; font-size: .94rem; }
  .product-meta { gap: 8px; margin-bottom: 12px; }
  .product-meta span { padding: 9px; }
  .card-actions { grid-template-columns: 1fr; }
  .qty-control, .btn-add-quote { min-height: 46px; border-radius: 13px; }
  .btn-primary, .btn-secondary, .btn-whatsapp { width: 100%; min-height: 50px; }
  .quote-drawer {
    inset: 0;
    width: 100vw;
    height: 100dvh;
    padding: 18px 16px calc(26px + env(safe-area-inset-bottom));
    border-radius: 0;
  }
  .drawer-head { align-items: center; gap: 12px; padding-bottom: 14px; }
  .drawer-head h2 { font-size: 1.55rem; }
  .quote-row { padding: 12px; }
  .form-title { display: block; }
  .form-title span { display: block; margin-top: 4px; }
  .detail-visual { min-height: 210px; border-radius: 16px; }
  .detail-visual .product-image { height: 210px; }
  .detail-meta { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { padding: 20px; }
  .contact-band { display: block; }
  .contact-band .btn-primary { margin-top: 22px; }
  .footer-brand, .footer-bottom { display: block; }
  .footer-brand p, .footer-bottom a { display: block; margin-top: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .details-list { grid-template-columns: 1fr; }
  .profile-details { grid-template-columns: 1fr; }
  .about-hero h1 { font-size: 3rem; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .site-header { padding: 7px 10px; }
  .brand { min-width: 100px; width: 100px; }
  .brand img { width: 100px; height: 34px; }
  .profile-pill { max-width: 136px; padding-inline: 10px; }
  .hero-copy h1 { font-size: clamp(2.34rem, 12.5vw, 3.1rem); }
  .hero-proof { grid-auto-columns: minmax(128px, 1fr); }
  .hero-stage { min-height: 280px; }
  .card-rfq { width: min(292px, 94vw); }
  .card-dashboard { width: min(250px, 82vw); }
  .quote-line, .dash-row { padding: 10px; font-size: .9rem; }
  .section-heading h2, .contact-band h2 { font-size: clamp(1.9rem, 11vw, 2.65rem); }
  .home-catalog .product-grid { grid-auto-columns: minmax(230px, 84vw); }
  .combo-rail { grid-auto-columns: minmax(230px, 84vw); }
  .product-card { padding: 12px; }
  .product-meta { grid-template-columns: 1fr; }
  .mobile-app-nav { left: 7px; right: 7px; bottom: calc(7px + env(safe-area-inset-bottom)); border-radius: 19px; }
  .mobile-nav-item { min-height: 50px; font-size: .64rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
