* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #f5f2f0;
  color: #222;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1rem;
}

img {
  display: block;
  max-width: 100%;
}

button,
a,
select {
  font: inherit;
}

a {
  color: inherit;
}

.hidden {
  display: none !important;
}

.header-container {
  width: 100%;
  background: #6a4634;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  min-height: 104px;
  margin: 0 auto;
  padding: 10px 18px;
}

.logo-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  text-decoration: none;
}

.logo-image {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.logo-title h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
  font-weight: 900;
  line-height: 1.08;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
  user-select: none;
}

.menu-toggle {
  display: none;
  position: absolute;
  left: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.nav-actions {
  position: absolute;
  right: 16px;
  top: 50%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-50%);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 7px 14px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 999px;
  background: #fff;
  color: #2a1b14;
  font-size: .95rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .15);
  transition: .2s ease;
}

.nav-btn:hover {
  filter: brightness(.98);
  transform: translateY(-1px);
}

.nav-btn.active-link {
  border-color: transparent;
  background: #3f271d;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
}

.content-container {
  max-width: 1200px;
  min-height: 70vh;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

.categories-section {
  margin-bottom: 1.5rem;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.category-card {
  padding: .6rem .9rem;
  border: 1px solid #e7e7e7;
  border-radius: 999px;
  background: #fff;
  color: #444;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  user-select: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .04);
  transition: .2s ease;
}

.category-card:hover {
  border-color: #d8d8d8;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .08);
  transform: translateY(-1px);
}

.category-card.selected {
  border-color: transparent;
  background: #64412f;
  color: #fff;
  box-shadow: 0 8px 20px rgba(100, 65, 47, .35);
}

.furniture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.furniture-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.furniture-card:hover {
  border-color: #e0e0e0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
  transform: translateY(-4px);
}

.product-image-link {
  text-decoration: none;
}

.furniture-card img,
.furniture-card .image-placeholder {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: #f3f3f3;
}

.image-placeholder {
  display: grid;
  place-items: center;
  color: #777;
  font-weight: 800;
}

.furniture-card h3 {
  margin: .8rem .9rem .4rem;
  color: #222;
  font-size: 1.05rem;
  font-weight: 800;
}

.price {
  margin: 0 .9rem .25rem;
  color: #555;
  font-size: .95rem;
}

.price-value {
  color: #1c1c1c;
  font-weight: 800;
}

.received {
  margin: 0 .9rem .75rem;
  color: #888;
  font-size: .8rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: auto .9rem .9rem;
}

.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .55rem .9rem;
  border: none;
  border-radius: 999px;
  background: #64412f;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(100, 65, 47, .25);
  transition: .2s ease;
}

.button:hover,
.btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.button.ghost,
.btn.ghost {
  border: 1px solid #e2e2e2;
  background: transparent;
  color: #222;
  box-shadow: none;
}

.no-items-message {
  margin-top: 2rem;
  padding: 1.2rem;
  border: 1px dashed #e6e6e6;
  border-radius: 8px;
  background: #fff;
  color: #666;
  font-size: 1.05rem;
  text-align: center;
}

.container {
  width: min(100% - 32px, 1100px);
  margin: 0 auto;
}

.details-page {
  padding: 20px 0 40px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 0;
  border: none;
  background: transparent;
  color: #666;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}

.back-link:hover {
  color: #111;
  transform: translateX(-2px);
}

.card {
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.details {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  padding: 12px;
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 6px;
}

.photo-display {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f4f4f4;
}

.main-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
}

div.main-photo {
  display: grid;
  place-items: center;
}

.nav-button {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  cursor: pointer;
  font-size: 26px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
  transform: translateY(-50%);
  transition: .2s ease;
}

.nav-button:hover {
  transform: translateY(-50%) scale(1.06);
}

.nav-button:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.nav-button.left {
  left: 10px;
}

.nav-button.right {
  right: 10px;
}

.thumbnails-container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px;
}

.thumb {
  flex: 0 0 auto;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: none;
  cursor: pointer;
  transition: .2s ease;
}

.thumb img {
  width: 74px;
  height: 74px;
  border-radius: 6px;
  object-fit: cover;
  background: #f3f3f3;
}

.thumb.selected {
  border-color: #64412f;
  box-shadow: 0 6px 16px rgba(100, 65, 47, .35);
  transform: translateY(-2px);
}

.info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px 12px;
}

.product-title {
  margin: 0;
  color: #1f1f1f;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.1;
}

.price-box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #efe7e1;
  border-radius: 8px;
  background: #f8f6f4;
}

.price-box.consult {
  border-color: #f1e1d7;
  background: #fff9f5;
}

.price-box .price {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.6rem;
  font-weight: 900;
}

.price-note {
  color: #666;
  font-size: .9rem;
  font-weight: 700;
}

.meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: .98rem;
}

.label {
  color: #777;
  font-weight: 700;
}

.value {
  color: #222;
  font-weight: 800;
}

.dims h3,
.desc h3 {
  margin: 0 0 6px;
  color: #222;
  font-size: 1.1rem;
}

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

.dim {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
}

.desc p {
  margin: 0;
  color: #555;
  line-height: 1.5;
}

.details .actions {
  margin: auto 0 0;
}

.whatsapp-button,
.btn.whatsapp {
  background: #25d366;
  box-shadow: 0 8px 18px rgba(37, 211, 102, .25);
}

.whatsapp-logo {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.contact-hero {
  margin-bottom: 1rem;
  padding: 1.2rem 1.3rem;
}

.contact-hero h2 {
  margin: 0 0 .3rem;
  font-size: 1.6rem;
}

.contact-hero p {
  margin: 0 0 .8rem;
  color: #666;
}

.hero-actions,
.popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(34, 20, 13, .55);
}

.popup-card {
  position: relative;
  width: min(100%, 560px);
  padding: 1.3rem;
  border: 1px solid #eadfce;
  background: #fcfaf6;
}

.popup-step {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.close-button {
  position: absolute;
  top: .8rem;
  right: .8rem;
  width: 2.2rem;
  height: 2.2rem;
  border: none;
  border-radius: 999px;
  background: rgba(93, 58, 41, .08);
  color: #5d3a29;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.popup-step h3 {
  margin: .2rem 0 0;
  color: #2f2119;
  font-size: 1.35rem;
}

.popup-step p {
  margin: 0;
}

.eyebrow {
  display: inline-block;
  width: fit-content;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: #5d3a29;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.intent-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.intent-card {
  padding: 1rem;
  border: 1px solid #dbc9b5;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: .2s ease;
}

.intent-card:hover {
  border-color: #5d3a29;
  box-shadow: 0 10px 24px rgba(93, 58, 41, .12);
  transform: translateY(-1px);
}

.intent-title {
  display: block;
  margin-bottom: .35rem;
  color: #2f2119;
  font-size: 1.05rem;
  font-weight: 800;
}

.intent-text {
  color: #6a625d;
  line-height: 1.45;
}

.field-label {
  color: #2f2119;
  font-weight: 700;
}

select {
  width: 100%;
  max-width: 280px;
  padding: .75rem .9rem;
  border: 1px solid #cbb9a7;
  border-radius: 8px;
  background: #fff;
}

.note {
  padding: .8rem .95rem;
  border-radius: 8px;
  line-height: 1.5;
}

.note-highlight {
  border: 1px solid #e2cc9c;
  background: #f5ead6;
  color: #5b4217;
}

.note-soft {
  border: 1px solid #dde4ea;
  background: #f3f5f7;
  color: #4e5b67;
}

.btn.disabled {
  opacity: .55;
  pointer-events: none;
}

.contact-container {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.contact-info {
  flex: 1;
  padding: 1rem 1.1rem;
  background: #f7f3ed;
}

.map-section {
  flex: 2;
  min-height: 420px;
  overflow: hidden;
}

.footer-container {
  margin-top: 2rem;
  padding: 2rem 1rem;
  background: #6a4634;
  color: #fff;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3,
.footer-section h4 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 800;
}

.footer-section p {
  margin: .5rem 0;
  font-size: .95rem;
  line-height: 1.4;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  padding: 6px;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
  transition: .2s ease;
}

.social-icons a:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.social-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-bottom {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .4);
  font-size: .85rem;
  text-align: center;
}

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

  .main-photo {
    height: 360px;
  }
}

@media (max-width: 900px) {
  .furniture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    flex-direction: column;
  }

  .map-section {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 92px;
  }

  .menu-toggle {
    display: block;
  }

  .logo-image {
    width: 58px;
    height: 58px;
  }

  .logo-title h1 {
    max-width: 72vw;
  }

  .nav-actions {
    top: calc(100% + 8px);
    right: 12px;
    z-index: 20;
    display: none;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 8px;
    background: #6a4634;
    box-shadow: 0 12px 26px rgba(0, 0, 0, .25);
    transform: none;
  }

  .nav-actions.open {
    display: flex;
  }

  .nav-btn {
    width: 140px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

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

  .popup-card {
    padding: 1.1rem;
  }

  .popup-actions,
  .hero-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

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

  select {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .categories-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: .25rem;
    -webkit-overflow-scrolling: touch;
  }

  .category-card {
    white-space: nowrap;
  }
}

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

  .main-photo {
    height: 260px;
  }

  .thumb img {
    width: 60px;
    height: 60px;
  }

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

  .actions {
    flex-direction: column;
  }
}

.landing-page {
  --landing-primary: #6a4634;
  --landing-primary-dark: #3f271d;
  --landing-accent: #b7792d;
  --landing-bg: #f7f3ed;
  --landing-card: #fff;
  --landing-text: #2a1b14;
  --landing-muted: #705f55;
  --landing-border: #eadfce;
  background: var(--landing-bg);
  color: var(--landing-text);
  font-family: "Manrope", Arial, sans-serif;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 8%;
  border-bottom: 1px solid var(--landing-border);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
}

.landing-logo {
  color: var(--landing-primary-dark);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.landing-nav a {
  color: var(--landing-text);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.landing-nav .landing-nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--landing-primary);
  color: #fff;
}

.landing-hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 80px 8% 56px;
}

.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f3eadf;
  color: var(--landing-primary);
  font-size: 14px;
  font-weight: 800;
}

.landing-hero h1 {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--landing-primary-dark);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.landing-hero p {
  max-width: 620px;
  margin: 0;
  color: var(--landing-muted);
  font-size: 20px;
  line-height: 1.65;
}

.landing-copy-emphasis {
  color: #000;
  font-weight: 800;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 15px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #fff;
  color: var(--landing-primary-dark);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: .2s ease;
}

.landing-button:hover {
  filter: brightness(.98);
  transform: translateY(-1px);
}

.landing-button-primary {
  background: var(--landing-primary);
  color: #fff;
}

.landing-button-primary:hover {
  background: var(--landing-primary-dark);
}

.landing-button-light {
  border-color: var(--landing-border);
  background: #fff;
}

.landing-hero-panel {
  padding: 22px;
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(63, 39, 29, .16);
}

.landing-hero-image {
  height: 430px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(63, 39, 29, .12), rgba(63, 39, 29, .12)),
    url("https://images.unsplash.com/photo-1555041469-a586c61ea9bc?q=80&w=1200&auto=format&fit=crop");
  background-position: center;
  background-size: cover;
}

.landing-quick-card {
  position: relative;
  max-width: 330px;
  margin: -70px 0 0 28px;
  padding: 22px;
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .15);
}

.landing-quick-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--landing-primary-dark);
  font-size: 18px;
}

.landing-quick-card span {
  color: var(--landing-muted);
  font-size: 14px;
  line-height: 1.5;
}

.landing-section {
  padding: 56px 8%;
}

.landing-section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.landing-section-heading h2 {
  margin: 0 0 12px;
  color: var(--landing-primary-dark);
  font-size: 42px;
  letter-spacing: 0;
  line-height: 1.1;
}

.landing-section-heading p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 18px;
  line-height: 1.6;
}

.landing-categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.landing-category,
.landing-step {
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  background: var(--landing-card);
}

.landing-category {
  min-height: 180px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .05);
}

.landing-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #f3eadf;
  color: var(--landing-primary-dark);
  font-size: 15px;
  font-weight: 800;
}

.landing-category h3,
.landing-step h3 {
  margin: 0 0 8px;
  color: var(--landing-primary-dark);
  font-size: 20px;
}

.landing-category p,
.landing-step p {
  margin: 0;
  color: var(--landing-muted);
  font-size: 15px;
  line-height: 1.5;
}

.landing-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.landing-step {
  padding: 30px;
}

.landing-step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--landing-accent);
  color: #fff;
  font-weight: 800;
}

.landing-products-section {
  padding-bottom: 32px;
}

.landing-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.landing-page .category-card.selected {
  background: var(--landing-primary);
  box-shadow: 0 8px 20px rgba(106, 70, 52, .28);
}

.landing-page .furniture-card {
  border-color: var(--landing-border);
  box-shadow: 0 12px 30px rgba(63, 39, 29, .08);
}

.landing-page .button {
  background: var(--landing-primary);
  box-shadow: 0 6px 16px rgba(106, 70, 52, .24);
}

.landing-page .button.ghost {
  border-color: var(--landing-border);
  background: transparent;
  color: var(--landing-primary-dark);
  box-shadow: none;
}

.landing-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  margin: 56px 8%;
  padding: 54px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--landing-primary-dark), var(--landing-primary));
  color: #fff;
}

.landing-cta h2 {
  margin: 0 0 12px;
  font-size: 40px;
  letter-spacing: 0;
}

.landing-cta p {
  max-width: 680px;
  margin: 0;
  color: #f8efe7;
  font-size: 18px;
  line-height: 1.6;
}

.landing-footer {
  padding: 36px 8%;
  border-top: 1px solid var(--landing-border);
  color: var(--landing-muted);
  text-align: center;
}

.contact-page {
  --landing-primary: #6a4634;
  --landing-primary-dark: #3f271d;
  --landing-accent: #b7792d;
  --landing-bg: #f7f3ed;
  --landing-card: #fff;
  --landing-text: #2a1b14;
  --landing-muted: #705f55;
  --landing-border: #eadfce;
  background: var(--landing-bg);
  color: var(--landing-text);
  font-family: "Manrope", Arial, sans-serif;
}

.contact-content {
  width: min(100% - 16%, 1200px);
  min-height: 70vh;
  margin: 0 auto;
  padding: 56px 0 64px;
}

.contact-page .card {
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  background: var(--landing-card);
  box-shadow: 0 18px 44px rgba(63, 39, 29, .08);
}

.contact-page .contact-hero {
  margin-bottom: 24px;
  padding: 42px;
}

.contact-page .contact-hero h2 {
  margin: 0 0 12px;
  color: var(--landing-primary-dark);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.contact-page .contact-hero p {
  max-width: 760px;
  margin: 0 0 28px;
  color: var(--landing-muted);
  font-size: 18px;
  line-height: 1.6;
}

.contact-page .hero-actions,
.contact-page .popup-actions {
  gap: 14px;
}

.contact-page .btn {
  min-height: 48px;
  padding: 13px 22px;
  background: var(--landing-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(106, 70, 52, .24);
}

.contact-page .btn.whatsapp {
  background: var(--landing-primary);
  box-shadow: 0 8px 20px rgba(106, 70, 52, .24);
}

.contact-page .btn.ghost {
  border: 1px solid var(--landing-border);
  background: #fff;
  color: var(--landing-primary-dark);
  box-shadow: none;
}

.contact-page .btn.disabled {
  opacity: .55;
  pointer-events: none;
}

.contact-page .popup-overlay {
  background: rgba(63, 39, 29, .44);
  backdrop-filter: blur(8px);
}

.contact-page .popup-card {
  width: min(100% - 32px, 600px);
  padding: 32px;
  border-color: var(--landing-border);
}

.contact-page .close-button {
  border: 1px solid var(--landing-border);
  background: #fff;
  color: var(--landing-primary-dark);
}

.contact-page .eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f3eadf;
  color: var(--landing-primary);
  font-size: 13px;
  font-weight: 800;
}

.contact-page .popup-step h3 {
  margin: 0 0 10px;
  color: var(--landing-primary-dark);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
}

.contact-page .popup-step p {
  color: var(--landing-muted);
  line-height: 1.6;
}

.contact-page .intent-options {
  gap: 16px;
}

.contact-page .intent-card {
  padding: 20px;
  border-color: var(--landing-border);
  background: #fff;
  box-shadow: 0 10px 28px rgba(63, 39, 29, .06);
}

.contact-page .intent-card:hover {
  border-color: var(--landing-primary);
  box-shadow: 0 16px 34px rgba(106, 70, 52, .16);
}

.contact-page .intent-title {
  color: var(--landing-primary-dark);
  font-weight: 800;
}

.contact-page .intent-text {
  color: var(--landing-muted);
}

.contact-page .field-label {
  display: block;
  margin: 20px 0 8px;
  color: var(--landing-primary-dark);
  font-weight: 800;
}

.contact-page select {
  max-width: 360px;
  border-color: var(--landing-border);
  border-radius: 8px;
  background: #fff;
  color: var(--landing-text);
}

.contact-page select:focus {
  outline: 3px solid rgba(106, 70, 52, .18);
  border-color: var(--landing-primary);
}

.contact-page .note {
  margin-top: 16px;
  border-radius: 8px;
}

.contact-page .note-highlight {
  border-color: #ead7b4;
  background: #fff7e8;
  color: #5d3b0e;
}

.contact-page .note-soft {
  border-color: var(--landing-border);
  background: #f7f3ed;
  color: var(--landing-primary-dark);
}

.contact-page .contact-container {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: 24px;
}

.contact-page .contact-info {
  padding: 32px;
  background: #fff;
}

.contact-page .contact-info h3 {
  margin: 0 0 18px;
  color: var(--landing-primary-dark);
  font-size: 28px;
  font-weight: 800;
}

.contact-page .contact-info p {
  margin: 0 0 12px;
  color: var(--landing-muted);
  line-height: 1.55;
}

.contact-page .contact-info strong {
  color: var(--landing-primary-dark);
}

.contact-page .map-section {
  min-height: 430px;
  overflow: hidden;
}

.contact-page .map-section iframe {
  display: block;
}

.product-page {
  --landing-primary: #6a4634;
  --landing-primary-dark: #3f271d;
  --landing-accent: #b7792d;
  --landing-bg: #f7f3ed;
  --landing-card: #fff;
  --landing-text: #2a1b14;
  --landing-muted: #705f55;
  --landing-border: #eadfce;
  background: var(--landing-bg);
  color: var(--landing-text);
  font-family: "Manrope", Arial, sans-serif;
}

.product-page .details-page {
  min-height: 70vh;
  padding: 56px 8% 72px;
}

.product-page .container {
  width: min(100%, 1200px);
}

.product-page .back-link {
  margin-bottom: 18px;
  color: var(--landing-primary-dark);
  font-weight: 800;
}

.product-page .back-link:hover {
  color: var(--landing-primary);
}

.product-page .card {
  border: 1px solid var(--landing-border);
  border-radius: 8px;
  background: var(--landing-card);
  box-shadow: 0 24px 60px rgba(63, 39, 29, .1);
}

.product-page .details {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 32px;
  padding: 28px;
}

.product-page .gallery {
  gap: 14px;
  padding: 0;
}

.product-page .photo-display {
  border: 1px solid var(--landing-border);
  background: #f3eadf;
}

.product-page .main-photo {
  height: min(58vw, 560px);
  min-height: 430px;
}

.product-page .nav-button {
  width: 48px;
  height: 48px;
  border-color: rgba(234, 223, 206, .9);
  background: rgba(255, 255, 255, .86);
  color: var(--landing-primary-dark);
  box-shadow: 0 10px 24px rgba(63, 39, 29, .18);
}

.product-page .nav-button:hover {
  background: #fff;
}

.product-page .thumb {
  border-color: transparent;
}

.product-page .thumb img {
  width: 78px;
  height: 78px;
  border: 1px solid var(--landing-border);
}

.product-page .thumb.selected {
  border-color: var(--landing-primary);
  box-shadow: 0 8px 18px rgba(106, 70, 52, .25);
}

.product-page .info {
  gap: 18px;
  padding: 6px 0 6px;
}

.product-page .product-title {
  color: var(--landing-primary-dark);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

.product-page .price-box {
  align-items: center;
  padding: 16px 18px;
  border-color: var(--landing-border);
  background: #fffaf5;
}

.product-page .price-box.consult {
  border-color: var(--landing-border);
  background: #fffaf5;
}

.product-page .price-box .price {
  color: #000;
  font-size: 1.75rem;
  font-weight: 800;
}

.product-page .price-note {
  color: var(--landing-muted);
  font-size: .95rem;
  font-weight: 800;
}

.product-page .meta {
  gap: 10px;
  padding-top: 0;
}

.product-page .meta-row,
.product-page .dim {
  border-bottom: 1px solid var(--landing-border);
}

.product-page .meta-row {
  padding-bottom: 10px;
  font-size: 1rem;
}

.product-page .label {
  color: var(--landing-muted);
  font-weight: 800;
}

.product-page .value {
  color: var(--landing-primary-dark);
  font-weight: 800;
  text-align: right;
}

.product-page .dims h3,
.product-page .desc h3 {
  margin-bottom: 10px;
  color: var(--landing-primary-dark);
  font-size: 1.2rem;
  font-weight: 800;
}

.product-page .dims-grid {
  gap: 10px;
}

.product-page .dim {
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--landing-border);
  background: #fffaf5;
}

.product-page .dim .value {
  text-align: left;
}

.product-page .desc p {
  color: var(--landing-text);
  font-size: 1rem;
  line-height: 1.7;
}

.product-page .details .actions {
  gap: 12px;
  margin-top: auto;
}

.product-page .btn {
  min-height: 48px;
  padding: 13px 22px;
  background: var(--landing-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(106, 70, 52, .24);
}

.product-page .btn.ghost {
  border: 1px solid var(--landing-border);
  background: #fff;
  color: var(--landing-primary-dark);
  box-shadow: none;
}

.product-page .whatsapp-button {
  background: var(--landing-primary);
  box-shadow: 0 8px 20px rgba(106, 70, 52, .24);
}

@media (max-width: 1050px) {
  .landing-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .landing-hero,
  .landing-cta {
    grid-template-columns: 1fr;
  }

  .landing-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-steps {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-container {
    grid-template-columns: 1fr;
  }

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

  .product-page .main-photo {
    height: 520px;
  }
}

@media (max-width: 650px) {
  .landing-header,
  .landing-hero,
  .landing-section,
  .landing-footer {
    padding-right: 5%;
    padding-left: 5%;
  }

  .landing-nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .landing-hero {
    padding-top: 48px;
  }

  .landing-hero h1 {
    font-size: 42px;
  }

  .landing-categories {
    grid-template-columns: 1fr;
  }

  .landing-hero-image {
    height: 300px;
  }

  .landing-quick-card {
    margin: 16px 0 0;
  }

  .landing-cta {
    margin: 32px 5%;
    padding: 32px;
  }

  .contact-content {
    width: min(100% - 10%, 1200px);
    padding: 32px 0 48px;
  }

  .contact-page .contact-hero,
  .contact-page .contact-info,
  .contact-page .popup-card {
    padding: 24px;
  }

  .contact-page .contact-hero h2 {
    font-size: 36px;
  }

  .contact-page .map-section {
    min-height: 320px;
  }

  .product-page .details-page {
    padding: 32px 5% 48px;
  }

  .product-page .details {
    gap: 22px;
    padding: 18px;
  }

  .product-page .main-photo {
    height: 320px;
    min-height: 0;
  }

  .product-page .product-title {
    font-size: 2rem;
  }

  .product-page .price-box,
  .product-page .meta-row,
  .product-page .details .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-page .value {
    text-align: left;
  }
}
