:root {
  --green: #1b3022;
  --green-2: #243d30;
  --cream: #f9f7f2;
  --cream-2: #efeae2;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --gold: #c9a227;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --container-max: 1120px;
  --gutter: clamp(0.75rem, 4vw, 1.5rem);
  --shadow: 0 18px 50px rgba(27, 48, 34, 0.12);
  /* يمنع تمدد الهيرو على شاشات عريضة جداً ويحافظ على وضوح المنتج */
  --hero-max-width: min(1200px, 100%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

body {
  margin: 0;
  font-family: "Cairo", system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: clip;
  padding-inline: env(safe-area-inset-left, 0px) env(safe-area-inset-right, 0px);
}

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

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

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

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  width: 100%;
  max-width: 720px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-bar {
  background: var(--cream-2);
  color: var(--ink);
  font-size: clamp(0.78rem, 2.8vw, 0.9rem);
  text-align: center;
  padding: 0.45rem max(0.75rem, env(safe-area-inset-left, 0px)) 0.45rem max(0.75rem, env(safe-area-inset-right, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1.35;
}

.top-bar__icon {
  display: inline-flex;
  color: var(--green);
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(27, 48, 34, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: env(safe-area-inset-top, 0px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}

.site-logo {
  justify-self: center;
  grid-column: 2;
}

.site-logo img {
  max-height: 64px;
  width: auto;
}

.site-header__tools {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--green);
  border: 1px solid transparent;
}

.icon-btn:hover {
  background: var(--cream);
  text-decoration: none;
}

.icon-btn--cart .badge {
  position: absolute;
  top: 4px;
  inset-inline-start: 4px;
  background: var(--green);
  color: var(--white);
  font-size: 0.65rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 4px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  line-height: 1;
}

.nav-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(27, 48, 34, 0.15);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green);
}

.site-nav {
  border-top: 1px solid rgba(27, 48, 34, 0.06);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0.65rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--ink);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover {
  text-decoration: none;
  border-color: rgba(27, 48, 34, 0.25);
}

.site-nav a.is-active {
  border-color: var(--green);
}

.section {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

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

.section-title {
  font-family: "El Messiri", "Cairo", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  text-align: center;
  margin: 0 0 2rem;
  color: var(--green);
}

.section-title--sm {
  text-align: start;
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

/* Full-bleed hero: صورة كاملة + نص فوقها — عرض محدود على الشاشات العريضة */
.hero {
  position: relative;
  padding: 0;
  background: var(--cream);
}

.hero__shell {
  position: relative;
  width: 100%;
  max-width: var(--hero-max-width);
  margin-inline: auto;
  min-height: clamp(420px, 58vh, 720px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 24px 60px rgba(27, 48, 34, 0.08);
}

@media (min-width: 1240px) {
  .hero__shell {
    border-radius: var(--radius-lg);
    margin-block: 0.5rem;
  }
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--green);
}

.hero__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* الزجاجة في الصورة ناحية اليسار (LTR للصورة) — نثبتها عند القص */
  object-position: 28% 50%;
  display: block;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* تظليل أقوى عند حافة النص (يمين الشاشة = بداية القراءة في RTL) */
  background: linear-gradient(
    to left,
    rgba(27, 48, 34, 0.9) 0%,
    rgba(27, 48, 34, 0.45) 45%,
    rgba(27, 48, 34, 0.12) 72%,
    transparent 100%
  );
}

.hero__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: inherit;
  padding-block: clamp(2.25rem, 5vw, 3.75rem);
}

.hero__content {
  max-width: min(32rem, 100%);
  text-align: start;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.hero__title {
  font-family: "El Messiri", serif;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  line-height: 1.25;
  color: var(--white);
  margin: 0 0 0.75rem;
}

.hero__lead {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(27, 48, 34, 0.25);
}

.btn--primary:hover {
  background: var(--green-2);
}

.btn--outline {
  background: var(--white);
  color: var(--green);
  border-color: rgba(27, 48, 34, 0.35);
}

.btn--outline:hover {
  border-color: var(--green);
  background: var(--cream);
}

.btn--block {
  width: 100%;
}

.hero__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero__features li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__feat-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  color: var(--white);
}

.btn--on-hero {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}

.btn--on-hero:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--white);
  color: var(--white);
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem 1.15rem;
  border: 1px solid rgba(27, 48, 34, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.info-card--center {
  text-align: center;
}

.info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--cream);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.info-card--center .info-card__icon {
  margin-inline: auto;
}

.info-card__icon--green {
  background: rgba(27, 48, 34, 0.08);
}

.info-card__title {
  font-family: "El Messiri", serif;
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--green);
}

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

.product-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.product-block__gallery {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.product-block__badge {
  position: absolute;
  top: 1rem;
  inset-inline-start: 1rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  z-index: 2;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.breadcrumbs a:hover {
  color: var(--green);
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.rating__stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 1rem;
}

.rating__score {
  font-weight: 800;
}

.rating__count {
  color: var(--muted);
  font-size: 0.9rem;
}

.product-block__desc {
  margin: 0 0 1rem;
  color: var(--muted);
}

.tag-row {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  border: 1px solid rgba(27, 48, 34, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  background: var(--white);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.price-row__current {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--green);
}

.price-row__current small {
  font-size: 0.55em;
  font-weight: 700;
}

.price-row__old {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 600;
}

.cart-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  align-items: stretch;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(27, 48, 34, 0.2);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.qty__btn {
  width: 42px;
  border: 0;
  background: var(--cream);
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--green);
}

.qty__btn:hover {
  background: var(--cream-2);
}

.qty__input {
  width: 52px;
  border: 0;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
}

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

.qty__input {
  appearance: textfield;
}

.trust-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-row i {
  color: var(--green);
}

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

.ing-item {
  text-align: center;
}

.ing-item__circle {
  width: 88px;
  height: 88px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(27, 48, 34, 0.08);
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  color: var(--green);
}

.ing-item__title {
  font-family: "El Messiri", serif;
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--green);
}

.ing-item__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid rgba(27, 48, 34, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.review-card__stars {
  margin-bottom: 0.5rem;
}

.review-card__quote {
  margin: 0 0 1rem;
  font-style: normal;
  color: var(--ink);
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.review-card__name {
  font-weight: 700;
}

.review-card__city {
  font-size: 0.85rem;
  color: var(--muted);
}

.faq__item {
  border: 1px solid rgba(27, 48, 34, 0.12);
  border-radius: var(--radius);
  padding: 0.25rem 1rem;
  background: var(--white);
  margin-bottom: 0.65rem;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 0.85rem 0;
  list-style: none;
  position: relative;
  padding-inline-end: 2rem;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-inline-end: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq__item[open] summary::after {
  transform: translateY(-20%) rotate(-135deg);
}

.faq__item p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— النشرة: بنار كريمي + صورة يسار، نص ونموذج بدون خلفية بطاقة ——— */
.newsletter.section {
  position: relative;
  padding-block: clamp(2rem, 4.5vw, 2.75rem);
  background-color: #f4f1ea;
  background-image: linear-gradient(to left, #f4f1ea 0%, rgba(244, 241, 234, 0.92) 28%, rgba(244, 241, 234, 0.55) 52%, transparent 70%), var(--nl-banner);
  background-repeat: no-repeat, no-repeat;
  background-size: auto, min(620px, 56vw) 100%;
  background-position: center, left center;
  overflow: hidden;
  min-height: clamp(200px, 22vw, 280px);
}

.newsletter__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: clamp(180px, 20vw, 260px);
}

.newsletter__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(0.85rem, 2vw, 1.15rem);
  width: min(26rem, 100%);
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  backdrop-filter: none;
}

.newsletter__intro {
  text-align: start;
}

.newsletter__title {
  font-family: "El Messiri", serif;
  font-size: clamp(1.4rem, 2.6vw, 1.95rem);
  margin: 0 0 0.35rem;
  color: var(--green);
  line-height: 1.25;
  font-weight: 700;
}

.newsletter__hint {
  margin: 0;
  color: #4a4a4a;
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 24rem;
}

.newsletter__action {
  min-width: 0;
}

.newsletter__form {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  max-width: 26rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(27, 48, 34, 0.14);
  box-shadow: 0 2px 12px rgba(27, 48, 34, 0.06);
}

.newsletter__input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
}

.newsletter__input::placeholder {
  color: #888;
}

.newsletter__input:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(27, 48, 34, 0.15);
}

.newsletter__submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.15rem;
  border: none;
  border-radius: 0;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--green);
  color: var(--white);
  white-space: nowrap;
  transition: background 0.15s ease;
}

.newsletter__submit:hover {
  background: var(--green-2);
  text-decoration: none;
}

.newsletter__flash {
  margin: 0 0 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.newsletter__flash.is-ok {
  color: #1a6b3a;
}

.newsletter__flash.is-err {
  color: #b42318;
}

/* ——— الفوتر: متدرج هادئ + أعمدة واضحة ——— */
.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  padding: 0;
  overflow: hidden;
  background: linear-gradient(165deg, #0f1f17 0%, var(--green) 42%, #152920 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(255, 255, 255, 0.06), transparent 55%);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(2.25rem, 5vw, 3.25rem) 1.25rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.site-footer__col {
  min-width: 0;
}

.site-footer__brand img {
  filter: brightness(0) invert(1);
  max-height: 68px;
  width: auto;
}

.site-footer__tagline {
  margin: 0.6rem 0 0;
  opacity: 0.88;
  font-size: 0.93rem;
  line-height: 1.5;
  max-width: 16rem;
}

.site-footer__title {
  font-family: "El Messiri", serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__links,
.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.94rem;
}

.site-footer__links li,
.site-footer__contact li {
  margin-bottom: 0.2rem;
  line-height: 1.45;
}

.site-footer__links a,
.site-footer__contact a {
  display: inline-block;
  padding: 0.35rem 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.15s ease, background 0.15s ease;
  word-break: break-word;
}

.site-footer__links a:hover,
.site-footer__contact a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.site-footer__social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  color: var(--white);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.site-footer__social a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transform: translateY(-1px);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.15rem;
  margin-top: 0.25rem;
  text-align: center;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 1024px) {
  .card-grid--4,
  .ingrid-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .site-footer__col.site-footer__brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .site-footer__brand img {
    margin-inline: auto;
  }

  .site-footer__tagline {
    margin-inline: auto;
    max-width: 26rem;
  }

  .site-footer__col--contact {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-footer__social {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .section {
    padding-block: clamp(1.85rem, 6vw, 3rem);
  }

  .hero__shell {
    min-height: clamp(360px, 58vh, 600px);
  }

  .hero__img {
    object-position: center 38%;
  }

  .hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(27, 48, 34, 0.2) 0%,
      rgba(27, 48, 34, 0.55) 45%,
      rgba(27, 48, 34, 0.88) 100%
    );
  }

  .hero__overlay {
    justify-content: center;
    align-items: flex-end;
    padding-bottom: clamp(1.5rem, 5vw, 2.25rem);
    padding-top: clamp(1rem, 4vw, 1.75rem);
  }

  .hero__content {
    max-width: 36rem;
    text-align: center;
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__features {
    justify-content: center;
    row-gap: 0.5rem;
  }

  .hero__title {
    font-size: clamp(1.45rem, 5.5vw, 2.1rem);
  }

  .product-block {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .product-block .breadcrumbs,
  .product-block .section-title--sm {
    text-align: center;
  }

  .product-block .rating {
    justify-content: center;
  }

  .product-block .tag-row {
    justify-content: center;
  }

  .product-block .price-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-header__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
  }

  .nav-toggle {
    display: inline-flex;
    order: 1;
    flex-shrink: 0;
    grid-column: auto;
    justify-self: unset;
  }

  .site-logo {
    order: 2;
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
    grid-column: auto;
    justify-self: unset;
  }

  .site-logo img {
    max-height: 50px;
    width: auto;
    max-width: min(200px, 46vw);
    object-fit: contain;
  }

  .site-header__tools {
    order: 3;
    flex-shrink: 0;
    margin-inline-start: auto;
    grid-column: auto;
    justify-self: unset;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }

  .site-nav {
    display: none;
    border-top: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(27, 48, 34, 0.08);
    box-shadow: 0 10px 28px rgba(27, 48, 34, 0.08);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.35rem 0 1rem;
  }

  .site-nav__list li {
    border-bottom: 1px solid rgba(27, 48, 34, 0.06);
  }

  .site-nav__list li:last-child {
    border-bottom: 0;
  }

  .site-nav__list a {
    display: flex;
    align-items: center;
    padding: 0.7rem 0.25rem;
    min-height: 2.75rem;
  }

  .site-nav a.is-active {
    border-bottom: 0;
    background: rgba(27, 48, 34, 0.06);
    border-radius: 8px;
    padding-inline: 0.5rem;
  }

  .btn {
    min-height: 2.75rem;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .cart-row {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .cart-row .qty {
    justify-self: center;
    width: fit-content;
    max-width: 100%;
  }

  .card-grid--3 {
    grid-template-columns: 1fr;
  }

  .newsletter.section {
    background-image: linear-gradient(180deg, rgba(244, 241, 234, 0.97) 0%, rgba(244, 241, 234, 0.88) 45%, #f4f1ea 100%), var(--nl-banner);
    background-size: auto, 100% auto;
    background-position: center, center top;
    padding-top: clamp(10.5rem, 48vw, 13rem);
    padding-bottom: clamp(1.25rem, 4vw, 1.75rem);
    min-height: 0;
  }

  .newsletter__wrap {
    justify-content: center;
    min-height: 0;
  }

  .newsletter__card {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
    align-items: stretch;
  }

  .newsletter__intro {
    text-align: center;
  }

  .newsletter__hint {
    margin-inline: auto;
    text-align: center;
  }

  .newsletter__form {
    flex-direction: column;
    max-width: 100%;
    border-radius: 12px;
  }

  .newsletter__input {
    width: 100%;
  }

  .newsletter__submit {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .card-grid--4 {
    grid-template-columns: 1fr;
  }

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

  .ing-item__circle {
    width: 76px;
    height: 76px;
    font-size: 1.5rem;
  }

  .site-footer__col.site-footer__brand,
  .site-footer__col--contact {
    grid-column: auto;
    align-items: stretch;
  }

  .site-footer__col--contact {
    text-align: center;
    align-items: center;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__col {
    text-align: center;
  }

  .site-footer__title {
    margin-bottom: 0.65rem;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    margin-bottom: 1.35rem;
  }

  .review-card {
    padding: 1rem;
  }
}
