:root {
  --pst-bg: #efede8;
  --pst-surface: rgba(255, 250, 242, 0.92);
  --pst-green: #4e8b7b;
  --pst-green-dark: #3d7063;
  --pst-gold: #9b7a1f;
  --pst-text: #28453d;
  --pst-muted: #6f7b73;
  --pst-white: #ffffff;

  --container: 1580px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);

  --header-pad-y: 12px;
  --hero-min-h: 350px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--pst-bg);
  color: var(--pst-text);
  font-family: "Inter", sans-serif;
}


.hero-img {
  width: auto;
  height: 50vh;
  object-fit: contain;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(100% - 26px, var(--container));
  margin-inline: auto;
}

/* HEADER */
.topbar {
  position: relative;
  z-index: 99999;
  background: #e9e5df;
  border-top: 4px solid var(--pst-gold);
  border-bottom: 2px solid rgba(155, 122, 31, 0.35);
}

.topbar-inner {
  display: grid;
  grid-template-columns: 150px 1fr 260px;
  align-items: center;
  gap: 20px;
  padding: var(--header-pad-y) 0;
  min-height: 120px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.brand-logo {
  width: 100px;
  max-width: 100%;
  border: 2px solid rgba(78, 139, 123, 0.7);
  background: #f9f9f7;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.nav-btn {
  min-width: 130px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 3px solid var(--pst-gold);
  background: var(--pst-green);
  color: var(--pst-white);
  text-align: center;
  font-size: 1rem;
  line-height: 0.5;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.nav-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.nav-btn--primary {
 
  font-size: 1.05rem;
}

.top-note {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-note p {
  margin: 0;
  color: var(--pst-green);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.15rem, 1.4vw, 1.8rem);
  line-height: 1.25;
  text-align: left;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--pst-green);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  font-size: 1.4rem;
  cursor: pointer;

}

.mobile-menu {
  display: none;
  padding: 0 16px 16px;
  background: #e9e5df;
  z-index: 999999;
  position: relative;
}

.mobile-menu.open {
  display: grid;
  gap: 10px;

}

.mobile-link {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--pst-green);
  color: white;
  border: 2px solid var(--pst-gold);
  text-align: center;
}

/* HERO */
.hero {
  position: relative;
  min-height: var(--hero-min-h);
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("images/hero-farm.jpg");
  background-size: cover;
  background-position: center center;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(255,255,255,0.04)),
    linear-gradient(to right, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: var(--hero-min-h);
  max-height: 470px;
  padding-top: 20px;
  padding-bottom: 56px;

  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px);
  grid-template-rows: auto 1fr;
  gap: 24px;
  align-items: start;
}

.hero-badge {
  justify-self: start;
  align-self: start;
  background: #6eaace;
  border: solid 2px rgba(78, 139, 123, 0.7);
  color: #fff;
  padding: 8px 14px;
  border-radius: 12px;
  font-family: "Playfair Display", serif;
  font-size: 0.8rem;
  max-width: max-content;
  backdrop-filter: blur(2px);
}

.hero-commitment {
  justify-self: end;
  align-self: start;
  background: rgba(247, 239, 230, 0.92);
  color: var(--pst-green-dark);
  border-radius: 16px;
  padding: 18px 18px;
  box-shadow: var(--shadow-soft);
  max-width: 100%;
}

.hero-commitment p {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  line-height: 1.15;
}


.hero-text {
  grid-column: 1 / -1;
  align-self: center;
  text-align: center;
   padding: 10px 16px 300px;
   margin-top: 0px;
 
}

.hero-kicker {
  margin: 0 0 22px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  color: rgba(92, 125, 85, 0.95);
  font-size: clamp(2rem, 3.1vw, 4.3rem);
  text-shadow: 0 2px 10px rgba(255,255,255,0.35);
}

.hero-title {
  margin: 0 auto;
  max-width: 1500px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  color: rgba(92, 125, 85, 0.96);
  font-size: clamp(1rem, 3vw, 3.9rem);
  line-height: 1.08;
  text-shadow: 0 2px 12px rgba(255,255,255,0.35);
}




.floating-ads-stack {
  position: absolute;
  left: 100px;
  top: 400px;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: flex-end;
}

.floating-product-ad {
  display: block;
  width: clamp(90px, 20vw, 250px);
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  margin: 0;
  line-height: 0;
}

.floating-product-ad img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

@media (orientation: portrait) and (max-width: 480px) {
  .floating-ads-stack {
    position: absolute;
    left: 20px;
    right: auto;
    top: 420px;
    bottom: auto;
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 10px;
    row-gap: 20px;
    align-items: start;
    align-content: start;
    justify-items: start;
  }

  .floating-product-ad {
    width: 90%;
  }
}




@media (orientation: portrait) and (min-width: 481px) and (max-width: 1249px) {
 .floating-ads-stack {
    position: absolute;
    left: 140px;
    right: auto;
    top: 400px;
    bottom: auto;
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 10px;
    row-gap: 20px;
    align-items: start;
    align-content: start;
    justify-items: start;
  }

  .floating-product-ad {
    width: 50%;
  }
 
}









@media only screen 
  and (max-device-width: 898px)
  and (orientation: landscape)
  and (-webkit-min-device-pixel-ratio: 2) {
  .floating-ads-stack {
    left: 100px;
    right: auto;
    top: 400px;
    bottom: auto;
      display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 130px;
    row-gap: 20px;
    align-items: start;
    align-content: start;
    justify-items: start;
  }

  .floating-product-ad img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
  }
   .floating-product-ad {
    width: 60%;
  }
}


@media only screen 
  and (min-device-width: 899px)
  and (max-device-width: 1000px)
  and (orientation: landscape)
  and (-webkit-min-device-pixel-ratio: 2) {

 .floating-ads-stack {
    left: 100px;
    right: auto;
    top: 400px;
    bottom: auto;
      display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 130px;
    row-gap: 20px;
    align-items: start;
    align-content: start;
    justify-items: start;
  }

  .floating-product-ad img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
  }
   .floating-product-ad {
    width: 50%;
  }

}








@media only screen 
  and (min-device-width: 1001px)
  and (max-device-width: 1300px)
  and (orientation: landscape)
  and (-webkit-min-device-pixel-ratio: 2) {

 .floating-ads-stack {
    left: 40px;
    right: auto;
    top: 400px;
    bottom: auto;
      display: grid;
    grid-template-columns: repeat(4, auto);
    column-gap: 30px;
   
    align-items: start;
    align-content: start;
    justify-items: start;
  }

  .floating-product-ad img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
  }
   .floating-product-ad {
    width: 80%;
  }

}











.for-radius {
  position: absolute;
  top: 190px;   /* المسافة من الأسفل */
  right: 70px;    /* المسافة من اليمين */
  z-index: 9999;  /* ليبقى فوق باقي العناصر */
}

.pastura-cart {
  background: #000;
  color: white;
  padding: 12px 15px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
}

.cart-badge {
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  position: absolute;
  top: -5px;
  right: -5px;
}







.nav-dropdown {
  position: relative;
  display: inline-flex;
}

.nav-dropbtn {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0px);
 
  left: 0;
  min-width: 280px;
  background: #f7f2ea;
  border: 1px solid rgba(155, 122, 31, 0.35);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  padding: 8px;
  display: none;
  z-index: 60;
}

.dropdown-menu.open {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--pst-green-dark);
  font-size: 0.96rem;
  line-height: 1.25;
  transition: background 0.18s ease, color 0.18s ease;
}

.dropdown-menu a:hover {
  background: rgba(78, 139, 123, 0.1);
}

/* Desktop hover support */
@media (min-width: 861px) {
  .nav-dropdown:hover .dropdown-menu {
    display: block;
  }
}










.mobile-dropdown {
  display: grid;
  gap: 8px;
}

.mobile-dropbtn {
  border: 2px solid var(--pst-gold);
  cursor: pointer;
  font: inherit;
}

.mobile-submenu {
  display: none;
  gap: 8px;
  padding-left: 10px;
}

.mobile-submenu.open {
  display: grid;
}

.mobile-sublink {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(78, 139, 123, 0.12);
  color: var(--pst-green-dark);
  border: 1px solid rgba(155, 122, 31, 0.25);
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.25;
}











.nav-dropdown--mega .mega-menu {
  min-width: 760px;
  max-width: 900px;
  padding: 14px;
  display: none;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 12px;
}

.nav-dropdown--mega .mega-menu.open {
  display: grid;
}

.nav-dropdown--mega .mega-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 3px 4px;
  border-radius: 12px;
  background: var(--pst-green);
  color: #fff;
  border: 2px solid var(--pst-gold);
  text-align: center;
  font-size: 0.85rem;
  line-height: 0.3;
}

.nav-dropdown--mega .mega-menu a:hover {
  background: var(--pst-green-dark);
}








@media (min-width: 861px) {
  .nav-dropdown--mega:hover .mega-menu {
    display: grid;
  }
}







.hero-footer {
  background: #e9e5df;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-footer-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.hero-footer-copy {
  color: #3f4a45;
  font-size: 0.95rem;
  line-height: 1.3;
}

.hero-footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.social-facebook {
  background: #1877f2;
}

.social-instagram {
  background: #e1306c;
}

.social-youtube {
  background: #ff0000;
}

.social-x {
  background: #111111;
}

.social-linkedin {
  background: #0a66c2;
}

.social-tiktok {
  background: #111111;
}




@media (max-width: 640px) {
  .hero-footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 0 12px;
  }

  .hero-footer-copy {
    font-size: 0.9rem;
  }

  .hero-footer-socials {
    gap: 8px;
  }

  .social-link {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }
}









/* CONTENT */
.content-section {
  padding: 72px 0;
  background: #f6f3ef;
}

.content-section.alt {
  background: #ece8e1;
}

.content-section h3 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2vw, 2.3rem);
  color: var(--pst-green-dark);
}

.content-section p {
  margin: 0;
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #44524c;
}

/* TABLET */
@media (max-width: 1100px) {
  .topbar-inner {
    grid-template-columns: 130px 1fr 220px;
    gap: 16px;
  }

  .nav-btn {
    min-width: 145px;
    padding: 10px 14px;
    font-size: 0.95rem;
  }

  .nav-btn--primary {
    min-width: 170px;
  }

  .hero-content {
    grid-template-columns: 1fr 320px;
  }
}

/* MOBILE / SMALL TABLET */
@media (max-width: 860px) {
  .topbar-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "note note";
    min-height: auto;
    padding: 14px 0;
  }

  .brand {
    grid-area: brand;
  }

  .top-note {
    grid-area: note;
    justify-content: flex-start;
  }

  .top-note p {
    text-align: left;
    font-size: 1.05rem;
    max-width: 420px;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    grid-area: toggle;
  }

  .hero {
    min-height: 520px;
  }

  .hero-content {
    min-height: 520px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 18px;
    padding-top: 16px;
    padding-bottom: 34px;
  }

  .hero-badge {
    font-size: 0.95rem;
  }

  .hero-commitment {
    justify-self: stretch;
    max-width: 100%;
  }
  



  .hero-text {
    grid-column: 1;
    padding: 20px 8px 136px;
  }

  .hero-kicker {
    margin-bottom: 16px;
  }

  .hero-title {
    line-height: 1.12;
  }
}

/* PHONE */
@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .brand-logo {
    width: 110px;
  }

  .top-note p {
    font-size: 0.98rem;
  }

  .hero {
    min-height: 470px;
  }

  .hero-content {
    min-height: 470px;
  }

  .hero-badge {
    padding: 7px 11px;
    font-size: 0.88rem;
  }

  .hero-commitment {
    padding: 14px 14px;
    border-radius: 14px;
  }

  .hero-commitment p {
    font-size: 0.98rem;
  }

  .hero-kicker {
    font-size: clamp(1.6rem, 8vw, 2.4rem);
  }

  .hero-title {
    font-size: clamp(1.8rem, 6.5vw, 3rem);
  }

  .content-section {
    padding: 56px 0;
  }
}



