        :root {
            --primary-green: #3D6E66;
            --light-green: #4D8279;
            --accent-coral: #F06A55;
            --accent-coral-hover: #D95642;
            --bg-cream: #FAF8F5;
            --text-dark: #2A3633;
            --text-muted: #606E6B;
            --border-color: #E6E2DC;
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Plus Jakarta Sans', sans-serif;
        }

        /* * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-sans);
            background-color: #ffffff;
            color: var(--text-dark);
            line-height: 1.5;
            overflow-x: hidden;
        } */

        /* --- Top Announcement Bar --- */
        .announcement-bar {
            /*background-color: var(--primary-green);*/
            color: #ffffff;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 8px 20px;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            /*border-bottom: 1px solid rgba(255,255,255,0.1);*/
        }
      body  #header-secondary-outer{
         background-color: var(--primary-green) !important;
      }

        .announcement-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

       

        /* --- Hero Section --- */
        .hero {
        background-color: var(--bg-cream);
        display: flex;
        align-items: center;
        padding: 40px 0px 60px 0px;
        position: relative;
        min-height: 500px;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url(https://jgseeds.com/wp-content/uploads/2026/07/bannermage.png);
        background-position: bottom center;
        }

        .hero-content {
                flex: 1;
                max-width: 750px;
                z-index: 2;
                padding: 10px 70px;
        }

        .hero-content h1 {
            font-family: var(--font-serif);
            font-size: 44px;
            color: var(--primary-green);
            line-height: 1.15;
            font-weight: 500;
            margin-bottom: 15px;
        }

        .hero-content p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .hero-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 24px;
            font-size: 13px;
            font-weight: 600;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-solid {
  background: linear-gradient(to right, #1e463a 50%, #e96b56 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: #ffffff;
  border: 2px solid #e96b56;
  padding: 12px 28px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease-out;
}

.btn-solid:hover {
  background-position: left bottom;
  border-color: #1e463a;
color: #ffffff;
}

        /*.btn-solid {*/
        /*    background-color: var(--accent-coral);*/
        /*    color: white;*/
        /*    border: none;*/
        /*}*/

        /*.btn-solid:hover {*/
        /*    background-color: var(--accent-coral-hover);*/
        /*}*/

        .btn-outline {
            background-color: transparent;
            color: var(--primary-green);
            border: 1px solid var(--primary-green);
              padding: 12px 28px;
              font-weight: 600;
              cursor: pointer;
              position: relative;
              overflow: hidden;
              z-index: 1;
              transition: color 0.4s ease;
        }
        .btn-outline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%; /* Slightly wider than the button to ensure full coverage */
  height: 0;
  /* Aspect ratio trick to make a perfect circle */
  padding-bottom: 120%; 
  background-color:var(--primary-green);
  border-radius: 50%;
  z-index: -1;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s ease-out;
}

        .btn-outline:hover {
             color: #ffffff;
        }
        .btn-outline:hover::before {
         transform: translate(-50%, -50%) scale(1);
        }

        .hero-image-container {
            position: absolute;
            right: 0;
            bottom: 0;
            top: 0;
            width: 50%;
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
        }

        .hero-image-container img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
            object-position: bottom right;
        }

        /* --- Trust Badges --- */
        .trust-badges {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            background-color: var(--bg-cream);
        }

        .badge-item {
            padding: 20px 15px;
            text-align: center;
            border-right: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .badge-item:last-child {
            border-right: none;
        }

        .badge-item i {
            font-size: 20px;
            color: var(--primary-green);
            margin-bottom: 10px;
        }

        .badge-item h4 {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }

        .badge-item p {
            font-size: 11px;
            color: var(--text-muted);
            line-height: 1.4;
            max-width: 160px;
        }

        /* --- Section Shared Utilities --- */
        .section-container {
            padding: 0 70px;
            max-width: 2000px;
            margin: 40px auto;
        }

        .section-header-decoration {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .section-header-decoration .line {
            height: 1px;
            width: 60px;
            background-color: var(--accent-coral);
            position: relative;
        }
        
        .section-header-decoration .line::after {
            content: '';
            position: absolute;
            width: 4px;
            height: 4px;
            background-color: var(--accent-coral);
            border-radius: 50%;
            top: -1.5px;
        }
        .section-header-decoration .line-left::after { right: 0; }
        .section-header-decoration .line-right::after { left: 0; }

        .section-title {
            font-family: var(--font-serif);
            font-size: 26px;
            color: var(--primary-green);
            font-weight: 500;
            text-align: center;
        }

        /* --- Shop By Category --- */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
        }

        .category-card {
            background-color: var(--bg-cream);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 25px 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .category-card:hover {
            border-color: var(--accent-coral);
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            transform: translateY(-2px);
        }

        .category-icon-wrapper {
            font-size: 28px;
            color: var(--primary-green);
            margin-bottom: 15px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .category-card span {
            font-size: 12px;
            font-weight: 600;
            color: var(--text-dark);
        }

        /* --- Why JG Seeds --- */
        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .why-us-card {
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 25px 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .why-icon-circle {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: var(--primary-green);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .why-us-card h3 {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .why-us-card p {
            font-size: 12px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* --- Best Sellers --- */
        .best-sellers-top {
                display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 25px auto;
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
        }
       .best-seller-products-jg .woocommerce.product-card-wishlist a.add_to_wishlist.single_add_to_wishlist span,.best-seller-products-jg .woocommerce.product-card-wishlist .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a {
    display: none;
}
.best-seller-products-jg .product-card
a.add_to_wishlist.single_add_to_wishlist {
        position: absolute;
    right: 5px;
    background: #fff;
    border-radius: 25px;
    text-align: center;
    padding: 5px 4px 5px 7px;
    z-index: 10;
}
.best-seller-products-jg .product-card a.add_to_wishlist.single_add_to_wishlist svg,.best-seller-products-jg .woocommerce.product-card-wishlist .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse svg.yith-wcwl-icon-svg {
    color: #e35c4f;
}
.best-seller-products-jg .woocommerce.product-card-wishlist .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse .feedback{
    font-size:0px;
}
.best-seller-products-jg .woocommerce.product-card-wishlist a.add_to_wishlist.single_add_to_wishlist span, .best-seller-products-jg .woocommerce.product-card-wishlist .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse {
    position: absolute;
    right: 0;
     background: #fff;
    border-radius: 25px;
    text-align: center;
    padding: 5px 4px 5px 7px;
    z-index: 10;
}
.best-seller-products-jg .product-card a.add_to_wishlist.single_add_to_wishlist:hover svg{
    fill:#e35c4f;
}
        .best-sellers-top h2 {
            font-family: var(--font-serif);
            font-size: 26px;
            color: var(--primary-green);
            font-weight: 500;
        }

        .view-all-link {
            font-size: 12px;
            font-weight: 700;
            color: var(--accent-coral);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .view-all-link:hover {
            text-decoration: underline;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .product-card {
            background-color: var(--bg-cream);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .wishlist-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: transparent;
            border: none;
            color: var(--accent-coral);
            font-size: 18px;
            cursor: pointer;
            z-index: 5;
        }

        .product-image-wrapper {
    padding: 20px 20px 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    mix-blend-mode: multiply;
    min-height: 300px;
    max-height: 300px;
        }

        .product-image-wrapper img {
                width: 100%;
                object-fit: contain;
                height: 260px !important;
        }

        .product-info {
            padding: 15px;
            background-color: #ffffff;
            border-top: 1px solid var(--border-color);
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-title-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4px;
        }

        .product-name {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .product-tag {
            font-size: 10px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 12px;
            text-transform: uppercase;
        }

        .tag-hybrid { background-color: #E6F3F0; color: #2D6A59; }
        .tag-sativa { background-color: #FEF3E6; color: #B36B22; }

        .product-desc {
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            color: #F4A261;
            margin-bottom: 12px;
        }

        .rating-count {
            color: var(--text-muted);
            margin-left: 2px;
        }

        .product-price {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-dark);
            margin-top: auto;
            margin-bottom: 15px;
        }

        /*.btn-view-options {*/
        /*    width: 100%;*/
        /*    background-color: var(--accent-coral);*/
        /*    color: white;*/
        /*    border: none;*/
        /*    padding: 10px;*/
        /*    font-size: 12px;*/
        /*    font-weight: 600;*/
        /*    border-radius: 4px;*/
        /*    cursor: pointer;*/
        /*    text-align: center;*/
        /*    transition: background-color 0.2s;*/
        /*}*/

        /*.btn-view-options:hover {*/
        /*    background-color: var(--accent-coral-hover);*/
        /*}*/
        .btn-view-options {
  background: transparent;
  color: #1e463a;
  border: 2px solid #1e463a;
  padding: 12px 28px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  transition: color 0.4s ease;
}

/* Top Half Shutter */
.btn-view-options::before,
/* Bottom Half Shutter */
.btn-view-options::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e463a;
  z-index: -1;
  transition: transform 0.3s ease-in-out;
  transform: scaleY(0);
}

.btn-view-options::before {
  top: 0;
  transform-origin: top;
}btn-view-options

.btn-view-options::after {
  bottom: 0;
  transform-origin: bottom;
}

/* Hover States */
.btn-view-options:hover {
  color: #ffffff;
}

.btn-view-options:hover::before,
.btn-view-options:hover::after {
  transform: scaleY(1);
}

        /* --- Banner Section (California Rooted) --- */
        .banner-section {
            background-color: var(--bg-cream);
            margin-top: 40px;
            display: flex;
            align-items: center;
            overflow: hidden;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .banner-content {
            flex: 1;
            padding: 60px 80px;
            max-width: 500px;
        }

        .banner-content h2 {
            font-family: var(--font-serif);
            font-size: 30px;
            color: var(--primary-green);
            line-height: 1.2;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .banner-content p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .banner-image-container {
            flex: 1.2;
            height: 380px;
            position: relative;
        }

        .banner-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }

        /* --- Learn Section --- */
       section.banner-section {
    background-image: url('https://jgseeds.com/wp-content/uploads/2026/07/jgseeds-packet-scaled.png');
    background-size: cover;
    background-position: left bottom;
    background-repeat: no-repeat;
}

        /* --- Responsive adjust --- */
        @media (max-width: 1024px) {
            .trust-badges { grid-template-columns: repeat(3, 1fr); }
            .trust-badges .badge-item:nth-child(4), .trust-badges .badge-item:nth-child(5) { border: none; align-items:center; }
            .category-grid { grid-template-columns: repeat(2, 1fr); }
            .products-grid { grid-template-columns: repeat(2, 1fr); }
            .why-us-grid { grid-template-columns: repeat(2, 1fr); }
            .learn-grid { grid-template-columns: repeat(1, 1fr); }
            .newsletter-section { flex-direction: column; gap: 20px; text-align: center; }
            .newsletter-left { flex-direction: column; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .section-container{ margin-top:20px; }
            .badge-item {
    border-bottom: 1px solid var(--border-color);
}
body div#header-secondary-outer .container {
    max-width: 100% !important;
}
        }
        
        @media (max-width:767px){
            body div#header-secondary-outer .container {
    max-width: 100% !important;
}
     .announcement-bar{
         flex-direction: column;
         padding: 0;
     }
     body.material #header-secondary-outer .nectar-center-text{
         padding: 0;
     }
     .hero-content h1{
         font-size:30px;
     }
     .hero-content p{
         color:#000;
     }
     .why-us-grid {
    grid-template-columns: 1fr;
}
.best-sellers-top {
    align-items: center;

}

     .section-header-decoration{
         gap:10px;
     }
     .section-header-decoration .line{
             width: 55px;
     }
    body h2.section-title,body .best-sellers-top h2{
         font-size:20px;
     }
            .hero-content{
    max-width: 100%;
    padding: 10px 10px;
            }
            .trust-badges {
    grid-template-columns: 1fr;
}
.trust-badges .badge-item:nth-child(4), .trust-badges .badge-item:nth-child(5){
    border-bottom:1px solid var(--border-color);
}
.section-container{
    padding:0 25px;
}
          .products-grid {
    grid-template-columns: 1fr;
}
.banner-image-container {
    display: none;
}
.banner-content {
    padding: 60px 50px;
    max-width: 100%;
}
        }