:root {
  --pst-bg:#F2ffff;
  --pst-surface:#F2ffff;
  --pst-green: #dbdfd1;
  --pst-green-dark: #3d7063;
  --pst-gold: #0e332b;
  --pst-text: #28453d;
  --pst-muted: #6f7b73;
  --pst-white: #F2ffff;

  --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;
}








.pastura-search-section {
  position: relative;
  z-index: 2500;
  margin: 0 auto;
  background: edfbfb;
  padding: 4px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pastura-search-wrap {
  width: min(92vw, 820px);
  min-height: 48px;
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid #949695;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

#searchInput {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 14px;
  font-size: 1rem;
  color: #1b3b31;
  background: #ffffff;
}

#searchInput::placeholder {
  color: #6d7c76;
}

.pastura-search-btn {
  width: 58px;
  border: 0;
  border-left: 1px solid #b7c8c2;
  background: #4e8b7b;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.02rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
}

.pastura-search-btn:hover,
.pastura-search-btn:focus-visible {
  background: #3f7668;
}

.search-results-dropdown {
  width: min(92vw, 820px);
  margin-top: 4px;
  max-height: 420px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #d7dfdb;
  border-radius: 10px;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
  z-index: 2600;
}

.search-autocomplete-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  cursor: pointer;
}

.search-autocomplete-item + .search-autocomplete-item {
  border-top: 1px solid #ecefed;
}

.search-autocomplete-item:hover,
.search-autocomplete-item:focus-visible {
  background: #f3f6f5;
  outline: none;
}

.search-autocomplete-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #d8e4de;
  background: #f7faf8;
}

.search-autocomplete-title {
  color: #1e3f35;
  font-size: 0.95rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .pastura-search-section {
    padding-top: 4px;
    margin-top: 14px;
  }

  .pastura-search-wrap {
    width: 94%;
    min-height: 33px;
  }

  #searchInput {
    font-size: 0.95rem;
    padding: 0 12px;
  }

  .pastura-search-btn {
    width: 54px;
  }

  .search-results-dropdown {
    width: 94%;
    max-height: 52vh;
    border-radius: 10px;
  }
}

























@media (min-width: 900px) {
  .homepage-promo-slot {
    margin-top: 0;
    position: relative;
    

  }
}


.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: #dbdfd1;
  border-top: 2px solid  #4e8b7b;;
  border-bottom: 2px solid  #4e8b7b;;
}

.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: rgb(78, 139, 123);
  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;
}

.nav-auth-shell-slot {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: min(100%, 430px);
  justify-self: end;
  z-index: 99999;
}

.nav-auth-shell-slot #catalog-signin-shell-host {
  width: 100%;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--pst-green);
  color: #0b6604;
  width: 58px;
  height: 48px;
  border-radius: 10px;
  font-size: 3.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: #124c29;
  border: 2px solid var(--pst-gold);
  text-align: center;
}












/* الصورة للشاشات الكبيرة فقط */
.hero-banner-link {
  display: none;
  width: 100%;
}






@media (min-width: 992px) {
.hero-banner-image-1 {
  width: 100%;
  display: block;
  object-fit: cover;
  cursor: pointer;
}
.hero-banner-image-3 {
  display: none;

}
}

@media (max-width: 991px) {
.hero-banner-image-3 {
  width: 100%;
  display: block;
  object-fit: cover;
  cursor: pointer;
  margin-bottom: -40px;
}
.hero-banner-image-1 {
  display: none;
}

}








/* إظهار الصورة على الشاشات الكبيرة */
@media (min-width: 992px) {
  .hero-banner-link {
    display: block;
  }

  .mobile-only {
    display: none;
  }
}















/* HERO */
.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  background: var(--pst-bg);
}

.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));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
 
  max-height: none;
  padding-top: 20px;
  padding-bottom: 22px;

  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 24px;
  align-items: center;
  justify-items: center;
}

.homepage-promo-slot--hero {
  width: 100%;
  max-width: 100%;
  margin: 0;
  z-index: 0;
  grid-column: 2;
  align-self: stretch;
}

.homepage-promo-slot--hero .homepage-promo-slot__frame-wrap {
  height: 100%;
  min-height: 620px;
  border-radius: 22px;
  border: 1px solid rgba(61, 112, 99, 0.16);
  box-shadow: 0 18px 40px rgba(24, 34, 30, 0.14);
}

.homepage-promo-slot--hero .homepage-promo-slot__frame {
  height: 100%;
  min-height: 620px;
}

.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;
  align-self: center;
  text-align: center;
  padding: 10px 16px 18px;
  margin-top: 0px;
}




.hero-kicker {
  margin: 0 0 0px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.05rem, 8.6vw, 3.1rem);
  letter-spacing: 0.01em;
  line-height: 1.04;

  background: linear-gradient(120deg, #1f7a34 0%, #2f9e44 42%, #1d6fd1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  text-shadow: 0 8px 20px rgba(14, 54, 64, 0.2);
}

.hero-kicker .dots {
  background: none;
  -webkit-text-fill-color: white;
  color: white;
}








.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);
}

.why-pastura {
  width: 100%;
  margin: 0;
  padding: -2px 0 4px;
  background: linear-gradient(180deg, #f4f7f0 0%, #f7f1e7 100%);
}

.why-pastura__inner {
  background: rgba(255, 255, 255, 0.62);
 margin-bottom: 5vh;
  padding-bottom: 3vh;
  padding-top: clamp(-4px, 0vw, 8px);
}

.why-pastura__header {
  text-align: center;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.why-pastura__title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 3.8vw, 2.55rem);
  line-height: 1.12;
  color: #295649;
}

.why-pastura__subtitle {
  margin: 10px auto 0;
  max-width: 760px;
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: #4e6d63;
}

.why-pastura__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-pastura__card {
  background: #fffdf8;
  border: 1px solid rgba(78, 139, 123, 0.24);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(34, 53, 45, 0.08);
  padding: 18px 16px 20px;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.why-pastura__card:hover,
.why-pastura__card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 16px 28px rgba(26, 49, 41, 0.16);
}

.why-pastura__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  background: #edf4ea;
  border: 1px solid rgba(78, 139, 123, 0.24);
}

.why-pastura__card-title {
  margin: 0;
  color: #24473d;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.05rem, 1.4vw, 1.26rem);
  line-height: 1.25;
}

.why-pastura__card-text {
  margin: 10px 0 0;
  color: #597167;
  font-size: 0.96rem;
  line-height: 1.58;
}

@media (max-width: 1100px) {
  .why-pastura__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .why-pastura {
    padding: 16px 0 20px;
  }

  .why-pastura__inner {
    border-radius: 16px;
    padding: 16px 14px;
  }

  .why-pastura__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-pastura__card {
    border-radius: 16px;
  }
}




.floating-ads-stack {
  position: absolute;
  left: 100px;
  top: 400px;
  z-index: 999999;
  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;
 
}


@media (min-width: 861px) {
.floating-product-ad1 img {
  display: block;
  width: 40%;
  height: auto;
  margin-top: -260px;
  margin-left: -40px;
  
}
.floating-product-ad2 img {
  display: none;
}
}
@media (orientation: portrait) and (max-width: 860px) {

.floating-product-ad2 img {
  display: block;
  width: 70%;
  height: auto;
  margin-top: -190px;
  z-index: 999999;
  
}
.floating-product-ad1 img {
  display: none;
}
}



@media (orientation: landscape) and (max-width: 860px) {

.floating-product-ad2 img {
  display: block;
  width: 70%;
  height: auto;
  margin-left: -200px;
  margin-top: -270px;
  z-index: 999999;
  
}
.floating-product-ad1 img {
  display: none;
}
}










.homepage-promo-slot {
  display: block;
  clear: both;
  width: min(100% - 26px, var(--container));
  margin: 16px auto 40px;
  position: relative;
  z-index: 2;
}

.homepage-promo-slot__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.homepage-promo-slot__frame-wrap {
  border-radius: 22px;
  overflow: visible;
  height: auto;
  min-height: auto;
  max-height: none;
  box-shadow: 0 18px 40px rgba(24, 34, 30, 0.14);
 
  background: #f5f1ea;
}

.homepage-promo-slot__frame {
  display: block;
  width: 100%;
  min-height: auto;
  height: auto;
  max-height: none;
  border: 0;
  background: transparent;
}

/* Ensure promo iframe never becomes a nested scroll area on any breakpoint. */
.homepage-promo-slot__frame {
  overflow: visible !important;
  height: auto;
  min-height: auto;
  max-height: none;
}



/* Legacy four-image homepage block retained for rollback. */

@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%;
  }

}













.why-pastura-title{
  text-align:center;
  font-family:"Playfair Display", serif;
  font-style:italic;
  font-size:clamp(2rem,4vw,3.4rem);
  color:#0c5a4c;
  line-height:1.2;
}

.why-pastura-title span{
  display:block;
  margin-top:10px;
  font-family:system-ui,sans-serif;
  font-style:normal;
  font-weight:500;
  font-size:clamp(1rem,1.6vw,1.25rem);
  color:#35584d;
}














@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%;
  }

}


.service-notice-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  position: static;
  left: auto;
  right: auto;
  transform: none;
  text-align: center;
  padding-inline: 0;
}

.service-notice-card {
  max-width: 1100px;
  width: min(1100px, 94vw);
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #d8e2de;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(23, 40, 35, 0.08);
  padding: 20px 20px 18px;
  text-align: center;
  position: static;
  left: auto;
  right: auto;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-notice-section .floating-product-ad1,
.service-notice-section .floating-product-ad2 {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  float: none;
  width: 50%;
  line-height: 0;
  text-align: center;
}

.service-notice-section .floating-product-ad1 img,
.service-notice-section .floating-product-ad2 img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid #e1e8e5;
}

.service-notice-section .floating-product-ad1 {
  display: block;
}

.service-notice-section .floating-product-ad2 {
  display: none;
}

.service-notice-text {
  margin: 14px 0 0;
  color: #6e1c08;
  font-size: 1rem;
  line-height: 1.62;
  font-weight: 600;
  border: 1px solid #086e4c;
  border-radius: 8px;
  padding: 10px;
}










@media (max-width: 860px) {
  .service-notice-section {
    margin: 12px 0 10px;
  }

  .service-notice-card {
    width: min(1100px, 94vw);
    padding: 14px 12px 14px;
    border-radius: 12px;
  }

  .service-notice-section .floating-product-ad1 {
    display: none;
  }

  .service-notice-section .floating-product-ad2 {
    display: block;
  }

  .service-notice-text {
    margin-top: 12px;
    font-size: 0.94rem;
    line-height: 1.55;
}

}






.homepage-promo-slot {
  display: block;
  clear: both;
  width: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
  position: relative;
  z-index: 2;
}



@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .hero-text {
    grid-column: 1;
    text-align: center;
    padding: 10px 16px 0;
  }

  .homepage-promo-slot--hero {
    grid-column: 1;
  }

  .homepage-promo-slot--hero .homepage-promo-slot__frame-wrap {
    min-height: 760px;
  }

  .homepage-promo-slot--hero .homepage-promo-slot__frame {
    min-height: 760px;
  }

  .homepage-promo-slot {
    margin: 16px 0 34px;
  }

}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
  }

  .homepage-promo-slot--hero .homepage-promo-slot__frame-wrap {
    min-height: 980px;
  }

  .homepage-promo-slot--hero .homepage-promo-slot__frame {
    min-height: 980px;
  }

  .homepage-promo-slot {
    width: 100%;
    margin: 16px 0 24px;
  }

  .homepage-promo-slot__frame-wrap {
    border-radius: 18px;
  }

}

@media (max-width: 900px) and (orientation: landscape) {
  .homepage-promo-slot {
    margin: 12px 0 24px;
  }

  .homepage-promo-slot__frame-wrap {
    border-radius: 14px;
  }

}





@media (orientation: portrait) and (max-width: 991px) {
.for-radius {
 top: 78px !important;
}
}

@media (orientation: landscape) and (max-width: 991px) {
.for-radius {
 top: 90px !important;
 right: 160px !important;

}
}



.for-radius {
  position: absolute;
  top: 130px;
  right: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pastura-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--pst-accent-dark);
  border: 1px solid rgba(78, 139, 123, 0.24);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.35rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 8px 18px rgba(32, 94, 76, 0.08);
}

.pastura-cart:hover,
.pastura-cart:focus-visible {
  background: rgba(78, 139, 123, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 0.72rem;
  background: var(--pst-accent);
  color: var(--pst-white);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(22, 73, 57, 0.15);
}







.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: #838f65;
  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 {
  
    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;
  }
}






.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }
}









@media (max-width: 1100px) and (orientation: landscape) {

 .topbar-inner {
height: 130px !important;
  }
 }

@media (max-width: 900px) and (orientation: landscape) {
  .topbar-inner {
    grid-template-columns: minmax(140px, 220px) minmax(0, 1fr) auto;
    grid-template-areas: "brand auth toggle";
    align-items: center;
    gap: 12px 10px;
    min-height: 90px;
    padding: 12px 0;
  }

  .brand {
    grid-area: brand;
  }

  .nav-auth-shell-slot {
    grid-area: auth;
    justify-self: center;
    justify-content: center;
    width: min(100%, 280px);
    margin: 0;
    max-width: 280px;
  }

  .menu-toggle {
    grid-area: toggle;
    justify-self: end;
  }
}

/* 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;
  }

  .nav-auth-shell-slot {
    grid-area: note;
    justify-self: start;
    justify-content: flex-start;
    width: min(100%, 360px);
    margin-top: 8px;
  }

  .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: auto;
  }

  .hero-content {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 18px;
    padding-top: 16px;
    padding-bottom: 18px;
    justify-items: center;
  }

  .hero-badge {
    font-size: 0.95rem;
   
  }

  .hero-commitment {
    justify-self: stretch;
    max-width: 100%;
  }
  



  .hero-text {
    grid-column: 1;
    width: min(100%, 760px);
    padding: 10px 10px 18px;
    display: grid;
    gap: 12px;
    align-content: center;
    justify-items: center;
    text-align: center;
  }

  .homepage-promo-slot--hero {
    grid-column: 2;
  }

  .homepage-promo-slot--hero .homepage-promo-slot__frame-wrap {
    min-height: 640px;
  }

  .homepage-promo-slot--hero .homepage-promo-slot__frame {
    min-height: 640px;
  }

  .hero-kicker {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 700;
    font-size: clamp(2.05rem, 8.6vw, 3.1rem);
    letter-spacing: 0.01em;
    line-height: 1.04;
    background: linear-gradient(120deg, #1f7a34 0%, #2f9e44 42%, #1d6fd1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 8px 20px rgba(14, 54, 64, 0.2);
  }

  .hero-title {
    margin: 0 auto;
    max-width: min(92%, 620px);
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(1.02rem, 3.25vw, 1.26rem);
    line-height: 1.24;
    letter-spacing: 0.015em;
    color: rgba(27, 105, 95, 0.94);
    padding: 0;
    border: 0;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
}

/* PHONE */
@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .brand-logo {
    width: 100px !important;
    height: auto !important;
  }

  .top-note p {
    font-size: 0.98rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
    gap: 0px;
    justify-items: center;
    padding-bottom: 0;
  }

  .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 {
    margin: 0;
    font-size: clamp(1.72rem, 8.6vw, 2.46rem);
    line-height: 1.05;
  }

  .hero-title {
    margin: 0;
    max-width: min(90%, 540px);
    font-size: clamp(0.96rem, 4.1vw, 1.12rem);
    padding: 0;
    line-height: 1.22;
  }

  .hero-text {
    padding: 8px 8px 18px;
    gap: 10px;
    justify-items: center;
    text-align: center;
  }

  .homepage-promo-slot--hero {
    grid-column: 1;
  }

  .content-section {
    padding: 56px 0;
  }
}



