:root {
  --plum-950: #241321;
  --plum-800: #45233f;
  --plum-700: #5d3156;
  --plum-100: #efe5ed;
  --olive-700: #53652f;
  --olive-100: #eef0df;
  --cream: #fbf8f1;
  --sand: #e7ddca;
  --ink: #282422;
  --muted: #6d6560;
  --white: #ffffff;
  --success: #247442;
  --error: #a32f2f;
  --shadow: 0 18px 50px rgba(55, 33, 49, 0.09);
  --radius: 1rem;
  --container: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #ad7ba4;
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--plum-950);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.6rem, 11vw, 5.2rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 7vw, 3.3rem);
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.3rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 4.5rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--plum-950);
  box-shadow: var(--shadow);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(69, 35, 63, 0.12);
  background: rgba(251, 248, 241, 0.97);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: 4.75rem;
  gap: 0.5rem 1rem;
  padding-block: 0.65rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--plum-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.1;
}

.brand img {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--sand);
  border-radius: 50%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  justify-content: center;
  width: auto;
  gap: 1.1rem;
  color: #514a46;
  font-size: 0.88rem;
  font-weight: 650;
}

.header-actions,
.checkout-header-actions {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 0.2rem;
  border: 1px solid #cbbec8;
  border-radius: 100vmax;
  background: var(--white);
  direction: ltr;
}

.language-switcher button {
  min-width: 2.7rem;
  min-height: 2rem;
  padding: 0.25rem 0.6rem;
  border: 0;
  border-radius: 100vmax;
  background: transparent;
  color: var(--plum-800);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switcher button:hover {
  background: var(--plum-100);
}

.language-switcher button.is-active {
  background: var(--plum-800);
  color: var(--white);
}

.main-nav a,
.back-link,
.site-footer a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
}

.main-nav a:hover,
.back-link:hover,
.site-footer a:hover {
  color: var(--plum-700);
  text-decoration-color: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 4.25rem 4.75rem;
  background:
    radial-gradient(circle at 90% 15%, rgba(108, 73, 100, 0.14), transparent 35%),
    linear-gradient(145deg, #fbf8f1 35%, #f0e7dd 100%);
}

.hero::after {
  position: absolute;
  right: -4rem;
  bottom: -9rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(83, 101, 47, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 44rem;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--olive-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 39rem;
  margin-bottom: 1.8rem;
  color: #554e49;
  font-size: clamp(1.05rem, 3vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.25rem;
  border: 2px solid var(--plum-800);
  border-radius: 0.7rem;
  background: var(--plum-800);
  color: var(--white);
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
}

.button:hover {
  border-color: var(--plum-950);
  background: var(--plum-950);
}

.text-link {
  color: var(--plum-800);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(69, 35, 63, 0.35);
  text-underline-offset: 0.3em;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  margin: 2.25rem 0 0;
  padding: 0;
  gap: 0.6rem 1.2rem;
  color: #5d5651;
  font-size: 0.9rem;
  list-style: none;
}

.trust-list li::before {
  margin-inline-end: 0.45rem;
  color: var(--olive-700);
  content: "✓";
  font-weight: 900;
}

.directional-arrow {
  display: inline-block;
}

.hero-visual {
  position: relative;
  display: none;
  place-items: center;
  min-height: 27rem;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(30rem, 100%);
  aspect-ratio: 1;
  border: 0.75rem solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 26px 80px rgba(36, 19, 33, 0.17);
  object-fit: cover;
}

.hero-ring {
  position: absolute;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(83, 101, 47, 0.4);
  border-radius: 50%;
  transform: translate(3.5rem, -1.8rem);
}

.section-heading,
.products-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  gap: 0.5rem 2rem;
}

.section-heading h2,
.products-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 31rem;
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading.compact {
  margin-bottom: 1.6rem;
}

.category-list {
  display: flex;
  overflow-x: auto;
  padding: 0.2rem 0.2rem 0.75rem;
  gap: 0.65rem;
  scrollbar-width: thin;
}

.category-button {
  min-height: 2.8rem;
  flex: 0 0 auto;
  padding: 0.55rem 1rem;
  border: 1px solid #cfc2cc;
  border-radius: 100vmax;
  background: transparent;
  color: var(--plum-800);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 750;
}

.category-button:hover,
.category-button.is-active {
  border-color: var(--plum-800);
  background: var(--plum-800);
  color: var(--white);
}

.products-section {
  background: #f4eee5;
}

.product-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.product-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(69, 35, 63, 0.11);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 32px rgba(55, 33, 49, 0.055);
}

.product-image-wrap {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8dfd5;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.018);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem;
}

.product-category {
  margin-bottom: 0.4rem;
  color: var(--olive-700);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.42rem;
}

.product-description {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.93rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 0.8rem;
}

.product-price {
  margin: 0;
  color: var(--plum-800);
  font-size: 1.18rem;
  font-weight: 850;
  white-space: nowrap;
}

.order-button {
  min-height: 2.75rem;
  padding: 0.6rem 0.95rem;
  font-size: 0.88rem;
}

.notice,
.empty-state {
  padding: 1.5rem;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  background: var(--white);
}

.quality-section {
  background: var(--cream);
}

.quality-grid {
  display: grid;
  gap: 2.5rem;
}

.quality-grid > div:first-child > p:last-child {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.quality-cards {
  display: grid;
  gap: 1rem;
}

.quality-cards article {
  padding: 1.35rem;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  background: var(--white);
}

.quality-cards p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--olive-100);
  color: var(--olive-700);
  font-weight: 900;
}

.order-steps {
  border-block: 1px solid var(--sand);
  background: #f8f3ea;
}

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

.steps-list li {
  display: flex;
  padding: 1.3rem;
  border-radius: var(--radius);
  background: var(--white);
  gap: 1rem;
}

.steps-list > li > span {
  color: #927e8d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.steps-list h3 {
  margin-bottom: 0.25rem;
}

.steps-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  padding-block: 3.5rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  border-radius: 1.25rem;
  background: var(--plum-800);
  color: #f6edf4;
  gap: 1.5rem;
}

.contact-card h2 {
  color: var(--white);
}

.contact-card p:last-child {
  max-width: 42rem;
  margin-bottom: 0;
}

.eyebrow.light {
  color: #d8c2d3;
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--plum-800);
}

.button-light:hover {
  border-color: #f4ebe5;
  background: #f4ebe5;
  color: var(--plum-950);
}

.site-footer {
  padding-block: 2rem;
  border-top: 1px solid var(--sand);
  background: #f5efe6;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-inner p {
  margin-bottom: 0;
}

.brand-footer {
  margin-bottom: 0.35rem;
}

/* Checkout */
.checkout-page {
  min-height: 100vh;
  background: #f5efe6;
}

.back-link {
  color: var(--plum-800);
  font-size: 0.86rem;
  font-weight: 700;
}

.checkout-main {
  padding-block: 3.25rem 4.5rem;
}

.checkout-intro {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.checkout-intro h1 {
  margin-bottom: 0.7rem;
  font-size: clamp(2.25rem, 8vw, 4rem);
}

.checkout-intro > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.checkout-layout {
  display: grid;
  gap: 1.4rem;
}

.order-summary,
.checkout-form-card {
  padding: 1.35rem;
  border: 1px solid rgba(69, 35, 63, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.order-summary h2,
.checkout-form-card h2 {
  font-size: 1.85rem;
}

.summary-kicker {
  margin-bottom: 0.35rem;
  color: var(--olive-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.summary-product {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  align-items: center;
  padding-block: 1.1rem;
  border-block: 1px solid #eee6dc;
  gap: 1rem;
}

.summary-product img {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 0.7rem;
  background: #ede5dc;
  object-fit: cover;
}

.summary-product h3 {
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
}

.summary-unit-price {
  margin: 0;
  color: var(--plum-800);
  font-weight: 800;
}

.summary-quantity-field {
  margin-top: 0.9rem;
}

.summary-quantity-field > label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.price-summary {
  margin: 1rem 0;
}

.price-summary > div {
  display: flex;
  justify-content: space-between;
  padding-block: 0.42rem;
  gap: 1rem;
}

.price-summary dt {
  color: var(--muted);
}

.price-summary dd {
  margin: 0;
  font-weight: 750;
}

.price-summary .total-row {
  margin-top: 0.45rem;
  padding-top: 0.95rem;
  border-top: 1px solid #ded4c8;
  color: var(--plum-800);
  font-size: 1.12rem;
}

.price-summary .total-row dt {
  color: var(--plum-800);
  font-weight: 800;
}

.delivery-note {
  margin: 0;
  padding: 0.8rem;
  border-radius: 0.6rem;
  background: var(--olive-100);
  color: #4d5833;
  font-size: 0.82rem;
}

.summary-pickup {
  margin-bottom: 1rem;
  padding: 0.8rem;
  border: 1px solid #d9cdd6;
  border-radius: 0.6rem;
  background: #f6eff4;
}

.summary-pickup span,
.summary-pickup strong {
  display: block;
}

.summary-pickup span {
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.summary-pickup strong {
  color: var(--plum-800);
  font-size: 0.88rem;
}

.required-note {
  margin-top: -0.6rem;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.required-note span,
.field label > span:not(.optional),
.delivery-fieldset legend > span {
  color: var(--error);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field {
  min-width: 0;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 0.38rem;
  color: #3f3935;
  font-size: 0.88rem;
  font-weight: 750;
}

.field input:not([type="radio"]),
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.68rem 0.8rem;
  border: 1px solid #bdb2aa;
  border-radius: 0.55rem;
  background: #fffefa;
  color: var(--ink);
}

.field textarea {
  resize: vertical;
}

.field select:disabled {
  background: #f0ece6;
  color: var(--muted);
  cursor: not-allowed;
}

.field input:not([type="radio"]):focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--plum-700);
  outline: 3px solid rgba(122, 77, 112, 0.2);
  outline-offset: 0;
}

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: var(--error);
}

.optional,
.field-hint {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 450;
}

.field-hint {
  display: block;
  margin-top: 0.25rem;
}

.delivery-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.delivery-options {
  display: grid;
  gap: 0.7rem;
}

.radio-card {
  display: flex;
  align-items: flex-start;
  min-height: 4.4rem;
  padding: 0.85rem;
  border: 1px solid #c8bdb6;
  border-radius: 0.7rem;
  cursor: pointer;
  gap: 0.7rem;
}

.radio-card:has(input:checked) {
  border-color: var(--plum-700);
  background: #f6eff4;
  box-shadow: inset 0 0 0 1px var(--plum-700);
}

.radio-card input {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  margin-top: 0.15rem;
  accent-color: var(--plum-700);
}

.radio-card span,
.radio-card small {
  display: block;
}

.radio-card strong {
  color: var(--plum-950);
}

.radio-card small {
  color: var(--muted);
  font-size: 0.78rem;
}

.quantity-control {
  display: grid;
  grid-template-columns: 2.9rem 4.2rem 2.9rem;
  width: max-content;
  overflow: hidden;
  border: 1px solid #bdb2aa;
  border-radius: 0.55rem;
  background: #fffefa;
}

.quantity-control button {
  border: 0;
  background: #efe7df;
  color: var(--plum-950);
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 700;
}

.quantity-control button:hover {
  background: #e4d7df;
}

.quantity-control #quantity {
  min-height: 2.9rem;
  padding-inline: 0.25rem;
  border: 0;
  border-inline: 1px solid #c8bdb6;
  border-radius: 0;
  text-align: center;
  -moz-appearance: textfield;
}

#phone,
#quantity,
.product-price,
.summary-unit-price,
.price-summary dd {
  direction: ltr;
}

.quantity-control #quantity::-webkit-inner-spin-button,
.quantity-control #quantity::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.whatsapp-button {
  width: 100%;
  margin-top: 1.25rem;
  border-color: var(--success);
  background: var(--success);
}

.whatsapp-button:hover {
  border-color: #195c31;
  background: #195c31;
}

.privacy-note {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
  text-align: center;
}

.form-status {
  margin: 1rem 0 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid #dbaaaa;
  border-radius: 0.55rem;
  background: #fff1f1;
  color: #7b2424;
  font-size: 0.88rem;
  font-weight: 700;
}

.empty-state {
  max-width: 40rem;
  padding: 2rem;
}

.empty-state h2 {
  font-size: 2rem;
}

.empty-state p {
  color: var(--muted);
}

[hidden] {
  display: none !important;
}

html[dir="rtl"] body {
  font-family: Tahoma, Arial, "Segoe UI", sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .brand {
  font-family: Tahoma, Arial, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] .product-category,
html[dir="rtl"] .summary-kicker {
  letter-spacing: 0;
}

html[dir="rtl"] .directional-arrow {
  transform: rotate(180deg);
}

html[dir="rtl"] .hero-ring {
  transform: translate(-3.5rem, -1.8rem);
}

html[dir="rtl"] #phone,
html[dir="rtl"] #quantity {
  text-align: left;
}

@media (min-width: 36rem) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .main-nav {
    gap: 1.5rem;
  }

  .product-grid,
  .quality-cards,
  .steps-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .field-full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 48rem) {
  .section {
    padding-block: 6rem;
  }

  .site-header {
    position: sticky;
    top: 0;
    backdrop-filter: blur(14px);
  }

  .brand {
    font-size: 1.14rem;
  }

  .header-actions,
  .checkout-header-actions {
    width: auto;
    justify-content: flex-end;
  }

  .section-heading,
  .products-heading {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

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

  .quality-grid {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }

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

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

  .contact-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
  }

  .contact-card .button {
    flex: 0 0 auto;
  }

  .footer-inner {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

  .order-summary,
  .checkout-form-card {
    padding: 2rem;
  }
}

@media (min-width: 62rem) {
  .hero {
    min-height: 42rem;
    padding-block: 5.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
  }

  .hero-visual {
    display: grid;
  }

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

  .checkout-layout {
    grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 1.8rem;
  }

  .order-summary {
    position: sticky;
    top: 6.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
