.top-banner {
    position: relative; /* Reset default */
}

.top-banner.stuck {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
}
.top-banner {
    background-color: #b1c2a0; /* ✅ Your requested color */
    color: #000;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .top-banner span {
    border-right: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0 15px;
  }

  .top-banner span:last-child {
    border-right: none;
  }

/* Container for the entire block */
.product-info {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Tags container */
.tags {
    display: flex;
    gap: 8px;
}
.tag {
    padding: 5px 14px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    user-select: none;
}
.tag.sleep {
    background-color: #867fb8;
    color: white;
}
.tag.cbd-thc {
    background-color: #b3c5a2;
    color: #1a3820;
}
.tag.high-potency {
    background-color: #d9731a;
    color: white;
}  
/* Heading subtitle */
.subtitle {
    font-weight: 700;
    color: var(--main_color);
    font-size: 16px;
}

/* Benefits container */
.benefits {
    display: flex;
    gap: 24px;
    color: var(--main_color);
    font-weight: 600;
    user-select: none;
    margin-top: 4px;
    margin-bottom: 12px;
}
.benefit {
    display: flex;
    align-items: center;
    gap: 6px;
}
.benefit p{
    margin: 0;
    font-size: 16px;
}

/* Icons for benefits */
.icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    stroke: #23aadd;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

/* Flavor/strength grid */
.flavor-strength {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 12px;
}
.flavor-strength span.label {
    color: #3a3a3a;
    font-weight: 600;
}
.flavor-strength span.value {
    font-weight: 700;
    color: #2a2a2a;
}

/* Packs container */
.packs {
    display: flex;
    gap: 20px;
}
.pack {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
    text-align: center !important;
    line-height: 25px !important;
  flex: 1;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
}
.variations th{
    display: none;
}
.pack input[type="radio"] {
    display: none; 
  }
  
  .pack input[type="radio"]:checked + span,
  .pack input[type="radio"]:checked ~ .count,
  .pack input[type="radio"]:checked ~ .badge,
  .pack input[type="radio"]:checked ~ .discount {
    
  }

.pack.selected {
    background-color: #f9f7ff;
    border-color: #23aadd ;
    box-shadow: 0 0 6px #23aadd ;
}
.pack .count {
    font-weight: 400;
    color: #444;
}
.pack .discount {
    color: #d9731a;
    font-weight: 600;
}

.badge {
    background-color: #23aadd;
    color: white;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 16px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.faq-section h2{
    margin-bottom: 25px;
    margin-top: 0;
    padding-top: 0;
}
.faq-section ul, .faq-section ol{
    list-style-type: disc !important;
    margin-left: 40px;
}
.woocommerce-tabs.wc-tabs-wrapper{ display:none; }
  
/* Kratom Effects */
.kratom-effects {
    /* background: #e8f5e8;
    box-shadow: 0 0 14px #bdbdbd; */
    text-align: center;
    width: 100%;
    /* margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw); */
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

.section-title {
    color: #23aadd;
    margin-bottom: 30px;
}

.effects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px !important;
    margin-top: 20px;
}

.effect-card {
    padding: 20px;
    background: #23aadd24;
    box-shadow: 0 0 14px #bdbdbd;
    border-radius: 10px;
}

.effect-icon {
    width: 60px;
    height: 60px;
    background: var(--main_color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 25px;
}

.effect-title {
    font-size: 22px;
    color: var(--main_color);
    margin-bottom: 15px;
}

#accordionFaq .accordion-button:not(.collapsed) {
    color: #000;
    background-color: #e7f1ff;
}

.effect-desc {
    font-size: 16px;
    color: #444;
}

/*Description & Tabs */
.product-description {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.description-title {
    color: var(--main_color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-family: "League Spartan", serif;
}
.related.products .product_card h2 {
	margin: 10px 0px !important;
	min-height: 55px;
	font-size: 18px !important;
	padding: 0 10px !important;
}
.description-content {
    margin-bottom: 15px;
    font-size: 16px;
}
.description-content h3{
    font-size: 21px;
    line-height: normal;
    margin-top: 0;
}

.key-point-desc {
    border: 1px solid #23aadd;
    border-radius: 10px;
    background: #f0f9f0;
    padding:10px;
    box-shadow: 0 0 6px #23aadd;
    margin: 10px 0 10px 0;
}
.key-point-desc ul{
    margin: 0;
    line-height: 30px;
    padding: 0;
}
.key-point-desc ul li{
    font-size: 18px;
    list-style: none;
    display: flex;
    align-items: center;
    font-family: "Marcellus", serif;
}
.key-point-desc ul li img{
    margin-right: 5px;
}
.highlight {
    color: #23aadd;
    font-weight: bold;
}

.accordion {
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 12px 0;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #eee;
}

.accordion-header i {
    transition: transform 0.3s ease;
    padding-right: 10px;
    font-size: 16px;
}

.accordion-header i.fa-chevron-down {
    margin-left: auto; /* Push chevron to the right */
}

.accordion-content {
    display: none;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.accordion.active .accordion-content {
    display: block;
}

.accordion.active .fa-chevron-down {
    transform: rotate(180deg); /* Rotate chevron when active */
}

/* Ensure no overlap or layout issues */
.accordion {
    position: relative;
    overflow: hidden; /* Prevent content overflow */
}

/* FAQs Section */
.faqs {
 margin: 40px 0;
}
.faqs h2 {
    margin-bottom: 20px;
    color: #333;
}
.faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.faq-question {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
}
.faq-question i {
    color: #23aadd;
}
.faq-answer {
    display: none;
    margin-top: 10px;
    padding: 10px 0;
    color: #666;
    font-size: 16px;
}
.faq-active .faq-answer {
    display: block;
}
.faq-active .faq-question i {
    transform: rotate(180deg);
}

.woocommerce-product-gallery {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, top 0.3s ease;
}

.woocommerce-product-gallery.is-sticky {
    position: sticky !important;
    top: 0 !important;
    transform: translateY(0);
    transition: transform 0.3s ease, top 0.3s ease!important;
}

.woocommerce-product-gallery.is-stopped {
    position: absolute !important;
    top: 400px !important; /* Default for smaller screens */
    transform: translateY(0);
    transition: transform 0.3s ease, top 0.3s ease!important;
}

/* .buy_now_button{
    margin-left: 10px!important;
} */

.woocommerce-product-details__short-description{
    display: none;
}

@media (min-width: 1440px) {
    .woocommerce-product-gallery.is-stopped {
        top: 160px !important;
    }
}

/* Ensure parent container ends before FAQ section */
.summary {
    display: flex;
    flex-direction: column;
}
.woocommerce-product-gallery{
    height: 75% !important;
}

.faq-section #accordionFaq .accordion-body {
    border-top: 0;
    font-size: 14px;
    line-height: 21px;
}
.faq-section #accordionFaq .accordion-header {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}
.faq-section #accordionFaq .accordion-item {
    border-radius: 50px !important;
    overflow: hidden;
    margin-bottom: 15px;
}


/* Header appearance */
.faq-section #accordionFaq{
    border-top: 0;
}
.faq-section #accordionFaq .accordion-header{
    border-bottom: 0;
}
 .faq-section #accordionFaq .accordion-header button {
    font-family: "League Spartan", serif;
    background: #f7f7f7;
    font-size: 20px;
    line-height: 20px;
    padding: 12px 30px 12px 25px;
    font-weight: 700;
    box-shadow: none !important;
    text-decoration: none;
    position: relative;
    color: #333;
    text-transform: capitalize !important;
  }
.faq-section #accordionFaq .accordion-body p{
	font-size: 16px;
}
  
.faq-section #accordionFaq .accordion-button:not(.collapsed) {
    color: var(--main_color);
    background-color: #fff;
}
.faq-section #accordionFaq .accordion-item:not(:first-of-type) {
    border-top: 1px solid rgba(0, 0, 0, .125);
}
/* Plus / minus icons using .active class (no attribute reliance) */
.faq-section #accordionFaq .accordion-header .accordion-button::after {
    content: "+";      
    /* font-family: 'Font Awesome 5 Free'; */
    position: absolute;
    color: #333;
    background-image: unset;
    right: 15px;
    font-size: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
}
.faq-section #accordionFaq .accordion-header .accordion-button:not(.collapsed)::after {
    content: "-";          /* open state: minus (unicode minus) */
    background-image: unset;
    color: var(--main_color);
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-weight: 600;
    font-size: 32px;
}

/* faq-sec */
.faq-section{
    margin: 50px 0;
    font-size: 16px;
}

.faq-section .accordion_container{
    padding-top: 0;
}
/* .faq-section img{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block; 
} */
.faq-section .panel-collapse .panel-body {
    border-top: 0;
}
.faq-section .panel-heading {
    background-color: transparent;
    padding: 0;
}
.faq-section .panel-default {
    border-radius: 20px !important;
    overflow: hidden;
}


/* Header appearance */
  .faq-section .panel-heading a {
    font-family: "League Spartan", serif;
    background: #f7f7f7;
    display: block;
    padding: 12px 16px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    color: #333;
  }

  /* Active/open header background + text color */
  .faq-section .panel-heading.active a {
    background: #fff;   /* active bg color - change as needed */
    color: var(--main_color);        /* active text color - change as needed */
  }
  .faq-section .panel-heading.active .panel {
    border-radius: 20px !important;
  }

  /* Plus / minus icons using .active class (no attribute reliance) */
  .faq-section .panel-heading a:after {
    content: "+";          /* default collapsed */
    position: absolute;
    right: 16px;
    top: 57%;
    transform: translateY(-50%);
    font-weight: 400;
    font-size: 26px;
    line-height: 1;
  }
  .faq-section .panel-heading.active a:after {
    content: "−";          /* open state: minus (unicode minus) */
    color: #2e7d32;
  }
  /* Optional panel styles */
  .faq-section .panel {
    border: 1px solid #e3e6eb;
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: hidden;
  }

  .faq-section #accordion2 .panel-heading a {
    font-family: "League Spartan", serif;
    background: transparent !important;
    font-size: 18px;
    padding: 14px 0;
    font-weight: 600;
    color: var(--main_color);
   }
   .faq-section #accordion2 .panel {
     border-left: 0;
     border-right: 0;
   }
  .faq-section #accordion2 .panel-default {
    border-radius: 0 !important;
    overflow: hidden;
   }
  /* Plus / minus icons using .active class (no attribute reliance) */
  .faq-section #accordion2 .panel-heading a:after {
    content: "\276F";      
    /* font-family: 'Font Awesome 5 Free'; */
    position: absolute;
    right: 7px;
    top: 50%;
    transform: rotate(90deg) translateY(-50%);
    font-weight: 400;
    font-size: 18px;
    transition: 0.5s;
    line-height: 0;
  }
  .faq-section #accordion2 .panel-heading.active a:after {
    content: "\276F";          /* open state: minus (unicode minus) */
    color: #333 !important;
    transform: rotate(-90deg);
    transition: 0.5s;
    right: 4px;
    line-height: 0;
  }

  .product-info .benefit{
    align-items: unset !important;
  }
  .woocommerce div.product div.images .flex-control-thumbs {
    overflow-x: hidden;
    display: flex;
  }
  .woocommerce div.product div.images .flex-control-thumbs li {
    margin: 5px
  }
  /* .kratom-effects {
    margin-left: calc(49.4% - 50vw);
  } */
  .effects-grid {
    gap: 0;
  }
  .kratom-effects .effect-icon img{
    width: 40px;
  }
.top-banner span{
    display: flex;
    align-items: center;
    gap: 15px;
}
.top-banner span img{
    width: 30px;
}

.woocommerce-product-gallery .flex-viewport .wp-post-image{
    height: 100% !important;
    object-fit: cover;
    width: 75%;
    margin: auto;
}

.wpgs-nav .slick-slide {
    height: auto !important;
}

.wpgs_image .img-attr{
    height: 100%!important;
    margin: 0 auto;
}
.wpgs_image .img-attr{
    object-fit: contain;
}

.product_meta ul, .faq-section ul{
	list-style-type: disc;
	margin-left: 40px;
}

a.se-box__btn.button {
    width: auto;
    text-align: center;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    background-color: var(--main_color);
    border-radius: 12px;
    border: 2px solid transparent;
    margin: 15px 0px !important;
    position: relative;
    top: -16px;
}
.se-box__list {
    list-style: none;
    padding: 0;
    margin-left: 0px;
}

/* Each item */
.se-box .explore-box-outr{
    padding: 0px;
    margin: 0px;
}
.se-box__item {
    display: flex;
    justify-content: start;
    align-items: center;
    border-bottom: 1px solid #e6e6e6;
    gap: 10px;
    list-style-type: disc;
}
.se-box .se-box__list {
    margin-left: 0px;
}

/* Remove last border */
.se-box__item:last-child {
    border-bottom: none;
}

/* Product title link */
.se-box__title-link {
    text-decoration: none;
}

.se-box__title {
    font-size: 16px;
    font-weight: 600;
    color: #1eb7f3;
    transition: 0.2s;
}

.se-box__title-link:hover .se-box__title {
    color: #1eb7f3;
}

/* Buy Now button */
.se-box__item .se-box__btn.button {
    padding:8px 22px;
    background: #1eb7f3;
    color: #fff !important;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    border: none;
    top: 0;
}

/* Hover effect */
.se-box__item .se-box__btn.button:hover {
    background: #1eb7f3;
    color: #fff !important;
}

/*  Responsive Start   */
/* Mobile adjustments */
@media (min-width: 1399px) {
    .woocommerce-product-gallery2 {
        position: relative !important;
        top: 115px !important;
    }
}
@media (max-width: 992px) {
    .effects-grid {
        grid-template-columns: 1fr 1fr;
    }
    .woocommerce-product-gallery{
        height: auto !important;
    }
    }


/*Smaller screen css*/  
@media (max-width: 600px) {
    .effects-grid {
        grid-template-columns: 1fr;
    }
    .packs {
        flex-direction: column;
    }
    .flavor-strength {
        flex-direction: column;
        gap: 6px;
    }
    .top-banner span img{
        display: none;
    }
    .woocommerce-product-gallery{
        height: auto !important;
    }
}
@media (max-width: 768px) {
    .jdgm-rev.jdgm-rev {
        width: 100%;
    }
    .woocommerce-product-gallery {
        position: unset;
        position: relative !important;
        top: unset;
    }
    .woocommerce-product-gallery2,.woocommerce-product-gallery.is-sticky  {
        position: relative !important;
        top: unset !important;
    }
}




/* @media (max-width: 576px) {
    .packs {
        flex-direction: unset;
    }
    .benefits {
        flex-wrap: wrap;
        gap: 0 24px;
    }
    .faq-section {
        margin: 20px 0;
    }
    .faq-section img{
        margin-bottom: 20px;
    }
    .kratom-effects {
        margin: 10px 0;
    }
    .product-description {
        margin: 20px 0 0;
    }
    .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
        margin: 0 7px 10px !important;
    }
    .cta-btn {
        padding: 10px 13px !important;
        line-height: 30px !important;
    }

    .key-point-desc ul{
        line-height: 25px;
    }
    .key-point-desc ul li{
        font-size: 15px;
        line-height: 18px;
        margin-bottom: 5px;
    }
    .woocommerce-product-gallery{
        height: auto !important;
    }
    .packs {
        display: flex;
        gap: 11px;
    }
    .badge {	
        font-size: 7px;
    }
	.te_default_woo-page.mtop50 {
		overflow-x: hidden;
	}

} */






