:root {
  --bg: #f3efe7;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-solid: #ffffff;
  --text: #3e2d1f;
  --text-soft: #6f5a49;
  --accent: #d4aa70;
  --accent-dark: #b88b4f;
  --border: #e8dccb;
  --shadow: 0 24px 60px rgba(91, 63, 38, 0.12);
  --shadow-soft: 0 14px 30px rgba(91, 63, 38, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1260px, calc(100% - 2.75rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  background:
    radial-gradient(circle at top left, rgba(212, 170, 112, 0.18), transparent 28%),
    linear-gradient(180deg, #f6f0e7 0%, #f3efe7 100%);
  color: var(--text);
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 4.75rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.1));
}

.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--accent-dark);
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.9rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(2.15rem, 3.5vw, 3.35rem);
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
}

p {
  color: var(--text-soft);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #e2c294);
  color: #24170c;
  font-weight: 700;
}

.button-secondary {
  background: var(--surface-solid);
  border-color: var(--border);
  color: var(--text);
  font-weight: 700;
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.glass-card {
  background: var(--surface);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 0.8rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.is-sticky {
  background: rgba(243, 239, 231, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(91, 63, 38, 0.08);
  padding: 0.75rem 0;
}

.site-header.is-transparent:not(.is-sticky) {
  position: fixed;
  inset: 0 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.3rem;
  background: linear-gradient(135deg, #f2d2a0 0%, #c7975b 100%);
  box-shadow: 0 8px 18px rgba(212, 170, 112, 0.35);
}

.brand-logo-image {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1;
}

.brand-copy small {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.68rem;
  color: var(--text-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav > a,
.nav-dropdown-toggle {
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font-weight: 600;
}

.nav-cta {
  margin-left: 0.5rem;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  min-width: 220px;
  padding: 0.85rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 16px;
}

.nav-dropdown-menu a:hover {
  background: #f8f3eb;
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  border: 0;
  background: none;
  padding: 0;
}

.mobile-nav-toggle span {
  width: 1.7rem;
  height: 2px;
  background: currentColor;
}

.flash {
  padding-top: 5.5rem;
}

.flash p {
  margin: 0;
  padding: 1rem 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
}

.hero {
  min-height: 90vh;
  display: grid;
  align-items: center;
  position: relative;
  background:
    linear-gradient(90deg, rgba(34, 24, 14, 0.74), rgba(34, 24, 14, 0.24)),
    var(--hero-image) center/cover no-repeat;
  color: #fff8ef;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 14rem;
  background: linear-gradient(180deg, rgba(243, 239, 231, 0), rgba(243, 239, 231, 1));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: end;
}

.hero-copy {
  max-width: 720px;
  padding: 7rem 0 5rem;
}

.hero-copy p,
.hero-card p,
.hero-copy .eyebrow {
  color: rgba(255, 248, 239, 0.9);
}

.hero-subtitle {
  max-width: 44rem;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-card {
  justify-self: end;
  max-width: 300px;
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  margin-bottom: 5rem;
}

.feature-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

.feature-list--stacked {
  margin-top: 1.5rem;
}

.section-copy {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 2rem;
}

.section-copy--left {
  text-align: left;
  margin-left: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.product-grid--wide,
.product-grid--shop {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(91, 63, 38, 0.18);
}

.wishlist-button,
.product-badge {
  position: absolute;
  top: 1rem;
  z-index: 2;
}

.wishlist-button {
  right: 1rem;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.product-badge {
  left: 1rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(34, 24, 14, 0.72);
  color: #fff;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.product-media {
  aspect-ratio: 1 / 0.92;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.08);
}

.product-content {
  padding: 1rem;
}

.product-category {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-dark);
}

.product-content h3 {
  font-size: 1.55rem;
}

.product-content h3 a:hover {
  color: var(--accent-dark);
}

.product-description {
  min-height: 3.4rem;
  margin: 0.65rem 0 0.85rem;
  font-size: 0.9rem;
}

.product-meta,
.product-footer,
.two-column-fields,
.shop-toolbar,
.contact-layout,
.form-layout,
.product-layout,
.split-layout,
.footer-bottom {
  display: flex;
  gap: 1rem;
}

.product-meta {
  align-items: center;
  margin-bottom: 0.8rem;
}

.stars {
  display: inline-flex;
  gap: 0.15rem;
  color: #dbcab7;
}

.star.is-active {
  color: var(--accent);
}

.card-note,
.luxury-form label,
.detail-order-form label {
  display: grid;
  gap: 0.45rem;
}

.card-note span,
.luxury-form span,
.detail-order-form span {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 600;
}

.card-note textarea,
.luxury-form input,
.luxury-form textarea,
.luxury-form select,
.detail-order-form input,
.detail-order-form textarea,
.filter-form input,
.filter-form select {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 0.85rem 0.95rem;
  color: var(--text);
}

.product-custom-note {
  min-height: 64px;
  resize: vertical;
}

.product-footer {
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 0.85rem;
}

.price-stack {
  display: grid;
}

.price-stack strong,
.product-summary__price {
  font-size: 1.15rem;
  color: var(--text);
}

.price-stack span {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.category-grid,
.testimonial-grid,
.gallery-grid,
.contact-cards {
  display: grid;
  gap: 1.25rem;
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card {
  padding: 1.65rem;
  border-radius: 28px;
  display: grid;
  gap: 0.7rem;
  min-height: 160px;
}

.category-card span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.95rem;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card,
.testimonial-card,
.contact-card,
.shop-toolbar,
.empty-state,
.luxury-form,
.detail-order-form,
.shop-sidebar,
.product-gallery__main,
.mission-card {
  border-radius: var(--radius-lg);
}

.gallery-card {
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  padding: 2rem;
}

.testimonial-card strong {
  display: block;
  font-size: 1.2rem;
  margin-top: 1.2rem;
}

.testimonial-card span {
  color: var(--accent-dark);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.split-layout,
.product-layout,
.contact-layout,
.form-layout {
  align-items: center;
}

.split-layout > *,
.form-layout > *,
.contact-layout > * {
  flex: 1;
}

.split-layout--reverse {
  flex-direction: row-reverse;
}

.media-panel img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.media-panel--accent {
  min-height: 100%;
}

.mission-card {
  padding: 2.4rem;
  height: 100%;
}

.page-hero {
  padding: 10rem 0 3.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(243, 239, 231, 0)),
    radial-gradient(circle at top right, rgba(212, 170, 112, 0.22), transparent 35%);
}

.page-hero--compact .page-hero__content {
  max-width: 760px;
}

.shop-section {
  padding-top: 2rem;
}

.shop-layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.shop-sidebar,
.shop-toolbar,
.empty-state,
.contact-card,
.luxury-form,
.detail-order-form {
  padding: 1.45rem;
}

.filter-form,
.filter-group,
.filter-list,
.luxury-form,
.detail-order-form {
  display: grid;
  gap: 1rem;
}

.choice-pill {
  position: relative;
}

.choice-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.choice-pill span {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.78);
}

.choice-pill input:checked + span {
  background: rgba(212, 170, 112, 0.18);
  border-color: rgba(212, 170, 112, 0.48);
}

.range-wrap {
  display: grid;
  gap: 0.8rem;
}

.toggle-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toggle-row input {
  width: 1.2rem;
  height: 1.2rem;
}

.product-layout {
  align-items: start;
}

.product-gallery,
.product-summary {
  flex: 1;
}

.product-gallery {
  max-width: 54%;
}

.product-gallery__main {
  overflow: hidden;
  padding: 1rem;
}

.product-gallery__main img {
  aspect-ratio: 1 / 1.05;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.product-gallery__thumbs {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.thumb-button {
  width: 80px;
  height: 80px;
  padding: 0.35rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.thumb-button.is-active {
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(212, 170, 112, 0.24);
}

.thumb-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.product-summary__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1rem 0;
}

.product-summary__description {
  max-width: 42rem;
}

.contact-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  min-height: 180px;
}

.site-footer {
  padding: 3.4rem 0 1.5rem;
  background: #efe7db;
  border-top: 1px solid rgba(62, 45, 31, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 1.5rem;
}

.footer-grid h4 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(62, 45, 31, 0.08);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 30;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: #1fa653;
  color: #fff;
  box-shadow: 0 16px 30px rgba(31, 166, 83, 0.28);
  font-weight: 700;
}

.input-note {
  color: var(--text-soft);
  font-size: 0.78rem;
}

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 24, 14, 0.5);
}

.order-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(540px, calc(100% - 1.5rem));
  margin: 4vh auto;
  padding: 1.6rem;
  border-radius: 30px;
}

.order-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.order-modal__form {
  display: grid;
  gap: 0.9rem;
}

.form-errors {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(174, 64, 52, 0.08);
  color: #8a342d;
  border: 1px solid rgba(174, 64, 52, 0.14);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .product-grid,
  .product-grid--wide,
  .product-grid--shop,
  .category-grid,
  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .shop-layout,
  .footer-grid,
  .contact-layout,
  .form-layout,
  .split-layout,
  .product-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .product-gallery {
    max-width: 100%;
  }

  .hero-card {
    justify-self: start;
    margin-bottom: 3rem;
  }
}

@media (max-width: 820px) {
  .mobile-nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 5rem 1rem auto;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-cta {
    margin-left: 0;
  }

  .hero-copy {
    padding-top: 9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 4.2rem 0;
  }

  .container {
    width: min(100% - 1.25rem, 100%);
  }

  .product-grid,
  .product-grid--wide,
  .product-grid--shop,
  .category-grid,
  .gallery-grid,
  .testimonial-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .two-column-fields,
  .product-footer,
  .footer-bottom {
    flex-direction: column;
  }

  .thumb-button {
    width: 72px;
    height: 72px;
  }
}
