:root {
  --bg: #fbf6f1;
  --surface: rgba(255, 250, 245, 0.8);
  --surface-strong: #fffaf6;
  --line: rgba(76, 65, 60, 0.12);
  --text: #322a27;
  --muted: #72655f;
  --blush: #f1d8d3;
  --beige: #eadcca;
  --sage: #cfd8c8;
  --rose: #dbaea7;
  --accent: #1f5a4a;
  --accent-soft: rgba(31, 90, 74, 0.12);
  --shadow: 0 24px 60px rgba(80, 55, 38, 0.14);
  --radius: 28px;
  --content-width: min(1180px, calc(100vw - 48px));
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
footer[id] {
  scroll-margin-top: 124px;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(219, 174, 167, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(207, 216, 200, 0.22), transparent 26%),
    linear-gradient(180deg, #fffdfb 0%, var(--bg) 28%, #f7efe8 100%);
}

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

a,
button,
input {
  font: inherit;
}

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

button {
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto auto 14% -6%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(207, 216, 200, 0.22);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.page-shell::after {
  inset: 8% -4% auto auto;
  background: rgba(219, 174, 167, 0.22);
}

.site-header,
.section,
.site-footer,
.mobile-nav,
.search-dialog {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  width: var(--content-width);
  margin: 20px auto 0;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 246, 0.85);
  border-color: rgba(76, 65, 60, 0.09);
  box-shadow: 0 12px 36px rgba(80, 55, 38, 0.08);
  backdrop-filter: blur(20px);
}

.brand-mark {
  font-family: var(--serif);
  font-size: clamp(2rem, 2.6vw, 2.7rem);
  letter-spacing: 0.18em;
  color: #2d2522;
}

.main-nav,
.header-actions,
.language-switcher,
.hero-actions,
.section-heading,
.intro-band,
.testimonial-controls,
.payment-row,
.search-suggestions {
  display: flex;
  align-items: center;
}

.main-nav {
  gap: 24px;
  font-size: 0.95rem;
  color: var(--muted);
}

.main-nav a,
.footer-column a {
  position: relative;
}

.main-nav a::after,
.footer-column a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.footer-column a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  gap: 12px;
}

.text-icon-button,
.mobile-menu-button,
.control-button,
.language-switcher button {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(76, 65, 60, 0.1);
  background: rgba(255, 250, 246, 0.72);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.text-icon-button:hover,
.mobile-menu-button:hover,
.control-button:hover,
.language-switcher button:hover,
.search-suggestions button:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 90, 74, 0.18);
  background: rgba(255, 255, 255, 0.96);
}

.cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
}

.language-switcher {
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.86);
  border: 1px solid rgba(76, 65, 60, 0.08);
}

.language-switcher button {
  border: 0;
  padding: 8px 11px;
  background: transparent;
  color: var(--muted);
}

.language-switcher button.is-active {
  background: rgba(31, 90, 74, 0.12);
  color: var(--accent);
}

.mobile-menu-button,
.mobile-nav {
  display: none;
}

.mobile-nav:not([hidden]) {
  display: block;
}

.mobile-nav {
  width: var(--content-width);
  margin: 12px auto 0;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 250, 246, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(76, 65, 60, 0.08);
}

.mobile-nav a {
  display: block;
  padding: 10px 4px;
  color: var(--muted);
}

.hero-section {
  position: relative;
  width: min(1320px, calc(100vw - 32px));
  min-height: 88vh;
  margin: 20px auto 0;
  border-radius: 40px;
  overflow: clip;
  box-shadow: var(--shadow);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(110deg, rgba(24, 20, 19, 0.76) 12%, rgba(24, 20, 19, 0.38) 45%, rgba(24, 20, 19, 0.16) 72%),
    linear-gradient(180deg, rgba(255, 250, 246, 0.03), rgba(255, 250, 246, 0.16));
}

.hero-content,
.hero-note,
.scroll-indicator {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
  padding: 12vh 0 0 8vw;
  color: #fff8f5;
}

.eyebrow,
.section-label,
.gallery-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(255, 248, 245, 0.78);
}

.section-label,
.gallery-tag {
  color: var(--accent);
  background: rgba(31, 90, 74, 0.09);
  padding: 8px 12px;
  border-radius: 999px;
}

.hero-title,
.intro-band h2,
.section-heading h2,
.about-copy h2,
.newsletter-content h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.96;
}

.hero-title {
  font-size: clamp(4rem, 9vw, 7.5rem);
  letter-spacing: 0.02em;
}

.hero-copy,
.intro-band p,
.about-copy p,
.newsletter-content p,
.footer-copy,
.testimonial-quote,
.search-panel input,
.newsletter-feedback {
  line-height: 1.75;
  font-size: 1rem;
}

.hero-copy {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 248, 245, 0.88);
}

.hero-actions {
  gap: 14px;
  margin-top: 28px;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.primary-button {
  background: var(--accent);
  color: #fdf9f4;
  box-shadow: 0 18px 30px rgba(16, 49, 40, 0.24);
}

.ghost-button {
  background: rgba(255, 250, 246, 0.14);
  color: #fff7f4;
  border: 1px solid rgba(255, 250, 246, 0.34);
  backdrop-filter: blur(8px);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.hero-note {
  position: absolute;
  right: 4vw;
  bottom: 7.5rem;
  max-width: 280px;
  padding: 20px 22px;
  border-radius: 24px;
  color: #fffaf7;
  background: rgba(27, 23, 22, 0.28);
  border: 1px solid rgba(255, 250, 246, 0.28);
  backdrop-filter: blur(14px);
}

.hero-note span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 248, 245, 0.76);
}

.hero-note strong {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
}

.scroll-indicator {
  position: absolute;
  left: 8vw;
  bottom: 2.4rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 248, 245, 0.84);
  font-size: 0.92rem;
}

.scroll-indicator span {
  display: inline-block;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 250, 246, 0.6);
  border-radius: 999px;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 999px;
  background: #fffaf7;
  animation: drift 1.6s infinite ease-in-out;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(12px);
    opacity: 1;
  }
}

.section,
.site-footer {
  width: var(--content-width);
  margin: 0 auto;
}

.section {
  padding: 112px 0 0;
}

.intro-band {
  justify-content: space-between;
  gap: 36px;
  padding: 72px 36px 0;
}

.intro-band > * {
  flex: 1;
}

.intro-band h2,
.section-heading h2,
.about-copy h2,
.newsletter-content h2 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  color: #2f2724;
}

.intro-band p:last-child,
.about-copy p,
.newsletter-content p,
.footer-copy {
  color: var(--muted);
}

.section-heading {
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.text-link {
  color: var(--muted);
}

.filter-feedback {
  margin: 0 0 24px;
  color: var(--muted);
}

.product-grid,
.category-grid,
.gallery-strip,
.site-footer {
  display: grid;
  gap: 24px;
}

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

.product-card,
.testimonial-card,
.newsletter-section,
.search-panel {
  border-radius: var(--radius);
  background: rgba(255, 250, 246, 0.72);
  border: 1px solid rgba(76, 65, 60, 0.08);
  box-shadow: 0 18px 46px rgba(80, 55, 38, 0.08);
  backdrop-filter: blur(20px);
}

.product-card {
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover,
.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(80, 55, 38, 0.13);
}

.product-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.product-card-media img,
.category-tile img,
.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 460ms ease;
}

.product-card:hover .product-card-media img,
.category-tile:hover img,
.gallery-item:hover img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.9);
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-body {
  padding: 18px 18px 20px;
}

.product-card-body h3,
.category-title,
.footer-title,
.testimonial-meta strong {
  margin: 0;
  font-size: 1.05rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.price-row span {
  color: var(--muted);
}

.mini-button,
.search-suggestions button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(31, 90, 74, 0.09);
  color: var(--accent);
  border: 1px solid rgba(31, 90, 74, 0.12);
}

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

.category-tile {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(24, 20, 19, 0.55));
}

.category-title {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: #fffaf7;
  font-family: var(--serif);
  font-size: 2rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 32px;
  align-items: center;
}

.about-copy {
  padding-right: 36px;
}

.about-copy p {
  margin-top: 18px;
}

.about-media {
  padding: 18px;
  border-radius: 36px;
  background: rgba(255, 250, 246, 0.6);
  border: 1px solid rgba(76, 65, 60, 0.08);
}

.about-media img {
  border-radius: 26px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 16px 32px rgba(80, 55, 38, 0.12);
}

.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255, 250, 246, 0.82);
  color: var(--text);
  font-size: 0.86rem;
}

.testimonial-card {
  padding: 40px;
}

.testimonial-quote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.16;
  color: #2f2724;
}

.testimonial-meta {
  margin-top: 18px;
  color: var(--muted);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(31, 90, 74, 0.18);
}

.testimonial-dots button.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 24px;
  padding: 40px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.newsletter-form input,
.search-panel input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(76, 65, 60, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
}

.newsletter-form input:focus,
.search-panel input:focus {
  outline: 2px solid rgba(31, 90, 74, 0.18);
  outline-offset: 2px;
}

.newsletter-feedback {
  grid-column: 1 / -1;
  margin: 0;
  min-height: 1.75rem;
  color: var(--accent);
}

.site-footer {
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  padding: 88px 0 40px;
}

.footer-column {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-title {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.payment-row {
  flex-wrap: wrap;
  gap: 10px;
}

.payment-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.86);
  border: 1px solid rgba(76, 65, 60, 0.08);
}

.search-dialog {
  width: min(560px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  background: transparent;
}

.search-dialog::backdrop,
.gallery-dialog::backdrop {
  background: rgba(22, 19, 18, 0.28);
  backdrop-filter: blur(6px);
}

.search-panel {
  padding: 26px;
}

.gallery-dialog {
  width: min(760px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  background: transparent;
}

.gallery-panel {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 32px;
  background: rgba(255, 250, 246, 0.96);
  box-shadow: var(--shadow);
}

.gallery-panel img {
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-panel p {
  margin: 0;
  color: var(--muted);
}

.gallery-close {
  justify-self: end;
}

.search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.search-suggestions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

html[dir="rtl"] .site-header,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .intro-band,
html[dir="rtl"] .testimonial-controls,
html[dir="rtl"] .newsletter-form,
html[dir="rtl"] .payment-row {
  direction: rtl;
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .about-copy,
html[dir="rtl"] .newsletter-content,
html[dir="rtl"] .site-footer,
html[dir="rtl"] .mobile-nav,
html[dir="rtl"] .search-panel,
html[dir="rtl"] .gallery-panel {
  text-align: right;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

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

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

  .about-section,
  .newsletter-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --content-width: min(100vw - 24px, 100%);
  }

  .site-header {
    margin-top: 12px;
    padding: 14px 16px;
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .language-switcher {
    order: 3;
  }

  .hero-section {
    min-height: 92vh;
    border-radius: 28px;
  }

  .hero-content {
    padding: 12vh 20px 0;
  }

  .hero-title {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-actions,
  .newsletter-form,
  .intro-band,
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-note {
    left: 20px;
    right: 20px;
    bottom: 6.8rem;
    max-width: none;
  }

  .scroll-indicator {
    left: 20px;
  }

  .section {
    padding-top: 88px;
  }

  .intro-band {
    padding: 56px 8px 0;
  }

  .product-grid,
  .category-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .category-tile {
    min-height: 320px;
  }

  .testimonial-card,
  .newsletter-section,
  .search-panel {
    padding: 24px;
  }
}
