:root {
  --bg: #f9f8f5;
  --surface: #ffffff;
  --soft: #f2f0ea;
  --ink: #11241c;
  --muted: #5f706a;
  --line: #d7dfdb;
  --brand: #0f5a42;
  --brand-2: #1c7c5e;
  --gold: #c8a45f;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow: 0 18px 42px rgba(17, 36, 28, 0.12);
  --max: min(1280px, 94vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Noto Sans", sans-serif;
  line-height: 1.5;
}

body.rtl {
  font-family: "Noto Naskh Arabic", "Manrope", sans-serif;
}

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

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

h1,
h2,
h3,
h4,
.brand-logo {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.01em;
}

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

.announcement {
  background: var(--brand);
  color: #e8f5ef;
  text-align: center;
  font-size: 0.84rem;
  padding: 0.48rem 1rem;
}

.announcement b {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(249, 248, 245, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  gap: 1rem;
}

.menu-btn {
  border: 0;
  background: transparent;
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  cursor: pointer;
}

.menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  display: block;
  margin: 4px auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.93rem;
  color: #30443d;
}

.primary-nav > a,
.primary-nav .mega-toggle {
  padding-block: 0.7rem;
  position: relative;
}

.primary-nav > a::after,
.primary-nav .mega-toggle::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0.42rem;
  height: 1px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.primary-nav > a:hover::after,
.primary-nav .mega-toggle:hover::after {
  transform: scaleX(1);
}

.brand-logo {
  justify-self: center;
  font-size: clamp(2rem, 2.8vw, 2.55rem);
  color: var(--brand);
}

.header-tools {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.tool-btn,
.lang-select {
  border: 1px solid var(--line);
  background: #fff;
  color: #1b2e27;
  border-radius: 999px;
  padding: 0.46rem 0.82rem;
  font-size: 0.84rem;
}

.tool-btn {
  cursor: pointer;
}

.lang-select {
  min-width: 112px;
}

.tool-btn.cart {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}

.tool-btn .count {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mega.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-inner {
  width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
  padding: 1.1rem 0 1.3rem;
}

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

.mega-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.mega-card img {
  height: 104px;
  width: 100%;
  object-fit: cover;
}

.mega-card div {
  padding: 0.62rem;
}

.mega-card h4 {
  margin: 0;
  font-size: 1.1rem;
}

.mega-card p {
  margin: 0.24rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.mega-highlight {
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(150deg, #0f5a42, #114b39);
  color: #eef7f2;
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.mega-highlight h3 {
  margin: 0;
  font-size: 2.1rem;
}

.mega-highlight p {
  margin: 0;
  color: #d8e9e1;
}

.mega-highlight a {
  justify-self: start;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0.52rem 0.92rem;
  font-size: 0.85rem;
}

.mobile-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(80vw, 340px);
  background: #fff;
  z-index: 70;
  transform: translateX(-100%);
  transition: transform 260ms ease;
  border-right: 1px solid var(--line);
  padding: 1.2rem 1rem;
  display: grid;
  align-content: start;
  gap: 0.5rem;
}

body.rtl .mobile-drawer {
  inset: 0 0 0 auto;
  border-right: 0;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer a {
  padding: 0.62rem 0;
  border-bottom: 1px solid #eceee9;
  color: #334741;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 21, 16, 0.42);
  opacity: 0;
  pointer-events: none;
  z-index: 60;
  transition: opacity 220ms ease;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

main {
  padding-bottom: 4rem;
}

.hero {
  margin-top: 1.2rem;
}

.hero-carousel {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #ebf0ec;
}

.hero-track {
  display: flex;
  transition: transform 520ms ease;
}

.hero-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
}

.hero-copy {
  padding: 2.2rem 2rem;
  display: grid;
  align-content: center;
  gap: 0.82rem;
  background: linear-gradient(145deg, #0f5a42 0%, #0d4c39 60%, #104f3d 100%);
  color: #ecf6f0;
}

.hero-copy h1,
.hero-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.7vw, 3.5rem);
  line-height: 1.06;
}

.hero-copy p {
  margin: 0;
  color: #d7ece3;
  max-width: 54ch;
}

.hero-pills {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.hero-pills span {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.26rem 0.62rem;
  font-size: 0.75rem;
}

.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1.14rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: #f3dfb4;
  color: #1f342c;
}

.btn-ghost {
  background: transparent;
  color: #eff7f3;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-media {
  min-height: 520px;
}

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

.hero-controls {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.hero-arrow,
.hero-dots button {
  pointer-events: auto;
}

.hero-arrow {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(7, 20, 15, 0.46);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.48);
}

.hero-dots button.active {
  background: #fff;
}

.section {
  margin-top: 3.3rem;
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.section-head p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  max-width: 72ch;
}

.section-head a {
  color: var(--brand);
  font-size: 0.9rem;
}

.product-strip,
.product-grid {
  display: grid;
  gap: 0.9rem;
}

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

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

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card .media {
  background: #f4f4f0;
  aspect-ratio: 0.95;
}

.product-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .content {
  padding: 0.85rem;
  display: grid;
  gap: 0.5rem;
}

.product-card h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.08;
}

.product-meta {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  color: #3f544e;
  font-size: 0.81rem;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.price-row strong {
  font-size: 1.05rem;
}

.price-row s {
  color: #8a9792;
  font-size: 0.86rem;
}

.badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.badges span {
  border: 1px solid #dce3df;
  border-radius: 999px;
  padding: 0.14rem 0.45rem;
  font-size: 0.72rem;
  color: #3e524b;
}

.product-actions {
  display: flex;
  gap: 0.4rem;
}

.product-actions .btn {
  flex: 1;
  font-size: 0.84rem;
  padding: 0.54rem 0.6rem;
}

.btn-outline {
  border: 1px solid var(--line);
  background: #fff;
  color: #2f443e;
}

.btn-buy {
  background: var(--brand);
  color: #fff;
}

.lines-shell {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}

.line-tabs {
  display: flex;
  gap: 0.4rem;
  padding: 0.7rem;
  border-bottom: 1px solid #e8ece9;
  flex-wrap: wrap;
}

.line-tabs button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.44rem 0.85rem;
  font-size: 0.8rem;
  cursor: pointer;
}

.line-tabs button.active {
  background: #104e3a;
  color: #fff;
  border-color: #104e3a;
}

.line-panel {
  display: none;
}

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

.line-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 330px;
}

.line-hero-copy {
  padding: 1.5rem;
  background: linear-gradient(150deg, #174c39 0%, #256a50 100%);
  color: #e8f7f0;
  display: grid;
  align-content: center;
  gap: 0.6rem;
}

.line-hero-copy h3 {
  margin: 0;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
}

.line-hero-copy p {
  margin: 0;
  color: #d3ece0;
}

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

.line-products {
  padding: 1rem;
}

.image-pairs {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-tile {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  min-height: 360px;
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-tile .label {
  position: absolute;
  inset-inline: 1rem auto;
  bottom: 1rem;
  background: rgba(13, 38, 28, 0.68);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.79rem;
}

.story {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  padding: 1.7rem;
  display: grid;
  align-content: center;
  gap: 0.7rem;
}

.story-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.story-copy p,
.story-copy li {
  color: #395048;
}

.story-copy ul {
  margin: 0;
  padding-inline-start: 1rem;
  display: grid;
  gap: 0.4rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}

.metric h3 {
  margin: 0;
  color: var(--brand);
  font-size: clamp(1.9rem, 2.7vw, 2.5rem);
}

.metric p {
  margin: 0.35rem 0 0;
  color: #445a53;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.time-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}

.time-card h4 {
  margin: 0;
  font-size: 1.45rem;
}

.time-card p {
  margin: 0.4rem 0;
  color: #4a5f58;
}

.time-card span {
  color: #0f5a42;
  font-size: 0.82rem;
  font-weight: 700;
}

.buy-flow {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.bundle-card,
.quick-checkout {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}

.bundle-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bundle-card .pack {
  border-radius: 14px;
  overflow: hidden;
}

.bundle-card .copy h3 {
  margin: 0;
  font-size: 2rem;
}

.bundle-card .copy p {
  margin: 0.5rem 0;
  color: #4a5f58;
}

.bundle-card .copy .price-row strong {
  font-size: 1.25rem;
}

.quick-checkout h3 {
  margin: 0;
  font-size: 2rem;
}

.quick-checkout p {
  color: #4a5f58;
  margin: 0.45rem 0 0.7rem;
}

.newsletter {
  background: linear-gradient(155deg, #0f5a42 0%, #1c7256 100%);
  border-radius: 22px;
  color: #edf8f3;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.newsletter h2 {
  margin: 0;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
}

.newsletter p {
  margin: 0.45rem 0 0;
  color: #d4ece1;
}

.newsletter form {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.newsletter input {
  min-width: 260px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(10, 45, 33, 0.6);
  color: #fff;
  padding: 0.7rem 1rem;
}

.newsletter input::placeholder {
  color: #d9ece4;
}

.newsletter button {
  border-radius: 999px;
  border: 0;
  background: #f2dfb5;
  color: #1b342a;
  padding: 0.7rem 1.15rem;
  font-weight: 700;
  cursor: pointer;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 1rem;
}

.footer-brand h3 {
  margin: 0;
  font-size: 2rem;
  color: var(--brand);
}

.footer-brand p {
  margin: 0.55rem 0;
  color: #496058;
}

.footer-col h4 {
  margin: 0;
  font-size: 1.3rem;
}

.footer-col a,
.footer-col p {
  display: block;
  margin-top: 0.45rem;
  color: #4f645d;
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 1.2rem;
  padding: 0.75rem 0 2rem;
  border-top: 1px solid #e0e6e2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: #667a73;
  font-size: 0.82rem;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(92vw, 410px);
  height: 100vh;
  background: #fff;
  z-index: 80;
  transform: translateX(100%);
  transition: transform 260ms ease;
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

body.rtl .cart-drawer {
  right: auto;
  left: 0;
  transform: translateX(-100%);
  border-left: 0;
  border-right: 1px solid var(--line);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-head {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-head h3 {
  margin: 0;
  font-size: 2rem;
}

.icon-btn {
  border: 1px solid var(--line);
  background: #fff;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.cart-list {
  overflow: auto;
  padding: 0.8rem;
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 0.65rem;
  border: 1px solid #e5ebe8;
  border-radius: 12px;
  padding: 0.5rem;
}

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

.cart-item h4 {
  margin: 0;
  font-size: 1.05rem;
}

.cart-item p {
  margin: 0.2rem 0;
  color: #586d67;
  font-size: 0.82rem;
}

.qty {
  display: inline-flex;
  border: 1px solid #d7dfdb;
  border-radius: 999px;
  overflow: hidden;
}

.qty button {
  border: 0;
  background: #fff;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.qty span {
  min-width: 24px;
  display: grid;
  place-items: center;
  font-size: 0.76rem;
}

.remove-btn {
  border: 0;
  background: transparent;
  color: #6c7d77;
  font-size: 0.75rem;
  cursor: pointer;
}

.cart-foot {
  border-top: 1px solid var(--line);
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
}

.sum-line {
  display: flex;
  justify-content: space-between;
  color: #3e544d;
}

.cart-foot .btn {
  width: 100%;
}

.checkout-page {
  padding: 1.6rem 0 3rem;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.checkout-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}

.checkout-card h1,
.checkout-card h2 {
  margin: 0 0 0.8rem;
}

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

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

label {
  font-size: 0.82rem;
  color: #4b6159;
  display: block;
  margin-bottom: 0.22rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8dfdc;
  border-radius: 10px;
  padding: 0.62rem 0.68rem;
  font-family: inherit;
}

.payment-list {
  display: grid;
  gap: 0.45rem;
}

.payment-option {
  border: 1px solid #d9dfdc;
  border-radius: 10px;
  padding: 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.55rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ecefec;
}

.order-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
}

.order-item h4 {
  margin: 0;
  font-size: 1rem;
}

.order-item p {
  margin: 0.2rem 0;
  color: #5d736c;
  font-size: 0.8rem;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  padding: 0.72rem 0.95rem;
  border-radius: 12px;
  background: #113e2f;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

body.rtl .toast {
  right: auto;
  left: 1rem;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.hidden {
  display: none !important;
}

@media (max-width: 1150px) {
  .product-strip,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .line-hero,
  .story,
  .bundle-card,
  .buy-flow,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .hero-slide {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 360px;
  }

  .metrics,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .image-pairs {
    grid-template-columns: 1fr;
  }

  .image-tile {
    min-height: 280px;
  }
}

@media (max-width: 900px) {
  .header-main {
    grid-template-columns: auto 1fr auto;
  }

  .menu-btn {
    display: inline-block;
  }

  .primary-nav {
    display: none;
  }

  .mega {
    display: none;
  }

  .brand-logo {
    justify-self: start;
  }

  .header-tools {
    gap: 0.38rem;
  }

  .lang-select {
    min-width: 86px;
    padding-inline: 0.5rem;
  }

  .tool-btn {
    padding: 0.45rem 0.58rem;
  }

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

  .metrics,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .newsletter input {
    min-width: 100%;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
