/** Shopify CDN: Minification failed

Line 238:38 Expected ":"

**/
   /* @media(min-width:768px){
    section[data-device="desktop"]{
      
    }
    section[data-device="phone"]{
      display:none;
    }
   }
   @media(max-width:767px){
    section[data-device="desktop"]{
    display:none;
   }
   section[data-device="phone"]{
    
   }
   } */

.hero__image, .hero__video, .hero__video-poster { 
    filter: none !important;
}
/* =============================================================================
   1. CSS CUSTOM PROPERTIES — Design Tokens
   ============================================================================= */
:root {
  --padding-inline: 40px;
  /* --- Brand Colors --- */
  --color-dark-green:    #2d3d2e;   /* Primary: dark forest green (nav, footer, buttons) */
  --color-mid-green:     #3f5e3e;   /* Hover state, card borders */
  --color-accent-green:  #4a7c4e;   /* Icon circles, USP feature bg */
  --color-light-green:   #e8ede5;   /* Section bg tint */
  --color-cream:         #f5f3ee;   /* Hero / section light bg */
  --color-white:         #ffffff;
  --color-text:          #1a2318;   /* Body text */
  --color-text-muted:    #5a6b59;   /* Secondary text, card body */
  --color-border:        #d4dbd2;   /* Subtle dividers */
  --color-divider-line:  #c0c8be;   /* Card/feature separators */

  /* --- Typography --- */
  --font-heading:   'Playfair Display', Georgia, serif;   /* Display / headings */ 
  --font-label:     'Source Sans 3', Arial, sans-serif;   /* Labels, badges, nav */

  /* --- Font Sizes (fluid-ish) --- */  
  --fs-lg:    1.375rem;   /* 22px */
  --fs-xl:    1.75rem;    /* 28px */ 
  --fs-3xl:   2.875rem;   /* 46px */
  --fs-4xl:   3.5rem;     /* 56px */

  /* --- Spacing --- */
  --space-1:  0.25rem;
  --space-2:  0.5rem; 
  
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* --- Layout --- */
  --max-width:         1280px;
  --section-padding-y: var(--space-16);
  --border-radius:     6px;
  --border-radius-lg:  12px;

  /* --- Transitions --- */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;

  /* --- Shadows --- */
  --shadow-card: 0 2px 12px rgba(45, 61, 46, 0.08);
  --shadow-card-hover: 0 6px 24px rgba(45, 61, 46, 0.14);
}


 h1, h2, h3, h4, h5, h6{
  color:var(--color-foreground-heading) !important;
 }
 
 

/* =============================================================================
   3. UTILITIES & SHARED COMPONENTS
   ============================================================================= */

/* Centred max-width wrapper */
.page-width {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Eyebrow / section label */
.section-label {
    /* font-family: var(--font-label); */
    font-size: clamp(15px,0.9vw,18px);
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 0;
    /* opacity: .5; */
}
/* Visually hidden (screen-reader only) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =============================================================================
   4. BUTTONS
   ============================================================================= */

/* Base button — shared properties */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color var(--transition-base),
              color var(--transition-base),
              border-color var(--transition-base),
              transform var(--transition-fast);
  white-space: nowrap;
}

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

/* Primary: dark green fill */
.btn--primary { 
}

.btn--primary:hover,
.btn--primary:focus-visible { 
}

/* Outline: transparent fill, dark border */
.btn--outline { 
}

.btn--outline:hover,
.btn--outline:focus-visible { 
}

/* Light: white fill for dark backgrounds */
.btn--light { 
}

.btn--light:hover,
.btn--light:focus-visible { 
}


/* =============================================================================
   5. ANNOUNCEMENT BAR
   ============================================================================= */

/* .announcement-bar { 
  text-align: center;
  padding-block: var(--space-2);
  position: sticky;        
  top: 0;
  z-index: 100;
}

.announcement-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 24px;
}

.announcement-bar__icon {
  font-size: 14px;
  flex-shrink: 0;
}

.announcement-bar__text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
 
.announcement-bar__link { 
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-bar__link:hover {
  opacity: 0.85;
} */


/* =============================================================================
   6. HERO BANNER
   ============================================================================= */

.hero {
  /* background-color: var(--color-cream); */
  overflow: hidden;
  min-height: 520px;   
}

/* Two-column split layout */
.hero__content-wrap  {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  min-height: inherit;
  /* max-width: var(--max-width); */
  margin-inline: auto;
}
 .hero__content-phone-wrap {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  min-height: inherit;
  /* max-width: var(--max-width); */cc
  margin-inline: auto;
}
.hero__content-phone-wrap::after {
    content: "";
    background: #f9f4e9;
    background: linear-gradient(90deg, #f9f4e9 0%, #f9f4e9 60%, #f9f4e900 100%);
    left: 0;
    position: absolute;
    width: 70%;
    height: 100%;
    top: 0;
}
/* --- Left: Text Column --- */
.hero__content-wrap .hero__text { 
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  position:relative; 
    grid-column: 1 / 15; 
    padding: clamp(30px,7vw,150px) 0 clamp(30px,7vw,150px) var(--padding-inline);
}
.hero__content-phone-wrap .hero__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    position: relative;
    padding: clamp(20px,3vw,50px) 0 clamp(40px,3vw, 50px) var(--padding-inline);
    grid-column: 1 / 6; 
}
.hero__content-phone-wrap .button-secondary{
background-color:#fff;
box-shadow:none;
border-color:var(--button-border-color);
}
.hero__content-phone-wrap .button-secondary:hover{
color:var(--button-border-color);
}
.hero__image-wrap .waveshape {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 1;
    height: 100%; 
    object-fit: cover;
    object-position: left;
}
.hero_content{

    
    position:relative;
    z-index:2;
}
 

.hero__heading {
    font-size: clamp(32px, 5vw, 92px);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 0; 
}
.hero__content-phone-wrap .hero__heading{
  font-weight: 600;
    line-height: 1;
    font-size: clamp(32px, 4.4vw, 85px);
}
.hero__content-wrap  .hero__subtext {
    /* font-size: 20px; */
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 25px; 
    max-width: clamp(400px,60vw,510px);
    font-size: clamp(17px,2vw,20px);
}
.hero__content-phone-wrap  .hero__subtext {
    /* font-size: 20px; */
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 25px;
    max-width: clamp(300px,35.6vw,695px);
    font-size: clamp(15px,1.6vw,28px);
}
/* Button row */
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: var(--space-2);
}

.hero__content-phone-wrap .hero__badges{
  display:none;
}
/* Trust badges row */
.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px; 
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero__badge-icon {
  width: 50px;
  line-height: 1;
}

.hero__badge-text {
    font-size: clamp(13px,2vw,17px);
    font-weight: 500;
    line-height: 1.4; 
}

/* --- Right: Image Column --- */
.hero__content-wrap .hero__image-wrap {
  position: relative;
  overflow: hidden;
 
  position:relative; 
    grid-column: 15 / 21;
    height:100%;
}
.hero__content-phone-wrap .hero__image-wrap {
    
    overflow: hidden; 
    
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  
}

/* Fallback placeholder when no image set */
.hero__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, var(--color-mid-green) 0%, var(--color-accent-green) 100%);
}

 
/* =============================================================================
   7. VALUES / ABOUT INTRO
   ============================================================================= */

.values {
   
    padding-top:  clamp(40px,5vw,var(--padding-top));
    padding-bottom:  clamp(40px,5vw,var(--padding-bottom)) ;
    padding-inline:var(--padding-inline);
}

/* Two-column: text left, cards right */
.values__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: center;
}

/* --- Left: Text --- */
.values__left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.values__heading {
    font-size: clamp(32px,4vw,80px);
    line-height: 105%;
    margin-bottom: 0;
    font-weight: 400;
}

/* Green accent underline bar below heading */
.values__divider {
  width: 48px;
  height: 3px; 
  border-radius: 2px;
background-color:var(--color-foreground);
}
.values__body {
    font-size: clamp(16px,1.2vw,20px);
    line-height: 1.75;
    max-width: 47ch;
    margin: 0;
}

/* --- Right: Cards Row --- */
.values__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
     
}

.values__card {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    /* padding: 50px 20px; */
    padding: clamp(30px,2.5vw,50px) clamp(15px,1.5vw,20px);
    text-align: center; 
    transition: box-shadow var(--transition-base),transform var(--transition-base);
        display: flex;
    flex-direction: column;
    gap: clamp(10px,1.2vw,20px);  
    justify-content: center;
}

.values__card:hover {
  /* box-shadow: var(--shadow-card-hover); */
  transform: translateY(-3px);
}

/* Icon circle */
.values__card-icon { 
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    --size: clamp(80px,6vw,130px);
    width: var(--size); 
    height: var(--size);
    border-radius: 100%;
    border: 1px solid var(--color-border);
    margin-inline: auto;
    background-color: #fff;
    padding: 10px;
}

.values__card-title {
    font-size: clamp(18px,1.6vw,28px);
    font-weight: 500;
    margin-bottom: 0;
    margin-top:0;
}

.values__card-text {
    font-size: clamp(14px,1.1vw,20px);
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: 400;
    margin-top:0;
}

 
.values .swiper-button-prev{
        /* left:0 !important; */
    justify-content: flex-start;
    }
.values .swiper-button-next{
        /* right:0 !important; */
    justify-content: flex-end;
    }
.values .swiper-button-prev,
.values .swiper-button-next{
               font-size: 45px;
            border-radius: 999px;
            color:var(--color-foreground);
    }
.values .swiper-button-prev svg,
.values .swiper-button-next svg{
        display:none;
    }
.values .swiper-button-prev:after, 
.values .swiper-button-next:after {
        content: none;
    }
.values .swiper-wrapper { 
        padding-bottom: 0;
    }
  
/* =============================================================================
   8. PLANT CATEGORIES GRID
   ============================================================================= */

.plant-categories { 
  text-align: center;
    /* padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
    padding-inline:40px; */

     padding-top:  clamp(40px,5vw,var(--padding-top));
    padding-bottom:  clamp(40px,5vw,var(--padding-bottom)) ;
    padding-inline:var(--padding-inline);
}

.plant-categories__heading {
  font-size: clamp(33px,3vw,60px); 
  font-weight:400;
  margin-bottom: 40px;
  margin-top:0;
}

/* 6-column responsive grid */
.plant-categories__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

/* Each category card */
.plant-categories__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

/* Circular image container */
.plant-categories__img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden; 
  transition: transform var(--transition-base), box-shadow var(--transition-base);
    aspect-ratio: 7 / 10;
}

/* .plant-categories__item:hover .plant-categories__img-wrap {
  transform: scale(1.03);
  box-shadow: var(--shadow-card-hover);
} */

.plant-categories__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-base);
}

.plant-categories__item:hover .plant-categories__img {
  transform: scale(1.05);
}

/* Placeholder when no image */
.plant-categories__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-light-green) 0%, var(--color-border) 100%);
}

.plant-categories__name { 

 font-size: clamp(15px,1.2vw,23px);
    
    font-weight: 600;
    text-align: center;
    margin-top: 0;
    line-height: 1.2;
}

/* CTA button centred below grid */
.plant-categories__cta {
  display: flex;
  justify-content: center;
}


/* =============================================================================
   9. WHY CHOOSE US — USP Section
   ============================================================================= */

.usp { 
     padding-top:  clamp(40px,5vw,var(--padding-top));
    padding-bottom:  clamp(40px,5vw,var(--padding-bottom)) ;
    padding-inline:var(--padding-inline);
}

/* Two-column: text left, 2×2 grid right */
.usp__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: center;
}

/* --- Left: Text --- */
.usp__left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.usp__heading {
  font-size: clamp(32px,4vw,80px); 
  line-height: 105%;
  margin:0 0;
    font-weight: 400;
}

/* Green underline accent */
.usp__divider {
  width: 48px;
  height: 3px;
  background-color: var(--color-accent-green);
  border-radius: 2px;
}

.usp__body {

    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 1.75;
    max-width: 47ch; 
  margin:0;
}

/* --- Right: 2×2 Feature Grid --- */
.usp__features {
  display: grid;
  grid-template-columns: 1fr 1fr;  
  overflow: hidden; 
}

.usp__feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding:clamp(30px,2vw,45px) clamp(23px,2vw,45px); 
  border-right: 2px solid rgb(31 48 36 / 30%);
  border-bottom: 2px solid rgb(31 48 36 / 30%) ;
}
.usp__feature:nth-child(odd) {
  padding-left:0;
}
.usp__feature:nth-child(even){
  padding-right:0;
}
/* Remove right border from right-column cells */
.usp__feature:nth-child(2n) {
  border-right: none;
}

/* Remove bottom border from bottom-row cells */
.usp__feature:nth-last-child(-n+2) {
  border-bottom: none;
}

/* Green icon circle */
.usp__feature-icon { 
    display: flex;
    align-items: center;
    justify-content: center;
    --size: clamp(75px,6vw,130px);
    width: var(--size); 
    height: var(--size); 
    min-width: var(--size);
    border-radius: 100%;
    background-color: #174d40; 
    flex-shrink: 0;
    overflow: hidden;
}

.usp__feature-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
 
.usp__feature-title {
    font-size: clamp(21px,1.4vw,32px);
    font-weight: 600;
    margin-bottom: 0;
}
.usp__feature-desc {
    line-height: 1.5;
    margin-top: 0;
    font-size: clamp(16px, 1.2vw, 26px);
    max-width: 350px;
    /* opacity: 0.6; */
}


/* =============================================================================
   10. CTA BANNER
   ============================================================================= */
.call_to_action{

    padding-top:  clamp(40px,5vw,var(--padding-top));
    padding-bottom:  clamp(40px,5vw,var(--padding-bottom)) ;
    padding-inline:var(--padding-inline);
}
.cta-banner { 
    padding-block: 0;
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    padding-right: 40px;
    background-size:cover;
}

/* Decorative pseudo-element: mountain silhouette via clip-path */
/* .cta-banner::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.04);
  clip-path: polygon(0 60%, 15% 40%, 30% 55%, 50% 20%, 65% 45%, 80% 30%, 100% 50%, 100% 100%, 0 100%);
} */

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner__content {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cta-banner__icon {
    background-color: #ffffff1f;
    width: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    height: 100%;
    min-height: -webkit-fill-available;
}

.cta-banner__icon img{

    max-width: 75px;
}
.cta-banner__text {
    font-size: clamp(21px,2.4vw,45px);
    line-height: 1.4;
    margin: 0;
    max-width: clamp(22px,38vw,670px);
    padding: 32px 20px;
}

.cta-banner__btn {
  flex-shrink: 0;
}




.cus_phone_product_list{ 
  padding-inline:var(--padding-inline);
     padding-top:  clamp(45px,4vw,var(--padding-top));
    padding-bottom:  clamp(35px,4vw,var(--padding-bottom)) ;
    .resource-list__carousel slideshow-arrows {
      padding-inline: 0;
    }
    .product-grid__card.product-grid__card{ 
      border: 2px solid #1f302426;
    }
     .product-media-container.media-fit img{
      transition:all 450ms ease;
    }  
    .product-card__content:hover .product-media-container.media-fit img{
      transform:scale(1.05);
    }
    .image-block > img{
      width:25px;
    }
    .section-resource-list__header a.link{

    font-weight: 600;
    }
    .product-grid__card .group-block .group-block-content .group-block .group-block-content{
      flex-direction:row !important;
    }
    .product-grid__card .group-block .group-block-content .group-block .group-block-content .text-block.custom-typography{ 
    max-width: fit-content ;
    }
}
/* =============================================================================
   12. RESPONSIVE BREAKPOINTS
   ============================================================================= */

/* ---------- Tablet: max-width 1024px ---------- */
@media (max-width: 1024px) {
    :root{
      --padding-inline: 50px;
    }
  /* Hero: slight padding reduction */
  .hero__text {
    padding: 40px 0 40px 40px;
    grid-column: 1 / 14;
  }
  .hero__image-wrap { 
    grid-column: 14 / 21; 
}

  /* Values: 2-col grid to stacked */
  .values__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  /* USP: tighten gap */
  .usp__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
  }

  /* Categories: 3 columns */
  .plant-categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  
}

@media (max-width: 999px) {

  .hero__badges { 
    gap: 20px;
    margin-top: 40px;
}
.hero__badge-text {
    font-size: clamp(13px,1.7vw,15px); 
}
.hero__badge-icon {
    width: 45px;
    line-height: 1;
}
.hero__badge { 
    gap: 8px;
}
.usp__feature { 
    flex-direction: column;
    align-items: flex-start;
}
}
/* ---------- Large Mobile: max-width 768px ---------- */
@media (max-width: 768px) {

  :root {
    /* Slightly reduce section padding on mobile */
    --section-padding-y: 48px;
 
        --padding-inline: 20px;
    }
    .plant-categories__item { 
    gap: 7px; 
}
.hero__image-wrap .waveshape{
  display:none;
}
.hero__badge-icon {
   width:35px; 
}
.hero__badge-text {   
}
.hero__badge { 
    gap: 4px;
        flex-direction: column;
        text-align: center;
    
}
  /* Hero: single column, image stacks below */
  .hero__content-wrap {
    grid-template-columns: 1fr;
    display:flex;
    flex-direction:column-reverse;
  }

  .hero__text {
    padding-right: 25px !important;
    order: 1;
  }
.hero__text .waveshape { 
    display: none;
}
  /* Remove diagonal clip on mobile */
  .hero__image-wrap {
    /* clip-path: none; */
    order: 2;
 
    /* max-height: 30vh; */
  }

  .hero__badges {        
    gap: 30px;
    justify-content: space-between;
  }
.hero__content-phone-wrap  .hero__subtext { 
    margin-top: 10px;
    margin-bottom: 15px; 
}
.hero__content-phone-wrap .hero__image-wrap img{

    object-position: center left;
}
  /* Values: single column */
  /* .values,.plant-categories,.usp {
    padding-top: 30px;
    padding-bottom: 40px;
    padding-inline: 5px;
} */
 
 
  .values__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .values__body {
    max-width: none;
  }
.values__card-title { 
    font-size: 18px; 
    margin-top: 0;
}
.values__card-text {
    font-size: 15px; 
    max-width: 260px;
}
.values__card { 
    align-items: center;
}
 
  /* Values cards: 3 → wrap */
  .values__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  /* USP: single column */
  .usp__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .usp__body {
    max-width: none;
  }

  /* Categories: 2 columns on mobile */
  .plant-categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
.cta-banner__content { 
    gap: 10px;
    flex-direction: column;
}
.cta-banner__text { 
    max-width: clamp(100%,38vw,670px);
    padding: 0 0;
}
.cta-banner__icon {
    background-color: #ffffff00; 
}
  /* CTA banner: stack */
.cta-banner__inner {
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

  .cta-banner__btn {
    align-self: stretch;
    text-align: center;
    justify-content: center;
    margin:auto;
  }

.cta-banner { 
    background-size: auto;
}
.usp__feature { 
    border-right: 1px solid #1a231830;
    border-bottom: 1px solid #1a231830;
}
.usp__left, .values__left { 
    gap: 16px;
    align-items: center;
    text-align: center;
}


.hero__content-phone-wrap .hero__text {
     grid-column: 1 / 9;
}
.hero__content-phone-wrap::after { 
    background: linear-gradient(90deg, #f9f4e9 0%, #f9f4e9 65%, #f9f4e900 100%);
     
    width: 90%; 
}
.hero__content-phone-wrap .btn { 
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0em; 
    padding: 9px 13px;  
    
}

.hero__buttons { 
    gap: 8px; 
}

}


/* ---------- Small Mobile: max-width 480px ---------- */
@media (max-width: 480px) {

  .page-width {
    padding-inline: 16px;
  }

  /* Hero heading smaller */
 
.hero__subtext {
    font-size: 17px;
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 100%;
}
  /* Hero buttons stack */
  .hero__buttons {
    flex-direction: row;
  }

  .hero__buttons .btn {
    width: auto;
    justify-content: center;
  }

  /* Badges column on very small screens */
  .hero__badges {
    flex-direction: row;
    gap: 12px;
  }

  /* Values cards single column */
  .values__cards {
    grid-template-columns: 1fr;
  }

  /* USP 2×2 → 1×4 */
  .usp__features {
    grid-template-columns: 1fr 1fr;
    
  }

  /* Remove right border since single column */
  .usp__feature {
    /* border-right: none;
    border-bottom: none; */
    flex-direction:column;

        /* padding-left: 10px !important;
        padding-right: 10px !important;
        padding-top: 15px;
        padding-bottom: 15px; */
        /* align-items:center;
        text-align:center; */

    padding: 23px 20px;
  }
.usp__feature-icon { 
    width: 60px;
    height: 60px;
    min-width: 60px; 
}
  /* Last item loses bottom border */
  .usp__feature:last-child {
    border-bottom: none;
  }

  /* Categories single column */
  .plant-categories__grid {
    grid-template-columns: 1fr 1fr;
  }


  .cta-banner__content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}
.cta-banner__icon {
    background-color: #ffffff00;
}
.cta-banner__icon img {
    max-width: 55px;
}
.cta-banner { 
    padding-right: 0; 
}
.cta-banner__text {
    font-size: 24px;
    line-height: 1.25;
    margin: 0;
    max-width: 100%;
    padding: 15px 0px;
}
}














/*
/// phone custom info section //////
*/
 
  .custom-phone-info{  
     padding-top:  clamp(20px,4vw,var(--padding-top));
    padding-bottom:  clamp(20px,4vw,var(--padding-bottom)) ;
    padding-inline:var(--padding-inline);
  }
  .custom_info_title{
    text-align: center;
    margin-bottom: 35px;
    .info__heading {
        font-size: clamp(25px, 4vw, 45px);
        font-weight: 500;
        line-height: 1.15;
        margin-bottom: 0;
    }

  }
  
.infos{
  /* grid-template-columns: repeat( var(--info_number), minmax(250px, 1fr) ); */
  gap: 8px;

  .info{
    .info-icon{
       img{ 
        position: relative;
        height: 100%;
        width: 100%;
       }
    }
  } 
}
.custom-phone-info{
  .style_01{
    .infos{
      display:grid;
      grid-template-columns: repeat(var(--info_number), 1fr); 
      .info{ 
        width: auto;
        display: flex; 
        align-items: center;
        justify-content: center;
        gap: 10px;
        .info-icon{
          /* width: clamp(30px, 4vw, 60px); */
          height: clamp(30px, 4vw, 60px);
        }
        .info-text{
            line-height: 1.3;
            margin-top: 0;
            margin-bottom: 0;
            font-size: clamp(13px, 2vw, 22px);
            &::first-word{
              font-weight: 600;
            }

        }
      }
    }
  }


  .style_02{
    .infos{

      display:grid;
      grid-template-columns: repeat(var(--info_number), 1fr);
      justify-content: space-between;
      gap: clamp(15px, 4vw, 100px);
      .info{ 
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        flex-direction: column;
        border: 2px solid #1f302426;
        border-radius: 32px;
        padding: 28px 10px;
        text-align: center;
         
        .info-icon{
          /* width: clamp(35px, 5vw, 70px); */
          height: clamp(35px, 5vw, 70px);
        }
        .info-text{
             line-height: 1.2;
              margin-top: 0;
              margin-bottom: 0;
              font-size: clamp(14px,1.4vw,22px);
              font-weight: 600;
            &::first-word{
              font-weight: 600;
            }

        }
      }
    }
  }


  .style_03{
    .infos{
      display:grid;
      grid-template-columns: repeat(var(--info_number), 1fr); 
      gap:0;
      .info{ 
          width: auto;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 10px;
          border: 2px solid #1f302426;
          padding: clamp(15px,1.7vw,32px)  10px;
          border-right:0;

          &:first-child{
            border-top-left-radius: 15px;
            border-bottom-left-radius: 15px;
          }
          &:last-child{
            border-right:2px solid #1f302426;
            border-top-right-radius: 15px;
            border-bottom-right-radius: 15px;
          }

        .info-icon{
          /* width: clamp(30px, 4vw, 60px); */
          height: clamp(30px, 4vw, 60px);
        }
        .info-text{
            line-height: 1.3;
            margin-top: 0;
            margin-bottom: 0;
            font-size: clamp(14px,1.7vw,22px);
            font-weight: 500;
             

        }
      }
    }
  }



  .style_04{
    .infos{
      display:grid;
      grid-template-columns: repeat(calc(var(--info_number)/2), 1fr); 
        gap: 12px;
      .info{  
          width: auto;
          display: flex;
          align-items: center;
          justify-content: center;
          gap: 10px;
          position: relative;
          padding: 20px 10px;
          border-radius: 15px;
          overflow: hidden;
          aspect-ratio: 5 / 3;
          flex-direction: column;
          transition:all 450ms ease;
          text-align:center;
          
          &::after{ 
            content: "";
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgb(26 26 26 / 47%);
            top: 0;
            left: 0;

          }
          &:hover{
            .col_img{
              transform:scale(1.05);
            }
          }

        .col_img{
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            top: 0;
            left: 0;
            transition:all 450ms ease;
        }
        .info-icon{
          /* width: clamp(25px, 4vw, 60px); */
          height: clamp(25px, 4vw, 60px);
            z-index:1;
        }
        .info-text{
            line-height: 1.3;
            margin-top: 0;
            margin-bottom: 0;
            font-size: clamp(11px, 2vw, 22px);
            color: #fff; 
            z-index:1;
            font-weight:600;

        }
      }
    }
  }


}


@media(max-width:768px){

  .custom-phone-info{
    .custom_info_title{ 
      margin-bottom: 18px; 
    }
  }
  .custom-phone-info{ 
  .style_01{
    .infos{

      display: flex;
      justify-content: space-between;
      .info{
        gap: 5px;

        flex-direction: column;
        text-align: center;
        align-items: center;
        .info-icon{
          /* width: clamp(25px, 4vw, 60px); */
          height: clamp(35px, 4vw, 60px);
        }
        .info-text{
            line-height: 1.3;
            margin-top: 0;
            margin-bottom: 0;
            font-size: clamp(12px, 2vw, 22px);
            &::first-word{
              font-weight: 600;
            }

          }
        }
      }
    }
  }


  .custom-phone-info{
  .style_02{
    .infos{

      grid-template-columns: repeat(calc(var(--info_number) / 2), 1fr);
 
      .info{ 
        border-radius: 15px;
        gap: 7px;
        padding: 25px 5px;
        .info-icon{ 
        }
        .info-text{  
          

          }
        }
      }
    }
  }


  .custom-phone-info{ 
  .style_03{
    .infos{

        grid-template-columns: repeat(calc(var(--info_number)/2), 1fr);
 
      .info{ 
        padding-inline: 10px;
        justify-content: flex-start;
        gap:5px;
        &:first-child{
          border-bottom-left-radius: 0;
        }
        &:nth-child(2){
          border-top-right-radius: 15px;
          border-right:2px solid #1f302426;
        }
        &:nth-child(3){
          border-bottom-left-radius: 15px;
          border-top:0;
        }
        &:last-child{
          border-top-right-radius: 0;
          border-top:0;
        }
        .info-icon{ 
            height: 50px; 
          img{
            object-fit: contain;
          }
        }
        .info-text{ 
          /* font-size:13px; */
            &::first-word{ 
            }

          }
        }
      }
    }
  }



  .custom-phone-info{ 
  .style_04{
    .infos{
      gap: 5px; 
      .info{   
        gap: 5px; 
        padding: 8px 8px;
        border-radius: 8px; 
        aspect-ratio: 5 / 4;
       
        .info-icon{ 
        }
        .info-text{  

          }
        }
      }
    }
  }


} 