:root {
  --brand: #ef5b00;
  --brand-dark: #cc4c00;
  --ink: #222222;
  --ink-soft: #4a4744;
  --muted: #6e6a66;
  --paper: #fffdfa;
  --paper-2: #f8f4ee;
  --sand: #f1e7da;
  --line: #e2d9ce;
  --line-strong: #cfc4b8;
  --card: #ffffff;
  --green: #2f6a48;
  --whatsapp: #25d366;
  --shadow-sm: 0 10px 25px rgba(33, 28, 23, .06);
  --shadow-md: 0 18px 40px rgba(33, 28, 23, .10);
  --shadow-lg: 0 30px 70px rgba(33, 28, 23, .16);
  --radius: 18px;
  --container: 1360px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
body.panel-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .55; }
svg { display: block; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; left: 16px; top: -80px; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 253, 250, .94);
  border-bottom: 1px solid rgba(226, 217, 206, .9);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 58px; height: 58px; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow-sm); }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: 1.08rem; font-weight: 800; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: .8rem; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.8vw, 38px); margin-left: auto; }
.desktop-nav a {
  position: relative;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: .98rem;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--brand);
  transition: right .2s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-cart {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 6px 10px 6px 13px;
  border-radius: 16px;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.header-cart:hover { border-color: var(--line-strong); background: var(--paper-2); }
.header-cart svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.header-cart-copy { display: grid; min-width: 68px; text-align: left; line-height: 1.05; }
.header-cart-copy small { color: var(--muted); font-size: .72rem; }
.header-cart-copy strong { margin-top: 4px; font-size: .95rem; font-weight: 800; }
.cart-count {
  display: grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding-inline: 6px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  align-content: center;
  justify-items: center;
  gap: 5px;
}
.menu-toggle span { width: 21px; height: 2px; background: var(--ink); border-radius: 2px; }

.hero {
  background: linear-gradient(180deg, #fbf7f1 0%, #f7f2eb 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: clamp(40px, 6vw, 84px);
  padding-block: 72px;
}
.section-kicker {
  display: inline-block;
  color: var(--brand);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.hero h1 {
  max-width: 720px;
  margin: 18px 0 18px;
  font-size: clamp(2.9rem, 5.4vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.05em;
  font-weight: 850;
}
.hero-copy > p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 20px;
  font-weight: 800;
  text-align: center;
  transition: background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 12px 24px rgba(239, 91, 0, .18); }
.btn-primary:hover { background: var(--brand-dark); }
.btn-outline { border-color: #c2b5a8; background: rgba(255,255,255,.7); color: var(--ink); }
.btn-outline:hover { background: #fff; border-color: #a69585; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: #1cb858; }
.btn-block { width: 100%; }

.hero-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 700px;
  gap: 18px;
  margin-top: 34px;
}
.hero-details div {
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.68);
  box-shadow: var(--shadow-sm);
}
.hero-details strong { font-size: .96rem; }
.hero-details span { color: var(--muted); font-size: .86rem; }

.hero-visual {
  position: relative;
  min-height: 540px;
  border-radius: 28px;
  overflow: hidden;
  background: #ebe1d4;
  border: 1px solid #e1d4c5;
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(226, 217, 206, .95);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}
.hero-note strong { font-size: 1rem; }
.hero-note span { color: var(--muted); font-size: .9rem; }

.quick-info { border-bottom: 1px solid var(--line); background: #fff; }
.quick-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.quick-info-grid div {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
}
.quick-info-grid div:last-child { border-right: 0; }
.quick-info-grid span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff2e8;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 800;
}
.quick-info-grid p { margin: 0; color: var(--muted); font-size: .92rem; }
.quick-info-grid strong { color: var(--ink); }

.products-section { padding-block: 84px 100px; }
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}
.section-heading h2 {
  margin: 10px 0 6px;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.04em;
}
.section-heading p { margin: 0; color: var(--muted); }
.catalog-tools { display: flex; gap: 10px; }
.search-box,
.category-box {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0 14px;
}
.search-box:focus-within,
.category-box:focus-within { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(239,91,0,.1); }
.search-box svg { width: 20px; height: 20px; fill: none; stroke: var(--muted); stroke-width: 1.8; stroke-linecap: round; }
.search-box input,
.category-box select { border: 0; outline: 0; background: transparent; color: var(--ink); }
.search-box input { width: 250px; }
.category-box select { min-width: 210px; }
.category-chips { display: flex; gap: 8px; overflow-x: auto; padding: 3px 0 9px; scrollbar-width: thin; }
.chip {
  flex: 0 0 auto;
  min-height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  color: #5b5651;
  font-size: .84rem;
  font-weight: 700;
}
.chip:hover { border-color: #bfb4a8; }
.chip.active { border-color: var(--ink); background: var(--ink); color: #fff; }
.results-count { min-height: 22px; margin: 8px 0 18px; color: var(--muted); font-size: .86rem; }
.products-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.product-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3ece3;
  border-bottom: 1px solid var(--line);
}
.product-image { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(255,255,255,.95);
  padding: 6px 9px;
  border: 1px solid rgba(226,217,206,.95);
  border-radius: 999px;
  color: var(--green);
  font-size: .67rem;
  font-weight: 800;
}
.product-content { display: flex; flex-direction: column; flex: 1; padding: 18px; }
.product-code { color: var(--brand); font-size: .7rem; font-weight: 800; letter-spacing: .08em; }
.product-card h3 {
  margin: 6px 0 8px;
  font-size: 1.22rem;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.02em;
}
.product-description { margin: 0 0 16px; min-height: 45px; color: var(--muted); font-size: .88rem; }
.product-form { margin-top: auto; }
.option-label { display: block; margin-bottom: 6px; color: #514c48; font-size: .78rem; font-weight: 800; }
.product-select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 0 12px;
  outline: none;
}
.product-select:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(239,91,0,.1); }
.price-line { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-top: 13px; }
.price-line span { color: var(--muted); font-size: .78rem; }
.price-line strong { color: var(--brand); font-size: 1.35rem; font-weight: 850; }
.product-actions { display: grid; grid-template-columns: auto 1fr; gap: 10px; margin-top: 14px; }
.qty-control {
  min-height: 46px;
  display: grid;
  grid-template-columns: 36px 36px 36px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.qty-control button { height: 100%; border: 0; background: var(--paper-2); color: var(--ink); font-weight: 800; }
.qty-control button:hover { background: var(--sand); }
.qty-control output { text-align: center; font-weight: 800; }
.add-button,
.consult-button {
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  padding: 10px 12px;
  font-weight: 800;
}
.add-button:hover,
.consult-button:hover { background: var(--brand); }
.consult-button { width: 100%; margin-top: 14px; }
.empty-state {
  text-align: center;
  padding: 80px 20px;
  border: 1px dashed var(--line-strong);
  border-radius: 18px;
  background: #fff;
}
.empty-state h3 { margin: 0 0 5px; }
.empty-state p { margin: 0; color: var(--muted); }



.beds-section {
  padding-block: 82px;
  background: #fffaf4;
  border-top: 1px solid var(--line);
}
.beds-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}
.beds-heading > div { max-width: 820px; }
.beds-heading h2 {
  margin: 10px 0 8px;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.04em;
}
.beds-heading p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}
.beds-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.bed-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.bed-card-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 2px 2px 13px;
}
.bed-card-head span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}
.bed-card-head h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.03em;
}
.bed-main-button {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: var(--paper-2);
  padding: 0;
}
.bed-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .2s ease;
}
.bed-main-button:hover .bed-main-image { transform: scale(1.015); }
.bed-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  margin-top: 10px;
}
.bed-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 10px;
  background: var(--paper-2);
  padding: 0;
}
.bed-thumb.active { border-color: var(--brand); }
.bed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bed-whatsapp {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border-radius: 12px;
  background: var(--whatsapp);
  color: #fff;
  padding: 10px 14px;
  text-align: center;
  font-size: .9rem;
  font-weight: 800;
}
.bed-whatsapp:hover { background: #1cb858; }
.bed-lightbox {
  position: fixed;
  z-index: 180;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 15, 15, .88);
}
.bed-lightbox[hidden] { display: none; }
.bed-lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
}
.bed-lightbox-close {
  position: fixed;
  z-index: 181;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(0,0,0,.46);
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
}

.services-section {
  padding-block: 78px;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.services-heading {
  margin-bottom: 24px;
}
.services-heading > div { max-width: 720px; }
.services-heading h2 {
  margin: 10px 0 8px;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.04em;
}
.services-heading p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  line-height: 1.25;
  font-weight: 820;
  letter-spacing: -.02em;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}
.service-card > a {
  width: max-content;
  margin-top: auto;
  padding-top: 20px;
  color: var(--brand);
  font-size: .88rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.service-card > a:hover { color: var(--brand-dark); }

.how-section { padding-block: 88px; background: var(--paper-2); border-block: 1px solid var(--line); }
.how-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr); gap: clamp(44px, 7vw, 110px); align-items: start; }
.how-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
  font-weight: 850;
  letter-spacing: -.04em;
}
.how-copy p { max-width: 560px; margin: 0; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 26px; color: var(--brand); font-weight: 800; }
.steps-list {
  display: grid;
  gap: 14px;
}
.steps-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.steps-list article > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff2e8;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 800;
}
.steps-list h3 { margin: 0 0 4px; font-size: 1rem; }
.steps-list p { margin: 0; color: var(--muted); }

.contact-section { padding-block: 88px; }
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: clamp(30px, 5vw, 56px);
  background: linear-gradient(135deg, #1f1f1f 0%, #2e2e2e 100%);
  color: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}
.section-kicker-light { color: #ff9f5f; }
.contact-card h2 {
  max-width: 720px;
  margin: 10px 0 10px;
  font-size: clamp(1.9rem, 3.6vw, 3.6rem);
  line-height: 1.02;
  font-weight: 850;
  letter-spacing: -.04em;
}
.contact-card p { margin: 0; color: #d0d0d0; }
.contact-actions { display: grid; gap: 12px; min-width: 290px; }
.contact-domain { text-align: center; color: #c8c8c8; font-size: .88rem; }

.site-footer { background: #171717; color: #fff; padding-top: 52px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 40px; padding-bottom: 42px; }
.footer-brand { display: flex; gap: 14px; align-items: center; }
.footer-brand img { width: 64px; height: 64px; border-radius: 14px; }
.footer-brand div { display: grid; gap: 4px; }
.footer-brand span,
.footer-links a { color: #b9b9b9; font-size: .9rem; }
.footer-links { display: grid; align-content: start; gap: 8px; }
.footer-links strong { margin-bottom: 4px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding: 18px 0 24px; border-top: 1px solid rgba(255,255,255,.1); color: #929292; font-size: .84rem; }

.whatsapp-float {
  position: fixed;
  z-index: 42;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
}
.whatsapp-float:hover { transform: translateY(-1px); }
.whatsapp-float svg { width: 30px; height: 30px; }

.panel-backdrop { position: fixed; z-index: 89; inset: 0; background: rgba(16,16,16,.52); backdrop-filter: blur(2px); }
.mobile-menu {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  width: min(390px, 92vw);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  box-shadow: -20px 0 70px rgba(0,0,0,.22);
  transform: translateX(105%);
  transition: transform .25s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding: 18px; border-bottom: 1px solid var(--line); }
.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
}
.mobile-nav { display: grid; align-content: start; padding: 18px; }
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}
.mobile-nav b { color: var(--brand); font-size: 1.25rem; }
.mobile-menu-actions { padding: 18px; border-top: 1px solid var(--line); background: var(--paper-2); }
.mobile-menu-actions .btn + .btn { margin-top: 9px; }
.mobile-menu-actions p { margin: 12px 0 0; color: var(--muted); text-align: center; font-size: .84rem; }

.cart-backdrop { z-index: 99; }
.cart-drawer {
  position: fixed;
  z-index: 100;
  right: 0;
  top: 0;
  width: min(470px, 100%);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #fff;
  box-shadow: -20px 0 70px rgba(0,0,0,.24);
  transform: translateX(105%);
  transition: transform .25s ease;
}
.cart-drawer.open { transform: translateX(0); }
.drawer-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 22px; border-bottom: 1px solid var(--line); }
.drawer-header h2 { margin: 5px 0 2px; font-size: 2rem; font-weight: 850; letter-spacing: -.03em; }
.drawer-header p { margin: 0; color: var(--muted); font-size: .82rem; }
.cart-items { padding: 8px 20px; overflow-y: auto; }
.cart-item {
  display: grid;
  grid-template-columns: 66px minmax(0,1fr) auto;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper-2);
}
.cart-item h4 { margin: 0 0 4px; font-size: .98rem; line-height: 1.15; font-weight: 800; }
.cart-item p { margin: 0; color: var(--muted); font-size: .78rem; }
.cart-item-meta { display: flex; align-items: center; gap: 7px; margin-top: 9px; }
.cart-item-meta button { width: 28px; height: 28px; border: 1px solid var(--line); background: var(--paper-2); border-radius: 8px; }
.cart-item-meta strong { min-width: 20px; text-align: center; font-size: .84rem; }
.cart-item-price { min-width: 82px; display: grid; align-content: space-between; justify-items: end; }
.cart-item-price strong { color: var(--brand); font-size: .95rem; }
.remove-item { border: 0; background: transparent; color: #9e3f35; padding: 0; font-size: .74rem; }
.cart-empty { align-self: center; justify-self: center; max-width: 340px; text-align: center; padding: 35px 22px; }
.cart-empty img { width: 120px; height: 120px; object-fit: cover; margin: 0 auto 14px; border-radius: 18px; }
.cart-empty h3 { margin: 0 0 6px; font-size: 1.45rem; font-weight: 850; }
.cart-empty p { margin: 0 0 18px; color: var(--muted); }
.drawer-footer { padding: 18px 22px calc(22px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); background: #fff; }
.cart-total-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.cart-total-row span { font-weight: 800; }
.cart-total-row strong { color: var(--brand); font-size: 1.55rem; font-weight: 850; }
.drawer-footer > p { margin: 5px 0 13px; color: var(--muted); font-size: .78rem; }
.clear-cart { width: 100%; margin-top: 9px; border: 0; background: transparent; color: #8a4a43; padding: 7px; font-size: .82rem; font-weight: 800; }

.mobile-cart-bar { display: none; position: fixed; z-index: 70; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); }
.mobile-cart-bar button {
  width: 100%;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  padding: 9px 14px;
  box-shadow: 0 14px 38px rgba(0,0,0,.25);
}
.mobile-cart-bar span { display: grid; text-align: left; line-height: 1.15; }
.mobile-cart-bar small { color: #bbb; font-size: .72rem; }
.mobile-cart-bar strong { margin-top: 3px; }
.mobile-cart-bar b { color: #ff9859; font-size: .9rem; }

.toast {
  position: fixed;
  z-index: 150;
  left: 50%;
  bottom: 25px;
  max-width: calc(100% - 24px);
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: var(--ink);
  color: #fff;
  padding: 11px 15px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  transition: opacity .18s ease, transform .18s ease;
  text-align: center;
  font-size: .88rem;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1220px) {
  .hero-grid { grid-template-columns: minmax(0, .96fr) minmax(390px, 1.04fr); gap: 42px; }
  .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 56px; }
  .hero-copy { max-width: 840px; }
  .hero-visual { min-height: 420px; }
  .quick-info-grid { grid-template-columns: 1fr; }
  .quick-info-grid div { min-height: 86px; border-right: 0; border-bottom: 1px solid var(--line); padding: 18px 8px; }
  .quick-info-grid div:last-child { border-bottom: 0; }
  .section-heading { align-items: stretch; flex-direction: column; }
  .catalog-tools { width: 100%; }
  .search-box { flex: 1; }
  .search-box input { width: 100%; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .how-grid { grid-template-columns: 1fr; gap: 38px; }
  .contact-card { align-items: stretch; flex-direction: column; }
  .contact-actions { min-width: 0; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 78px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .header-inner { min-height: 72px; gap: 12px; }
  .brand img { width: 46px; height: 46px; }
  .brand-copy small { display: none; }
  .header-cart { min-height: 46px; padding: 5px 7px 5px 10px; }
  .header-cart-copy { display: none; }
  .header-cart svg { width: 20px; height: 20px; }
  .cart-count { min-width: 24px; height: 24px; }
  .menu-toggle { width: 44px; height: 44px; }
  .hero-grid { gap: 30px; padding-block: 42px 48px; }
  .hero h1 { margin-top: 14px; font-size: clamp(2.6rem, 12vw, 4.3rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-details { grid-template-columns: 1fr; gap: 14px; }
  .hero-visual { min-height: 320px; border-radius: 22px; }
  .hero-note { left: 14px; right: 14px; bottom: 14px; padding: 15px 16px; }
  .products-section { padding-block: 64px 78px; }
  .section-heading h2 { font-size: 2.4rem; }
  .catalog-tools { display: grid; grid-template-columns: 1fr; }
  .category-box select { width: 100%; }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
  .product-content { padding: 14px; }
  .product-card h3 { font-size: 1.02rem; }
  .product-description { display: none; }
  .product-badge { left: 8px; top: 8px; max-width: calc(100% - 16px); font-size: .58rem; }
  .product-actions { grid-template-columns: 1fr; }
  .qty-control { grid-template-columns: 1fr 1fr 1fr; }
  .services-section { padding-block: 68px; }
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { min-height: 0; padding: 20px; }
  .how-section, .contact-section { padding-block: 68px; }
  .contact-card { padding: 28px 22px; border-radius: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .whatsapp-float { display: none; }
  .mobile-cart-bar:not([hidden]) { display: block; }
  .toast { bottom: 86px; }
  body:has(.mobile-cart-bar:not([hidden])) .site-footer { padding-bottom: 74px; }
}

@media (max-width: 480px) {
  .brand-copy strong { font-size: .96rem; }
  .products-grid { grid-template-columns: 1fr; gap: 14px; }
  .product-image-wrap { aspect-ratio: 16 / 13; }
  .product-description { display: block; min-height: 0; }
  .product-actions { grid-template-columns: 108px 1fr; }
  .cart-drawer { width: 100%; }
  .cart-item { grid-template-columns: 58px minmax(0,1fr); }
  .cart-item img { width: 58px; height: 58px; }
  .cart-item-price { grid-column: 2; grid-row: 2; display: flex; align-items: center; justify-content: space-between; min-width: 0; }
}

@media (min-width: 1600px) {
  :root { --container: 1460px; }
  .products-grid { gap: 22px; }
}

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

@media (max-width: 760px) {
  .beds-section { padding-block: 68px; }
  .beds-grid { grid-template-columns: 1fr; gap: 16px; }
  .bed-card { padding: 14px; }
  .bed-card-head h3 { font-size: 1.3rem; }
  .bed-main-button { aspect-ratio: 16 / 12; }
  .bed-lightbox { padding: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
