@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&display=swap");
:root {
  --green: #102b19;
  --green-2: #173923;
  --orange: #ee7623;
  --beige: #f1eadc;
  --cream: #f7f3e9;
  --ink: #183022;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--cream);
  color: var(--ink);
  font-family: "IBM Plex Sans Arabic", Tahoma, Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 82px;
  background: rgba(16, 43, 25, 0.97);
  color: white;
  border-bottom: 1px solid #ffffff1f;
  backdrop-filter: blur(10px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  width: 148px;
}
.header-buy,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: 0.2s ease;
  border-radius: 0;
}
.header-buy {
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 10px 17px;
}
.header-buy img {
  width: 20px;
  height: 20px;
  filter: invert(56%) sepia(95%) saturate(2543%) hue-rotate(345deg)
    brightness(98%) contrast(90%);
}
.header-buy:hover,
.header-buy:active {
  background: var(--orange);
  color: white;
}
.header-buy:hover img,
.header-buy:active img {
  filter: brightness(0) invert(1);
}
.hero {
  background: var(--green);
  color: white;
}
.hero-banner {
  display: block;
  background: #0d2515;
}
.hero-banner img {
  width: 100%;
  height: auto;
}
.hero-copy-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 90px;
  background: var(--green);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 700;
}
.pill {
  display: inline-flex;
  width: max-content;
  border: 1px solid var(--orange);
  border-radius: 999px;
  padding: 7px 16px;
  line-height: 1.2;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
  font-weight: 700;
}
h1 span {
  color: var(--orange);
}
.hero-copy > p:not(.eyebrow) {
  max-width: 700px;
  color: #e7e5da;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}
.primary-button {
  margin-top: 16px;
  min-height: 58px;
  padding: 0 27px;
  background: var(--orange);
  border: 1px solid var(--orange);
  color: white;
}
.primary-button:hover,
.primary-button:active {
  background: #d96117;
  border-color: #d96117;
  transform: translateY(-2px);
}
.facts {
  background: #fdf6ea;
  color: var(--green);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.facts-grid div {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.facts-grid div:nth-child(1) { background: #f5ebdb; }
.facts-grid div:nth-child(2) { background: #fdf6ea; }
.facts-grid div:nth-child(3) { background: #ebe4d9; }
.facts-grid div:nth-child(4) { background: #f7efe4; }
.facts strong {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--orange);
}
.facts span {
  font-size: 0.92rem;
  font-weight: 600;
}
.story {
  padding-block: 110px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10%;
}
.story h2,
.quality h2,
.gift h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin-bottom: 20px;
}
.story h2 { font-weight: 700; }
.quality h2, .gift h2 { font-weight: 700; }
.story-body {
  font-size: 1.06rem;
  line-height: 1.7;
  color: #496052;
  padding-top: 52px;
}
.story-body p {
  margin-bottom: 14px;
}
.quality {
  background: var(--beige);
  padding-block: 100px;
  overflow: hidden;
}
.quality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 9%;
}
.quality-visual {
  position: relative;
}
.quality-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.quality-copy > p:not(.eyebrow),
.gift p {
  color: #496052;
  line-height: 1.7;
  font-size: 1.04rem;
}
.quality ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  border-top: 1px solid #1b3b2632;
}
.quality li {
  padding: 14px 0;
  border-bottom: 1px solid #1b3b2632;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 13px;
}
.feature-icon {
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  background: #ee762316;
  display: grid;
  place-items: center;
}
.feature-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-icon img { width:21px;height:21px;object-fit:contain }
.gift {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding-block: 105px;
}
.gift-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}
.gift-inner > div {
  max-width: 750px;
}
.gift .primary-button {
  flex: none;
}
.gift .eyebrow { color:var(--orange);border-color:var(--orange) }
.gift h2 { font-size:clamp(1.8rem,3.2vw,3.35rem) }
footer {
  background: #0c2113;
  color: #e9e6da;
  padding-top: 78px;
}
footer .shell { width:min(1400px,calc(100% - 40px)) }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1fr;
  gap: 8%;
  padding-bottom: 60px;
}
footer .footer-brand > a > img {
  width: 150px;
}
.footer-brand p {
  width: 100%;
  max-width: none;
  color: #adbaae;
  line-height: 1.65;
  margin-top: 22px;
}
.footer-brand { justify-self:start;width:min(100%,380px) }
footer nav { justify-self:center }
.footer-meta { justify-self:end;width:280px;max-width:100% }
.socials {
  display: flex;
  width: 100%;
  gap: 0;
  flex-wrap: nowrap;
  margin-top: 24px;
  direction: rtl;
  justify-content: space-between;
}
.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  transition: 0.2s;
}
.socials img {
  width: 19px;
  height: 19px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.socials a:hover {
  background: var(--orange);
}
footer h3 {
  color: var(--orange);
  font-size: 0.85rem;
  margin-bottom: 22px;
}
footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
footer nav a {
  color: #d5dbd4;
  white-space: nowrap;
}
footer nav a:hover {
  color: var(--orange);
}
.footer-meta {
  text-align: right;
  direction: rtl;
}
.footer-meta strong { display:block;color:white;font-size:.88rem;margin-top:4px }
.safety-stack { display:flex;flex-direction:column;align-items:flex-start;gap:16px;width:280px;max-width:100% }
.safety-stack .tax-number { width:100% }
.footer-meta .safety-stack > img { margin:0;width:100%;max-width:100%;object-fit:contain;object-position:right center }
.footer-meta .safety-stack .payments { height:auto }
.footer-meta .safety-stack .certificates { height:auto;padding:4px;background:white;filter:none }
.footer-meta p {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  direction: ltr;
  width: max-content;
  margin:5px 0 0;
}
.footer-meta > img {
  margin-top: 24px;
  max-width: 280px;
  filter: brightness(1.15);
}
.copyright {
  border-top: 1px solid #ffffff1a;
  padding: 22px 0 28px;
  color: #8fa092;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.copyright a:hover {
  color: var(--orange);
}
@media (max-width: 1060px) {
  footer .shell { width:min(760px,calc(100% - 40px)) }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-brand,
  footer nav,
  .footer-meta {
    justify-self: stretch;
  }
}
@media (max-width: 780px) {
  .shell {
    width: min(100% - 28px, 620px);
  }
  .site-header {
    height: 68px;
  }
  .logo {
    width: 112px;
  }
  .header-buy {
    font-size: 0.82rem;
    padding: 8px 11px;
    gap: 7px;
  }
  .hero-banner {
    overflow: hidden;
  }
  .hero-banner img {
    width: 100%;
    height: auto;
    min-height: 0;
  }
  .hero-copy-wrap {
    padding-bottom: 65px;
  }
  .hero-copy {
    padding-top: 54px;
  }
  h1 {
    font-size: clamp(1.85rem, 8.8vw, 2.6rem);
    line-height: 1.18;
  }
  .hero-copy .primary-button { min-height:50px;padding:0 20px;font-size:.9rem }
  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }
  .facts .shell {
    width: 100%;
    max-width: none;
  }
  .facts-grid div {
    min-height: 118px;
  }
  .story,
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .story {
    padding-block: 76px;
  }
  .story-body { padding-top:0 }
  .quality {
    padding-block: 72px;
  }
  .quality-copy {
    order: -1;
  }
  .quality-visual {
    margin-inline: 0;
  }
  .gift {
    padding-block: 78px;
  }
  .gift-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  footer .shell { width:min(100% - 28px,620px) }
  .footer-brand, footer nav, .footer-meta { justify-self:stretch }
  .socials { gap:0;justify-content:space-between }
  .socials a { width:clamp(29px,9vw,36px);height:36px }
  .socials img { width:18px;height:18px }
  .safety-stack { width:280px;gap:14px }
  .copyright {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
  }
  .copyright { padding-bottom:28px }
}
@media (max-width: 300px) {
  .site-header {
    height: auto;
  }
  .header-inner {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding-block: 10px;
  }
  .header-buy {
    width: 100%;
    min-width: 0;
  }
  .socials {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px 0;
  }
  .socials a { width:100%;height:34px }
}
@media (max-width: 270px) {
  .shell,
  footer .shell {
    width: calc(100% - 20px);
  }
  .header-buy,
  .hero-copy .primary-button,
  .gift .primary-button {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
  }
  h1 {
    font-size: 1.65rem;
  }
  .pill {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
  .facts-grid {
    grid-template-columns: 1fr;
  }
  .facts-grid div {
    min-height: 100px;
  }
  .story,
  .quality-grid {
    gap: 32px;
  }
  .gift-inner {
    gap: 28px;
  }
  .footer-meta,
  .safety-stack {
    width: 100%;
  }
  .footer-meta p {
    max-width: 100%;
    width: auto;
    overflow-wrap: anywhere;
    letter-spacing: 0.04em;
  }
  .copyright span,
  .copyright a {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
