@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

:root {
    --theme-color: #15803d; /* Modern vibrant green from logo */
    --theme-dark: #166534; 
    --theme-light: #dcfce7;
    --theme-accent: #f59e0b; /* Amber/Orange for emphasis */
    --black: #111827;
    --white: #ffffff;
    --gray-bg: #f9fafb;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --shadow-soft: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-hover: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container Fluid Padding Fix */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

.fs-10 {
    font-size: 10px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-22 {
    font-size: 22px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.fs-26 {
    font-size: 26px !important;
}

.fs-28 {
    font-size: 28px !important;
}

.fs-30 {
    font-size: 30px !important;
}

.fs-32 {
    font-size: 32px !important;
}

.fs-34 {
    font-size: 34px !important;
}

.fs-36 {
    font-size: 36px !important;
}

.fs-38 {
    font-size: 38px !important;
}

.text-theme-color {
    color: var(--theme-color) !important;
}

.text-theme-dark {
    color: var(--theme-dark) !important;
}

.text-theme-light {
    color: var(--theme-light) !important;
}

.bg-theme-color {
    background-color: var(--theme-color) !important;
}

.bg-theme-dark {
    background-color: var(--theme-dark) !important;
}

.bg-light-soft {
    background-color: var(--theme-light);
}

.btn-theme {
    background-color: var(--theme-color) !important;
    color: white !important;
    border: 2px solid var(--theme-color) !important;
    border-radius: 50px !important;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn-theme:hover {
    background-color: var(--theme-dark) !important;
    border-color: var(--theme-dark) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-outline-theme {
    border: 2px solid var(--theme-color) !important;
    color: var(--theme-color) !important;
    background-color: transparent !important;
    border-radius: 50px !important;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}
.btn-outline-theme:hover {
    background-color: var(--theme-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.hover-shadow-lg:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    transition: all 0.3s ease;
}



.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

.modern-section {
    position: relative;
    overflow: hidden;
}

.modern-title {
    letter-spacing: -0.02em;
    font-weight: 700;
}

.top-bar {
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-dark) 100%);
    color: white;
    text-align: center;
    font-size: 14px;
    padding: 8px 0;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.hover-scale {
    display: inline-block;
    transition: var(--transition);
}

.hover-scale:hover {
    transform: scale(1.1);
}

.navbar .nav-link {
    font-weight: 600;
    color: var(--black) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.navbar .nav-link:hover, .navbar .nav-link.active {
    color: var(--theme-color) !important;
}

.navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--theme-color);
    transition: var(--transition);
}

.navbar .nav-link:hover::before, .navbar .nav-link.active::before {
    width: calc(100% - 2rem);
}

@media (max-width: 991px) {
    .navbar .nav-link {
        display: block;
    }
    .navbar .nav-link::before {
        display: none;
    }
}

.navbar .dropdown-toggle::after {
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0px 0px 1px black;
}

.search-bar {
    border: 1px solid var(--theme-color);
    border-radius: 5px;
    flex-grow: 1;
}

.icons a {
    color: var(--theme-color);
    font-size: 20px;
    margin-left: 15px;
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--theme-color);
    color: white;
    font-size: 12px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.form-control, .form-select {
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 4px rgba(164, 89, 30, 0.15) !important;
    border-color: var(--theme-color) !important;
    background-color: var(--white);
    outline: none !important;
}

.navbar-toggler {
    border: none;
    background: none;
    font-size: 24px;
    width: 40px;
    /* Fixed width */
    height: 40px;
    /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Ensures it stays on top */
}

.toggle-icon {
    transition: transform 0.3s ease-in-out;
    font-size: 24px;
    color: #000;
    /* Change color as needed */
}

/* Ensures it does not move when switching */
.navbar-toggler i {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* 
.form-control, 
.form-select {
    box-shadow: 0px 0px 4px var(--theme-color) !important;
    outline: 2px solid var(--theme-color) !important;
   
}
.form-control:focus, 
.form-select:focus {
       box-shadow: 0px 0px 4px var(--theme-color) !important;
    outline: 2px solid var(--theme-color) !important;
} */

/* carousel-item */



.btn-style1 {
    background: linear-gradient(135deg, #a4591e 0%, #f0b388 100%);
    color: #fff !important;
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(164, 89, 30, 0.4);
}

.btn-style1:hover {
    background: linear-gradient(135deg, #f0b388 0%, #a4591e 100%);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(164, 89, 30, 0.6);
}

.carousel-item2 {
    height: 100%;
    min-height: 500px;
    background-repeat: no-repeat;
    background-size: 100% 100%;

}

span.border_bottom {
    width: 100%;
    display: block;
    border: 5px inset #28834c;
    margin-bottom: 10px;
    margin-top: 10px;
    background: #b41f17;
    position: relative;
}

span.border_bottom:before {
    width: 10px;
    height: 10px;
    position: absolute;
    content: "";
    background: #fff;
    left: -10px;
    top: -5px;
    transform: rotate(45deg);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

span.border_bottom:after {
    width: 10px;
    height: 10px;
    position: absolute;
    content: "";
    background: #fff;
    right: -10px;
    top: -5px;
    transform: rotate(45deg);
}

.about-title h1,
.about-title2 h1,
.about-title h2,
.title,
.modern-title {
    font-size: 2.2rem !important;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.about-title h1,
.about-title2 h1 {
    color: var(--theme-dark);
}

.about-title p,
.text-muted.mt-2 {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
}


.product-title {
    background-color: #2a9d47;
    color: white;

    padding: 10px;

    font-weight: bold;
    font-size: 16px;
    margin-top: 10px;
}

/* pop up */
.modal-content {
    border: 1px solid #4CAF50 !important;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 15px;
    text-align: center;
    color: var(--black);
    height: 100%;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--gray-bg);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-title {
    font-weight: 700;
    color: white !important;
    background-color: var(--theme-color);
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 1.1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 1.25rem;
    margin: 10px 0 15px;
    font-weight: bold;
    color: var(--theme-color);
}

.discount-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--theme-accent);
}

.original-price {
    text-decoration: line-through;
    color: #6b7280;
    font-size: 1rem;
    margin-left: 8px;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

@media screen and (max-width: 768px) {
    .product-image {
        aspect-ratio: 1 / 1;
    }
    .product-title {
        font-size: 1rem;
    }
}

.btn-cart {
    background-color: transparent !important;
    color: var(--theme-color) !important;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px;
    width: 100%;
    border: 2px solid var(--theme-color) !important;
    transition: var(--transition);
    margin-top: auto;
}

.btn-cart:hover {
    background-color: var(--theme-color) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 10px rgba(21, 128, 61, 0.3);
}

.linktext {
    text-decoration: none !important;
}

/* 2 */

/* Faq */

.accordion-button {
    background-color: #e8f5e9 !important;
    color: var(--theme-color) !important;
    font-weight: bold;
    box-shadow: none !important;

}

.accordion-button:not(.collapsed) {
    background-color: #d4edda;
    border-radius: 0px !important;
}

.accordion-item {
    border-radius: 0px !important;
}

/* footer */
.footer-title {
    color: var(--theme-dark);
}

.footer {
    background-color: var(--gray-bg);
    padding: 60px 0 40px;
    font-size: 15px;
    color: #4b5563;
    border-top: 1px solid #e5e7eb;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.footer a {
    text-decoration: none;
    color: #2d2d2d;
}

.footer a:hover {
    color: #388E3C;
}

.footer .footer-logo {
    font-size: 28px;
    font-weight: bold;
    color: #388E3C;
}

.error-text {
    color: red !important;
}

.footer-bottom {
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--theme-dark) 100%);
    color: white;
    padding: 15px 0;
    text-align: center;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    text-align: center;
    margin-right: 8px;
    color: var(--theme-color);
    background-color: var(--white);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    border: 1px solid var(--theme-color);
    font-size: 20px;
}

.social-icons a:hover {
    background-color: var(--theme-color);
    border: 1px solid var(--white);
    color: var(--white);

}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-decoration: none;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* testmonial */
.reviw_slider {
    background-image: url('https://hitkram.com/web-images/testimonial-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    overflow: hidden;
}

.review_detail {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    height: auto;
    overflow: auto;
}

.nav-link55 {
    color: #000 !important;
    font-size: medium !important;
}

.slick-list {
    border-radius: 10px !important;
    background-color: transparent;
}

.name_of_reviewer {
    font-weight: bold;
    margin-top: 10px;
    color: #2d7730;
}

.owl-nav {
    display: none !important;
}

/* Hide Owl Carousel dots */
.owl-dots {
    display: none !important;
}

/* Modern Slick Dots */
.slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}
.slick-dots li button {
    display: none !important;
}
.slick-dots li.slick-active .custom-dot {
    width: 35px !important;
    border-radius: 20px !important;
    opacity: 1 !important;
    background-color: var(--theme-color) !important;
}
.backdrop-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


.owl-carousel .owl-item img {
    display: inline !important;
    width: auto !important;
}


/*We believe in  */
.custom-card {
    background-color: #fcf7eb;
    /* Light beige background */
    padding: 30px;
    text-align: center;

}

.custom-card2 {
    background-color: #fff;
    /* Light beige background */
    padding: 30px;
    text-align: center;

}

.icon {
    font-size: 50px;
    color: #166534;
    /* Green color */
}

.custom-card h5 {
    font-weight: bold;
    margin-top: 15px;
}

.custom-card2 h5 {
    font-weight: bold;
    margin-top: 15px;
}

.believe {
    box-shadow: 0px 0px 4px #ccc;
}

.believeimg img {
    height: 100px;
    display: block;
    margin: 15px auto;
}


/* video section */

.hero-section {
    background: transparent;
}

.left-panel {
    padding: 2rem;

    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.right-panel {
    position: relative;
    height: 120%;
}

.logo_image_video {
    background-color: #fff;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 10px;

}

.logo_image_video img {
    width: 100px;
}

.hero__media video {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
}


/* contact */
.pagebgimg {
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.btn-submit {
    background-color: var(--theme-color);
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    border: 2px solid var(--theme-color);
}

.btn-submit:hover {
    background-color: var(--white);
    color: var(--theme-color);
    border: 2px solid var(--theme-color);
}

.contact-info i {
    color: #166534;
    margin-right: 8px;
}

/* our story */
.flip-card {
    background-color: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;

    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
}

.flip-card-front {
    background: #f8f9fa;
}

.flip-card-back {
    background: #166534;
    color: white;
    transform: rotateY(180deg);
}

.circular_image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;

}

.social-link {
    color: white;
    font-size: 18px;
    margin: 0 10px;
}

/* purpose */
.purpose {
    background-image: linear-gradient(#28834c, #7dd61f);
    color: #fff;
    text-align: center;
}

/* login */
.login-container {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.btn-green {
    background-color: #2e7d32;
    color: white;
}

.btn-green:hover {
    background-color: #1b5e20;
}

.btn-outline-green {
    border: 2px solid #7cb342;
    color: #7cb342;
}

.btn-outline-green:hover {
    background-color: #7cb342;
    color: white;
}

.text-green {
    color: #7cb342;
}

/* shoping cart */
.product-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.btn-qty {
    border: 1px solid #28a745;
    color: #28a745;
    background: white;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 25px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.btn-qty:hover {
    background: #28a745;
    color: white;
}

.remove-link {
    color: #28a745;
    font-weight: bold;
    text-decoration: none;
}

.remove-link:hover {
    text-decoration: underline;
}

.total-container {
    border-top: 2px solid #ddd;
    padding-top: 10px;
    font-size: 18px;
}

.btn-green {
    background-color: #2e7d32;
    color: white;
    border: 2px solid #1b5e20;
    font-weight: bold;
}

.btn-green:hover {
    background-color: #1b5e20;
}

/* productsdatail */
/* MAIN PRODUCT IMAGE */
.carousel-item img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    /* show full image */
    cursor: pointer;
}

/* remove fixed height */
.carousel-item33 {
    height: auto;
}

/* responsive height */
@media (max-width: 768px) {
    .carousel-item img {
        max-height: 350px;
    }
}

@media (max-width: 480px) {
    .carousel-item img {
        max-height: 250px;
    }
}

/* THUMBNAIL WRAPPER */
.thumbnail-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 5px;
    justify-content: center;
    scroll-behavior: smooth;
}

.thumbnail-wrapper::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

/* THUMBNAIL IMAGE */
.thumbnail-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    border-radius: 6px;
    transition: 0.2s;
}

.thumbnail-img:hover,
.thumbnail-img.active {
    border: 3px solid #1b5e20;
}

@media (max-width: 576px) {
    .thumbnail-img {
        width: 60px;
        height: 60px;
    }
}

/* controls full height */
.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    z-index: 5;
}

/* arrow icon style */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    background-size: 60%;
}

.ggg {
    background-size: 100% 100%;
    background-position: center;
    background-color: #f8f9fa;
    background-repeat: no-repeat;
    height: 212px;
    /* Default height for mobile */
}

/* For screens larger than 768px (tablets & desktops) */
@media (min-width: 768px) {
    .ggg {
        height: 512px;
        /* Height for desktop */
    }
}

.modal-img {
    max-width: 100%;
    height: auto;
}

/* Black next/prev buttons */
.modal .carousel-control-prev-icon,
.modal .carousel-control-next-icon {
    background-color: black;
    border-radius: 50%;
    padding: 10px;
}

.btn-close {
    z-index: 2 !important;
}

.menu_btn {
    outline: none !important;
    box-shadow: none !important;
}

.cardblog {
    height: 100% !important;
}

.active-link {
    color: var(--theme-color) !important;
    font-weight: bold;
}

.active {
    color: #28834c !important;
    font-size: 22px !important;
    font-weight: 600 !important;
}

.nav-link {
    font-size: 20px !important;
    font-weight: 500 !important;

}

.dropdown-item {
    background-color: transparent !important;
}


/* blogcart  */


.blogcart765 {
    background-color: #4CAF50 !important;
}

.article-img {
    width: 100%;
    margin-bottom: 30px;
    height: 500px;
    object-fit: contain;
}

.review_slider .title,
.healthy .title,
.faq .title {
    color: var(--theme-dark);
}

.healthy p,
.faq p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #6c757d;
}

.airpay-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: #ff4d4d;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: 0.2s ease-in-out;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.airpay-close-btn:hover {
    background: #e60000;
    transform: scale(1.1);
}

/* Payment Cards */
.payment-method-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.25s ease;
    background: #fff;
    position: relative;
}

.payment-card:hover {
    border-color: var(--theme-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.payment-card.active {
    border-color: var(--theme-color);
    background: #ecf7ee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ICON */
.payment-icon {
    width: 45px;
    height: 45px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #444;
}

.online-icon {
    background: #e5f4e7;
    color: var(--theme-color);
}

/* Prepaid Option Buttons */
.prepaid-options-box {
    display: flex;
    gap: 15px;
}

.prepaid-option {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.25s ease;
    text-align: center;
}

.prepaid-option:hover {
    border-color: var(--theme-color);
}

.prepaid-option.selected {
    border-color: var(--theme-color);
    background: #ecf7ee;
}

/* Hide Radio Buttons Completely */
.payment-card input,
.prepaid-option input {
    display: none;
}

/* Payment logos */
.payment-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
}
/* Product image wrapper heights */
.product-img-wrapper {
    height: 420px !important;
}
@media (max-width: 1199px) {
    .product-img-wrapper {
        height: 380px !important;
    }
}
@media (max-width: 991px) {
    .product-img-wrapper {
        height: 320px !important;
    }
}
@media (max-width: 767px) {
    .product-img-wrapper {
        height: 250px !important;
    }
}

/* Hero Slick Wrapper Adjustments */
.hero-slick-wrapper .slick-prev {
    left: 25px;
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.3) !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.hero-slick-wrapper .slick-next {
    right: 25px;
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.3) !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.hero-slick-wrapper .slick-prev:before, .hero-slick-wrapper .slick-next:before {
    font-size: 30px;
    opacity: 1;
    color: white !important;
}
.hero-slick-wrapper .slick-dots {
    bottom: 25px;
}
.hero-slick-wrapper .slick-dots li button:before {
    font-size: 14px;
    color: white;
    opacity: 0.7;
}
.hero-slick-wrapper .slick-dots li.slick-active button:before {
    color: var(--theme-color);
    opacity: 1;
}

/* Prevent horizontal scrolling globally */
html, body {
    overflow-x: hidden;
    width: 100%; max-width: 100%; overflow-x: hidden !important;
}

/* Hero Slider Responsive */
@media (max-width: 768px) {
    .hero-slick-wrapper {
        height: 60vh !important;
        min-height: 400px !important;
    }
    .hero-slick-wrapper .slick-prev {
        left: 15px;
        width: 40px;
        height: 40px;
    }
    .hero-slick-wrapper .slick-next {
        right: 15px;
        width: 40px;
        height: 40px;
    }
    .hero-slick-wrapper .slick-prev:before, .hero-slick-wrapper .slick-next:before {
        font-size: 20px;
    }
    .hero-slick-wrapper .slick-dots {
        bottom: 15px;
    }
}

body .container,
body .container-fluid,
body .container-lg,
body .container-md,
body .container-sm,
body .container-xl,
body .container-xxl {
    --bs-gutter-x: 1.5rem;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
}

body main.container-fluid {
    --bs-gutter-x: 0;
    padding-right: 0;
    padding-left: 0;
}

.hero-slick-wrapper,
.hero-slick-wrapper .slick-slider,
.hero-slick-wrapper .slick-list,
.hero-slick-wrapper .slick-track,
.hero-slick-wrapper .slick-slide,
.hero-slick-wrapper .slick-slide > div,
.hero-slide,
.hero-slide-media,
.hero-slide-loading {
    height: 100vh;
    min-height: 100vh;
}

.hero-slide-media {
    position: relative;
    overflow: hidden;
}

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

.hero-slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 20;
    width: 64px;
    height: 64px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18) !important;
    color: var(--white);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-slick-arrow:hover {
    background: rgba(21, 128, 61, 0.92) !important;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.hero-slick-arrow:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.7);
    outline-offset: 3px;
}

.hero-slick-arrow i {
    font-size: 1.2rem;
    color: var(--white) !important;
}

.slick-arrow i {
    color: var(--white) !important;
}

.hero-slick-arrow--prev {
    left: 32px;
    transform: translateY(-50%);
}

.hero-slick-arrow--next {
    right: 32px;
    transform: translateY(-50%);
}

.hero-slick-arrow--prev:hover,
.hero-slick-arrow--next:hover {
    transform: translateY(-50%) scale(1.06);
}

.hero-slick-wrapper .slick-prev::before,
.hero-slick-wrapper .slick-next::before,
.hero-slick-wrapper .slick-dots li button::before {
    content: none;
}

.hero-slick-wrapper .slick-dots {
    bottom: 28px;
    display: flex !important;
    justify-content: center;
    gap: 12px;
}

.hero-slick-wrapper .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.hero-slick-wrapper .slick-dots li button {
    width: auto;
    height: auto;
    padding: 0;
}

.hero-slick-wrapper .custom-dot span {
    width: 14px;
    height: 14px;
    display: block;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    transition: width 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.hero-slick-wrapper .slick-dots li.slick-active .custom-dot span {
    width: 40px;
    background: var(--theme-accent);
}

.product-detail-actions {
    row-gap: 1rem;
}

.product-detail-quantity {
    min-width: 180px;
    min-height: 64px;
    gap: 0.5rem;
    flex-shrink: 0;
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.05);
}

.product-detail-quantity .form-control {
    width: 52px !important;
    min-width: 52px;
    font-size: 1.1rem;
}

.product-detail-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    width: 100%;
}

.product-detail-button {
    min-height: 64px;
    padding-inline: 1.5rem;
    white-space: nowrap;
}

.global-api-loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background:
        radial-gradient(circle at top, rgba(21, 128, 61, 0.18), transparent 42%),
        rgba(248, 250, 252, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 3000;
}

.global-api-loader.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.global-api-loader__panel {
    width: min(100%, 360px);
    padding: 1.75rem;
    border: 1px solid rgba(21, 128, 61, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 30px 60px rgba(17, 24, 39, 0.16);
    text-align: center;
}

.global-api-loader__spinner {
    position: relative;
    width: 126px;
    height: 126px;
    margin: 0 auto 1.25rem;
    display: grid;
    place-items: center;
}

.global-api-loader__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(21, 128, 61, 0.12),
        rgba(21, 128, 61, 0.92),
        rgba(245, 158, 11, 0.88),
        rgba(21, 128, 61, 0.12)
    );
    animation: loaderSpin 1s linear infinite;
}

.global-api-loader__ring::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(220, 252, 231, 0.95), #ffffff 68%);
    box-shadow: inset 0 0 0 1px rgba(21, 128, 61, 0.06);
}

.global-api-loader__orbit {
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    border: 1.5px dashed rgba(21, 128, 61, 0.28);
    animation: loaderSpinReverse 4.4s linear infinite;
}

.global-api-loader__logo-wrap {
    position: relative;
    z-index: 1;
    width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at top, rgba(220, 252, 231, 0.95), rgba(255, 255, 255, 0.98) 72%);
    box-shadow:
        0 10px 24px rgba(21, 128, 61, 0.16),
        inset 0 0 0 1px rgba(21, 128, 61, 0.08);
    animation: loaderLogoFloat 1.8s ease-in-out infinite;
}

.global-api-loader__logo {
    width: 84px;
    height: 84px;
    object-fit: contain;
    display: block;
}

.global-api-loader__pulse {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(21, 128, 61, 0.16);
    animation: loaderPulse 1.8s ease-out infinite;
}

.global-api-loader__pulse--one {
    inset: -8px;
}

.global-api-loader__pulse--two {
    inset: -18px;
    animation-delay: 0.35s;
}

.global-api-loader__eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--theme-color);
}

.global-api-loader__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--theme-dark);
}

.global-api-loader__text {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

@keyframes loaderSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loaderSpinReverse {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes loaderPulse {
    0% {
        opacity: 0;
        transform: scale(0.82);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

@keyframes loaderLogoFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

@media (max-width: 767.98px) {
    .hero-slick-wrapper,
    .hero-slick-wrapper .slick-slider,
    .hero-slick-wrapper .slick-list,
    .hero-slick-wrapper .slick-track,
    .hero-slick-wrapper .slick-slide,
    .hero-slick-wrapper .slick-slide > div,
    .hero-slide,
    .hero-slide-media,
    .hero-slide-loading {
        height: auto !important;
        min-height: 0 !important;
    }

    .hero-slide-image {
        height: auto;
        min-height: 0;
        object-fit: contain;
    }

    .hero-slick-arrow {
        width: 48px;
        height: 48px;
    }

    .hero-slick-arrow i {
        font-size: 1rem;
    }

    .hero-slick-arrow--prev {
        left: 16px;
    }

    .hero-slick-arrow--next {
        right: 16px;
    }

    .hero-slick-wrapper .slick-dots {
        bottom: 16px;
    }

    .hero-slick-wrapper .slick-dots li.slick-active .custom-dot span {
        width: 28px;
    }

    .product-detail-quantity {
        width: 100%;
        min-width: 0;
        min-height: 58px;
    }

    .product-detail-buttons {
        grid-template-columns: 1fr;
    }

    .product-detail-button {
        min-height: 58px;
        white-space: normal;
    }

    .global-api-loader__panel {
        padding: 1.4rem 1.2rem;
        border-radius: 24px;
    }

    .global-api-loader__spinner {
        width: 76px;
        height: 76px;
        margin-bottom: 1rem;
    }

    .global-api-loader__logo-wrap {
        width: 42px;
        height: 42px;
    }

    .global-api-loader__logo {
        width: 30px;
        height: 30px;
    }

    .global-api-loader__text {
        font-size: 0.9rem;
    }
}
