@font-face {
  font-family: "Pelak";
  src: url("../fonts/pelak-thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pelak";
  src: url("../fonts/pelak-light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pelak";
  src: url("../fonts/pelak-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pelak";
  src: url("../fonts/pelak-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pelak";
  src: url("../fonts/pelak-semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pelak";
  src: url("../fonts/pelak-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pelak";
  src: url("../fonts/pelak-extrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pelak";
  src: url("../fonts/pelak-black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --green-dark: #124232;
  --green-deep: #0b2f24;
  --gold: #cca335;
  --gold-soft: #e7c96a;
  --cream: #f8f4ea;
  --white: #ffffff;
  --black: #111111;
  --text: #1f2a24;
  --muted: #6f7d75;
  --border: rgba(18, 66, 50, 0.12);
  --shadow: 0 18px 45px rgba(11, 47, 36, 0.12);
  --soft-shadow: 0 10px 28px rgba(11, 47, 36, 0.08);
  --surface: rgba(255, 255, 255, 0.76);
}

.dark {
  --cream: #081f18;
  --white: #0e2b22;
  --text: #f6f1e7;
  --muted: #b7c6bd;
  --border: rgba(231, 201, 106, 0.18);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --soft-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  --surface: rgba(14, 43, 34, 0.78);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(204, 163, 53, 0.08), transparent 32rem),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 45%, var(--cream) 100%);
  color: var(--text);
  font-family: "Pelak", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body[dir="rtl"] {
  font-family: "Pelak", Tahoma, Arial, ui-sans-serif, system-ui, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: color-mix(in srgb, var(--white) 86%, transparent);
  border-color: var(--border);
  box-shadow: 0 8px 24px rgba(11, 47, 36, 0.08);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 164px;
}

.brand img {
  width: 146px;
  height: auto;
}

.brand-mini {
  display: none;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
  padding: 9px 11px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(204, 163, 53, 0.12);
  color: var(--green-dark);
}

.dark .nav-links a:hover,
.dark .nav-links a.active {
  color: var(--gold-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn,
.menu-toggle,
.lang-select {
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-btn:hover,
.menu-toggle:hover,
.lang-select:hover {
  border-color: rgba(204, 163, 53, 0.55);
  transform: translateY(-1px);
}

.lang-select {
  width: 104px;
  padding: 0 10px;
}

.cart-link {
  position: relative;
  padding: 0 12px;
  gap: 6px;
  font-weight: 800;
}

.cart-count {
  min-width: 21px;
  height: 21px;
  border-radius: 99px;
  background: var(--gold);
  color: #102d24;
  display: inline-grid;
  place-items: center;
  font-size: 0.74rem;
  font-weight: 900;
}

.ui-icon {
  --icon-color: currentColor;
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 18px;
  position: relative;
  color: var(--icon-color);
}

.ui-icon-cart::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 11px;
  height: 8px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 1px 1px 3px 3px;
}

.ui-icon-cart::after {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 2px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 8px 0 0 currentColor;
}

.ui-icon-moon::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 2px solid currentColor;
}

.ui-icon-moon::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 0;
  width: 11px;
  height: 18px;
  border-radius: 50%;
  background: var(--surface);
}

.ui-icon-menu::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 4px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
}

.ui-icon-arrow::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  right: 3px;
  top: 4px;
}

.ui-icon-arrow::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  right: 3px;
  top: 8px;
}

body[dir="rtl"] .ui-icon-arrow {
  transform: scaleX(-1);
}

.ui-icon-plus::before,
.ui-icon-plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 99px;
}

.ui-icon-plus::before {
  left: 3px;
  right: 3px;
  top: 8px;
  height: 2px;
}

.ui-icon-plus::after {
  top: 3px;
  bottom: 3px;
  left: 8px;
  width: 2px;
}

.ui-icon-check::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 10px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.ui-icon-leaf::before {
  content: "";
  position: absolute;
  inset: 2px 3px 3px 2px;
  border: 2px solid currentColor;
  border-radius: 100% 0 100% 0;
  transform: rotate(-20deg);
}

.ui-icon-leaf::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  width: 2px;
  height: 10px;
  background: currentColor;
  transform: rotate(38deg);
  border-radius: 99px;
}

.ui-icon-lab::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 5px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 2px 2px 0 0;
}

.ui-icon-lab::after {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 2px;
  width: 12px;
  height: 10px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 2px 2px 7px 7px;
  background: linear-gradient(to top, currentColor 0 35%, transparent 36%);
}

.ui-icon-shield::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 2px;
  width: 12px;
  height: 14px;
  background: currentColor;
  clip-path: polygon(50% 0, 92% 14%, 86% 64%, 50% 100%, 14% 64%, 8% 14%);
}

.ui-icon-box::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.ui-icon-box::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: 8px;
  height: 2px;
  background: currentColor;
}

.ui-icon-globe::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.ui-icon-globe::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: 8px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -4px 0 -1px currentColor, 0 4px 0 -1px currentColor;
}

.ui-icon-truck::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 6px;
  width: 10px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.ui-icon-truck::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 8px;
  width: 7px;
  height: 5px;
  border: 2px solid currentColor;
  border-left: 0;
  border-radius: 0 2px 2px 0;
  box-shadow: -10px 6px 0 -4px currentColor, 0 6px 0 -4px currentColor;
}

.menu-toggle {
  display: none;
  font-size: 1.25rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #102d24;
  box-shadow: 0 12px 24px rgba(204, 163, 53, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(204, 163, 53, 0.28);
}

.btn-secondary {
  border-color: rgba(204, 163, 53, 0.48);
  background: transparent;
  color: var(--green-dark);
}

.dark .btn-secondary {
  color: var(--gold-soft);
}

.btn-subtle {
  border-color: var(--border);
  background: var(--surface);
  color: var(--text);
}

.section {
  padding: 88px 0;
}

.section.tight {
  padding: 56px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-kicker {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

body[dir="rtl"] .section-kicker {
  text-transform: none;
}

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

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.08;
}

body[dir="rtl"] h1,
body[dir="rtl"] h2 {
  line-height: 1.26;
}

body[dir="rtl"] .hero h1,
body[dir="rtl"] .page-hero h1 {
  line-height: 1.3;
  margin-bottom: 28px;
}

body[dir="rtl"] .section-kicker {
  margin-bottom: 18px;
}

body[dir="rtl"] .lead {
  line-height: 1.9;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  max-width: 980px;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  max-width: 720px;
}

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

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 42px 0 72px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--cream) 75%, transparent));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  align-items: center;
  gap: 44px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  padding-top: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-media {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-product {
  position: relative;
  width: min(100%, 430px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--white) 82%, transparent), color-mix(in srgb, var(--cream) 92%, transparent));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-product .hero-package {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  background: var(--cream);
}

.hero-product-info {
  padding: 22px;
  border-top: 1px solid var(--border);
}

.hero-product-info ul,
.feature-list,
.clean-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-product-info li,
.feature-list li,
.clean-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  margin-top: 9px;
}

.hero-product-info li::before,
.feature-list li::before,
.clean-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--gold);
  flex: 0 0 auto;
}

.floating-flower {
  position: absolute;
  width: min(36vw, 270px);
  right: -26px;
  bottom: 12px;
  filter: drop-shadow(0 18px 28px rgba(11, 47, 36, 0.18));
  pointer-events: none;
}

body[dir="rtl"] .floating-flower {
  right: auto;
  left: -26px;
}

.trust-grid,
.quality-grid,
.review-grid,
.stats-grid,
.package-grid,
.product-grid,
.related-grid {
  display: grid;
  gap: 18px;
}

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

.trust-item,
.quality-card,
.review-card,
.stat-card,
.package-option,
.product-card,
.info-card,
.contact-card,
.cart-summary,
.order-summary,
.faq-item,
.tab-panel,
.filter-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.trust-item {
  padding: 20px;
}

.trust-icon,
.quality-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(204, 163, 53, 0.14);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 14px;
}

.trust-icon .ui-icon,
.quality-icon .ui-icon {
  width: 21px;
  height: 21px;
}

.dark .trust-icon,
.dark .quality-icon {
  color: var(--gold-soft);
}

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

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

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(204, 163, 53, 0.5);
  box-shadow: var(--shadow);
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, rgba(248, 244, 234, 0.85), rgba(255, 255, 255, 0.7));
  overflow: hidden;
}

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

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

.product-badge {
  position: absolute;
  inset: 12px auto auto 12px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--green-deep) 88%, transparent);
  color: #fff7df;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 6px 8px;
}

body[dir="rtl"] .product-badge {
  inset: 12px 12px auto auto;
}

.product-body {
  padding: 18px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0 0 8px;
}

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

.price {
  color: var(--green-dark);
  font-size: 1.2rem;
  font-weight: 900;
}

.dark .price {
  color: var(--gold-soft);
}

.stars {
  color: var(--gold);
  font-size: 0.88rem;
  white-space: nowrap;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.card-actions .btn {
  min-height: 40px;
  padding: 9px 10px;
  font-size: 0.86rem;
}

.package-section {
  background: linear-gradient(180deg, color-mix(in srgb, var(--white) 72%, transparent), color-mix(in srgb, var(--cream) 88%, transparent));
}

.package-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

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

.package-option {
  padding: 18px 14px;
  text-align: start;
  color: var(--text);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.package-option:hover,
.package-option.active {
  transform: translateY(-3px);
  border-color: rgba(204, 163, 53, 0.65);
  background: rgba(204, 163, 53, 0.12);
}

.package-option strong {
  display: block;
  font-size: 1rem;
}

.package-option span {
  color: var(--muted);
  display: block;
  font-size: 0.86rem;
  margin-top: 4px;
}

.package-detail {
  min-height: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  background:
    linear-gradient(140deg, color-mix(in srgb, var(--green-deep) 92%, transparent), color-mix(in srgb, var(--green-dark) 86%, transparent)),
    var(--green-deep);
  color: #fff7df;
  padding: 30px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.package-detail::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(231, 201, 106, 0.28);
  border-radius: 999px;
  right: -80px;
  bottom: -110px;
}

body[dir="rtl"] .package-detail::after {
  right: auto;
  left: -80px;
}

.package-detail h3,
.package-detail .price {
  color: #fff7df;
}

.package-detail p {
  color: rgba(255, 247, 223, 0.76);
}

.quality-layout,
.story-layout,
.about-layout,
.contact-layout,
.checkout-layout,
.cart-layout,
.product-detail-layout {
  display: grid;
  gap: 34px;
}

.quality-layout {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
}

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

.quality-card,
.review-card,
.info-card,
.contact-card,
.stat-card {
  padding: 22px;
}

.image-panel {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--white);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.story-layout,
.about-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  align-items: center;
}

.wholesale-band {
  background:
    linear-gradient(120deg, rgba(11, 47, 36, 0.94), rgba(18, 66, 50, 0.88)),
    url("../images/packaging-03.png") center/cover;
  color: #fff7df;
}

.wholesale-band h2,
.wholesale-band h3 {
  color: #fff7df;
}

.wholesale-band .lead,
.wholesale-band p {
  color: rgba(255, 247, 223, 0.76);
}

.wholesale-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: start;
}

.form-card {
  border: 1px solid rgba(231, 201, 106, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
  padding: 24px;
  backdrop-filter: blur(10px);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

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

label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.wholesale-band label {
  color: rgba(255, 247, 223, 0.82);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: color-mix(in srgb, var(--white) 88%, transparent);
  color: var(--text);
  min-height: 44px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(204, 163, 53, 0.75);
  box-shadow: 0 0 0 4px rgba(204, 163, 53, 0.12);
}

.wholesale-band input,
.wholesale-band textarea {
  border-color: rgba(231, 201, 106, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff7df;
}

.wholesale-band input::placeholder,
.wholesale-band textarea::placeholder {
  color: rgba(255, 247, 223, 0.58);
}

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

.review-card blockquote {
  margin: 0 0 18px;
  color: var(--text);
}

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

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--gold));
  color: #fff7df;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  text-align: start;
  font-weight: 900;
}

.faq-answer {
  display: none;
  color: var(--muted);
  padding: 0 20px 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

.page-hero {
  padding: 82px 0 44px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--cream) 80%, transparent), color-mix(in srgb, var(--white) 88%, transparent)),
    url("../images/flower-transparent.png") right bottom/360px auto no-repeat;
}

body[dir="rtl"] .page-hero {
  background-position: left bottom;
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.filter-panel {
  padding: 20px;
  position: sticky;
  top: 96px;
}

.filter-group {
  margin-bottom: 18px;
}

.filter-group strong {
  display: block;
  margin-bottom: 9px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted);
  padding: 8px 10px;
  font-size: 0.86rem;
  font-weight: 800;
}

.chip.active,
.chip:hover {
  border-color: rgba(204, 163, 53, 0.65);
  color: var(--green-dark);
  background: rgba(204, 163, 53, 0.12);
}

.dark .chip.active,
.dark .chip:hover {
  color: var(--gold-soft);
}

.shop-results-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.shop-results-head select {
  max-width: 220px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-detail-layout {
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
  align-items: start;
}

.gallery-main {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.thumb {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
}

.thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-options {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}

.option-row {
  display: grid;
  gap: 9px;
}

.quantity-control {
  width: max-content;
  display: inline-grid;
  grid-template-columns: 42px 58px 42px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
}

.quantity-control button {
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.15rem;
}

.quantity-control input {
  border: 0;
  border-inline: 1px solid var(--border);
  border-radius: 0;
  text-align: center;
  min-height: 42px;
  padding: 0;
}

.tabs {
  margin-top: 30px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tab-btn {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted);
  padding: 10px 12px;
  font-weight: 850;
}

.tab-btn.active {
  border-color: rgba(204, 163, 53, 0.65);
  color: var(--green-dark);
  background: rgba(204, 163, 53, 0.12);
}

.tab-panel {
  display: none;
  padding: 20px;
}

.tab-panel.active {
  display: block;
}

.cart-layout,
.checkout-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
  padding: 14px;
}

.cart-item img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 6px;
}

.cart-summary,
.order-summary {
  padding: 22px;
  position: sticky;
  top: 96px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.summary-row.total {
  border-bottom: 0;
  color: var(--green-dark);
  font-size: 1.24rem;
  font-weight: 950;
}

.dark .summary-row.total {
  color: var(--gold-soft);
}

.empty-state {
  border: 1px dashed rgba(204, 163, 53, 0.7);
  border-radius: 8px;
  padding: 46px 20px;
  text-align: center;
  color: var(--muted);
  background: rgba(204, 163, 53, 0.08);
}

.payment-options {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.payment-option {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px;
  background: var(--surface);
}

.success-message {
  display: none;
  border: 1px solid rgba(204, 163, 53, 0.5);
  border-radius: 8px;
  margin-top: 18px;
  padding: 16px;
  background: rgba(204, 163, 53, 0.12);
  color: var(--green-dark);
  font-weight: 850;
}

.dark .success-message {
  color: var(--gold-soft);
}

.success-message.show {
  display: block;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.stat-card strong {
  display: block;
  color: var(--green-dark);
  font-size: 2rem;
  line-height: 1;
}

.dark .stat-card strong {
  color: var(--gold-soft);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, var(--green-deep) 94%, #000);
  color: #fff7df;
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(160px, 0.7fr));
  gap: 28px;
}

.footer-logo {
  width: 160px;
  filter: brightness(0) invert(1) sepia(1) saturate(0.2);
  opacity: 0.94;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255, 247, 223, 0.72);
}

.site-footer h3 {
  color: #fff7df;
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.payment-row,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payment-row {
  max-width: 290px;
}

.payment-pill,
.social-pill {
  border: 1px solid rgba(231, 201, 106, 0.2);
  border-radius: 6px;
  padding: 8px 11px;
  color: rgba(255, 247, 223, 0.76);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  min-height: 42px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.footer-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 24px;
  object-fit: contain;
  border-radius: 4px;
  background: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-icon-wide {
  width: 30px;
  flex-basis: 30px;
}

.footer-icon-card {
  width: 48px;
  flex-basis: 48px;
  border-radius: 2px;
}

.payment-pill-wide {
  flex-basis: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(231, 201, 106, 0.14);
  margin-top: 36px;
  padding-top: 20px;
  color: rgba(255, 247, 223, 0.62);
  font-size: 0.88rem;
}

.creative-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 247, 223, 0.82);
  font-weight: 700;
}

.creative-credit img {
  display: block;
  width: auto;
  height: 42px;
}

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

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

[hidden] {
  display: none !important;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 2px;
  }

  .brand img {
    width: 126px;
  }

  .hero-grid,
  .quality-layout,
  .story-layout,
  .about-layout,
  .wholesale-grid,
  .product-detail-layout,
  .cart-layout,
  .checkout-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: auto;
  }

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

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

@media (max-width: 860px) {
  .nav-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .brand img {
    display: none;
  }

  .brand {
    min-width: auto;
  }

  .brand .brand-mini {
    display: block;
    width: 34px;
    height: 34px;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    inset-inline: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: color-mix(in srgb, var(--white) 96%, transparent);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 14px 16px 18px;
    backdrop-filter: blur(18px);
  }

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

  .nav-links a {
    padding: 14px 12px;
  }

  .nav-actions .header-cta {
    display: none;
  }

  .lang-select {
    width: 78px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head,
  .shop-results-head {
    align-items: start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-product-info {
    padding: 18px;
  }

  .floating-flower {
    width: 180px;
    right: 0;
  }

  body[dir="rtl"] .floating-flower {
    left: 0;
    right: auto;
  }

  .package-layout,
  .shop-toolbar {
    grid-template-columns: 1fr;
  }

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

  .filter-panel,
  .cart-summary,
  .order-summary {
    position: static;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-inner {
    gap: 8px;
  }

  .nav-actions {
    gap: 6px;
  }

  .icon-btn,
  .menu-toggle,
  .lang-select {
    min-width: 38px;
    height: 38px;
  }

  .cart-link [data-i18n="cart"] {
    display: none;
  }

  .hero-actions,
  .card-actions,
  .field-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  h1 {
    font-size: 2.45rem;
  }

  .product-grid,
  .related-grid,
  .trust-grid,
  .shop-grid,
  .package-grid,
  .quality-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .payment-row,
  .social-row {
    max-width: 100%;
  }

  .payment-pill,
  .social-pill {
    min-height: 44px;
  }

  .payment-pill-wide {
    flex-basis: auto;
  }

  .cart-item {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .cart-item img {
    width: 78px;
    height: 78px;
  }

  .cart-item .cart-item-actions {
    grid-column: 1 / -1;
  }

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