
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

 .back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

.whatsapp-chat {
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 35px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    transition: 0.5s;
    z-index: 1000;
    cursor: pointer;
    border: none;
    outline: none;
}

.whatsapp-chat:hover {
    background-color: #128c7e;
    color: #fff;
    transform: scale(1.1);
}

/* WhatsApp Widget Popup */
.wa-widget {
    position: fixed;
    left: 30px;
    bottom: 105px;
    width: 320px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
    animation: wa-bounce 0.4s ease;
}

@keyframes wa-bounce {
    0% { transform: scale(0.8) translateY(20px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.wa-widget.show {
    display: block;
}

.wa-header {
    background-color: #075e54;
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.wa-header-info {
    margin-left: 15px;
}

.wa-header-info h5 {
    color: #fff;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.wa-header-info p {
    color: #dcf8c6;
    margin: 0;
    font-size: 13px;
}

.wa-header-icon {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #075e54;
    font-size: 24px;
}

.wa-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    opacity: 0.7;
}

.wa-close:hover {
    opacity: 1;
}

.wa-body {
    padding: 20px;
    background-color: #e5ddd5;
    background-image: url('../img/wa-bg.png');
    max-height: 300px;
}

.wa-msg {
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 0 15px 15px 15px;
    font-size: 14px;
    position: relative;
    max-width: 90%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.wa-msg::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    border-width: 0 10px 10px 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}

.wa-footer {
    padding: 15px;
    background-color: #f0f0f0;
    text-align: center;
}

.wa-btn {
    display: block;
    background-color: #25d366;
    color: #fff !important;
    text-decoration: none;
    padding: 10px;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
}

.wa-btn:hover {
    background-color: #128c7e;
}

.wa-btn i {
    margin-right: 8px;
}
.whatsapp-popup {
    position: fixed;
    left: 30px;
    bottom: 100px;
    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #141414;
    padding: 12px 16px;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-size: 14px;
    line-height: 1.4;
    z-index: 999;
    max-width: 200px;
    animation: bounce 2s infinite;
    display: none;
}

.whatsapp-popup.show {
    display: block;
}

.whatsapp-popup::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.75) transparent transparent;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}
/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

/* Squircle CTAs instead of full pill buttons, for a crisper premium look */
.btn.rounded-pill {
    border-radius: 10px !important;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.border-secondary {
    transition: 0.5s;
}

.btn.border-secondary:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.fixed-top {
    transition: 0.5s;
    background: #fff;
    border: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.topbar {
    padding: 20px;
    max-width: 100% !important;
    background: rgba(25, 135, 84, 0.78) !important;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
}

.topbar .top-info {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link {
    font-size: 15px;
    line-height: 0;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.topbar .top-link a {
    letter-spacing: 1px;
}

.topbar .top-link a small:hover {
    color: var(--bs-secondary) !important;
    transition: 0.5s;
}

.topbar .top-link a small:hover i {
    color: var(--bs-primary) !important;
}
/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    transition: .5s;
}

.navbar {
    height: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.navbar.bg-white {
    background: #fff !important;
}

.navbar-collapse.bg-white {
    background: transparent !important;
}

@media (max-width: 1199.98px) {
    .navbar-collapse.bg-white {
        background: #fff !important;
        border-radius: 16px;
        margin-top: 10px;
        padding: 10px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
}

/* Logo: fixed, predictable size so the toggler never gets pushed out of view */
.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand .logo-img,
img.logo-img {
    width: auto !important;
    height: auto !important;
    max-height: 46px;
    max-width: 180px;
}

.navbar-toggler {
    flex-shrink: 0;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-secondary);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    border-radius: 10px !important;
    transition: .5s;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .8);
}
/*** Navbar End ***/

.sticky-sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    height: fit-content;
    overflow-y: auto;
    z-index: 10;
}

/* Below lg, sidebar and products stack full-width: sticky positioning would
   let the filter panel pin over the product grid while scrolling. */
@media (max-width: 991.98px) {
    .sticky-sidebar {
        position: static;
        top: auto;
        max-height: none;
        overflow-y: visible;
        z-index: auto;
    }
}

/* Compact sidebar content so it fits without pushing the help box off-screen */
.sticky-sidebar h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem !important;
}

.sticky-sidebar .form-control {
    padding: 0.4rem 0.75rem !important;
    font-size: 0.9rem;
}

.sticky-sidebar .list-group-item {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    font-size: 0.88rem;
}

.sticky-sidebar .mb-4 {
    margin-bottom: 1rem !important;
}

.sticky-sidebar .mt-5 {
    margin-top: 1.5rem !important;
}

.sticky-sidebar .bg-primary.rounded.text-white {
    padding: 1rem !important;
}

.sticky-sidebar .bg-primary.rounded.text-white .fa-headset {
    font-size: 1.6rem !important;
    margin-bottom: 0.5rem !important;
}

.sticky-sidebar .bg-primary.rounded.text-white h5 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.sticky-sidebar .bg-primary.rounded.text-white p {
    font-size: 0.8rem;
    margin-bottom: 0.6rem !important;
}

.hover-zoom {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.hover-zoom:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Shine Effect */
.hover-zoom::after {
    content: "";
    background: rgba(255, 255, 255, 0.3);
    height: 100%;
    width: 50px;
    position: absolute;
    top: 0;
    left: -100px;
    transform: skewX(-45deg);
    transition: 0s;
}

.hover-zoom:hover::after {
    left: 110%;
    transition: 0.6s ease;
}

.fw-extrabold {
    font-weight: 800 !important;
}

/* Modern Carousel Indicators & Controls */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.5;
    margin: 0 5px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--bs-primary);
    transform: scale(1.2);
    border-color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: all 0.3s ease;
}

#carouselId:hover .carousel-control-prev,
#carouselId:hover .carousel-control-next {
    opacity: 0.8;
}

.hero-slide-media {
    height: calc(100vh - 64px);
}

@media (max-width: 767.98px) {
    .hero-slide-media {
        height: 60vh;
    }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--bs-primary);
    border-radius: 50%;
    padding: 25px;
    background-size: 50%;
}

/*** Hero Header ***/
.hero-header {
    background: none;
}

.carousel-item {
    position: relative;
}

.carousel-item a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
}

.carousel-control-next,
.carousel-control-prev {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid var(--bs-white);
    background: var(--bs-primary);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-next {
    margin-right: 20px;
}

.carousel-control-prev {
    margin-left: 20px;
}

.page-header {
    position: relative;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.55), rgba(20, 20, 20, 0.75)), url(../img/cart-page-header-img.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 64px !important;
    }
}

@media (max-width: 992px) {
    .hero-header,
    .page-header {
        margin-top: 64px !important;
    }
}
/*** Hero Header end ***/


/*** featurs Start ***/
.featurs .featurs-item .featurs-icon {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featurs .featurs-item .featurs-icon::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--bs-primary);
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(1.12);
}
/*** featurs End ***/


/*** service Start ***/
.service-item {
    background-color: #fff !important;
    border-radius: 18px !important;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease;
}

.service-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.service-item i.fa-2x {
    background: rgba(25, 135, 84, 0.1);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem !important;
}
/*** service End ***/


/*** Fruits Start ***/
.fruite .tab-class .nav-item a.active {
    background: var(--bs-secondary) !important;
}

.fruite .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/* Small, compact category filter pills instead of fixed 130px blocks */
.fruite .tab-class .nav-pills .nav-item > a {
    padding: 6px 16px !important;
    margin: 4px !important;
}

.fruite .tab-class .nav-pills .nav-item > a span {
    width: auto !important;
    font-size: 0.85rem;
    white-space: nowrap;
}

.fruite .fruite-categorie .fruite-name {
    line-height: 40px;
}

.fruite .fruite-categorie .fruite-name a {
    transition: 0.5s;
}

.fruite .fruite-categorie .fruite-name a:hover {
    color: var(--bs-secondary);
}

.fruite .fruite-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.5s;
}
.fruite .fruite-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.fruite .fruite-item .fruite-img {
    height: 230px; /* Fixed height for product images */
    overflow: hidden;
    transition: 0.5s;
    border-radius: 10px 10px 0 0;
}

.fruite .fruite-item .fruite-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area without distortion */
    transition: 0.5s;
}

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

.fruite .fruite-item .p-4 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fruite .fruite-item .p-4 h4 {
    min-height: 2.4em; /* Ensure titles take up same space */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fruite .fruite-item .p-4 p {
    flex-grow: 1;
    margin-bottom: 1rem;
}
/*** Fruits End ***/

/* Related products normalization */
.vesitable .vesitable-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img {
    height: 230px; /* Fixed height for related product images */
    overflow: hidden;
    transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.vesitable .vesitable-item .p-4 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-top: 0;
}

.vesitable .vesitable-item .p-4 h4 {
    min-height: 2.4em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vesitable .vesitable-item .p-4 p {
    flex-grow: 1;
}


/*** vesitable Start ***/
.vesitable .owl-stage {
    margin: 50px 0;
    position: relative;
}

.vesitable .owl-nav .owl-prev {
    position: absolute;
    top: -8px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;

}

.vesitable .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.vesitable .owl-nav .owl-next {
    position: absolute;
    top: -8px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** vesitable End ***/


/*** Banner Section Start ***/
.banner .banner-btn:hover {
    background: var(--bs-primary);
}
/*** Banner Section End ***/


/*** Facts Start ***/
.counter {
    height: 100%;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.counter i {
    font-size: 60px;
    margin-bottom: 25px;
}

.counter h4 {
    color: var(--bs-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.counter h1 {
    margin-bottom: 0;
}
/*** Facts End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    color: var(--bs-primary);
    padding: 5px 25px;
    border: 1px solid var(--bs-secondary);
    border-radius: 20px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}
/*** testimonial End ***/


/*** Single Page Start ***/
.pagination {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.pagination a {
    color: var(--bs-dark);
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.pagination a.active {
    background-color: var(--bs-primary);
    color: #fff;
    border-color: var(--bs-primary);
    box-shadow: 0 8px 20px rgba(25, 135, 84, 0.25);
}

.pagination a:hover:not(.active) {
    background-color: var(--bs-primary);
    color: #fff;
    border-color: var(--bs-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(25, 135, 84, 0.2);
}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}
/*** Single Page End ***/


/*** Footer Start ***/
.footer .footer-item .btn-link {
    line-height: 35px;
    color: rgba(255, 255, 255, .5);
    transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
    color: var(--bs-secondary) !important;
}

.footer .footer-item p.mb-4 {
    line-height: 35px;
}
/*** Footer End ***/


/*** Glassmorphism - bullets & widgets ***/

/* Carousel indicator bullets */
.carousel-indicators [data-bs-target] {
    background-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.carousel-indicators .active {
    background-color: var(--bs-primary);
    border-color: rgba(255, 255, 255, 0.9);
}

/* Dropdowns / mega-menu widgets */
.navbar .dropdown-menu,
.mega-menu {
    border-radius: 20px !important;
    background-color: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.dropdown .dropdown-menu a:hover {
    background: rgba(25, 135, 84, 0.08);
    color: var(--bs-primary);
}

#searchModal .modal-content {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* WhatsApp widget */
.wa-widget {
    border-radius: 22px;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.wa-msg {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
}

.whatsapp-chat,
.back-to-top {
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

/* Sidebar widgets (shop filters) */
.sticky-sidebar .list-group {
    border-radius: 18px !important;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.sticky-sidebar .list-group-item {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.06);
}

.sticky-sidebar .p-4.bg-primary {
    border-radius: 20px !important;
    background: linear-gradient(135deg, rgba(25, 135, 84, 0.9), rgba(26, 26, 26, 0.85)) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.badge.rounded-pill {
    backdrop-filter: blur(4px);
}

/* Generic cards & accordions used across FAQ / Solutions / Contact */
.card {
    background-color: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 18px !important;
}

.accordion-item {
    background-color: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 16px !important;
    overflow: hidden;
    margin-bottom: 12px;
}

.accordion-button {
    background-color: transparent !important;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-primary) !important;
    box-shadow: none !important;
}

/* Page header caption strip */
.page-header .container {
    position: relative;
    z-index: 1;
}
/*** Glassmorphism End ***/


/*** Premium Products Start ***/
.fruite .fruite-item,
.vesitable .vesitable-item {
    border: none !important;
    border-radius: 20px !important;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.fruite .fruite-item:hover,
.vesitable .vesitable-item:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
    transform: translateY(-6px);
}

.fruite .fruite-item .fruite-img,
.vesitable .vesitable-item .vesitable-img {
    border-radius: 20px 20px 0 0;
}

/* Category badge -> frosted glass pill */
.fruite-item > .position-absolute.bg-secondary,
.fruite-item > .position-absolute.bg-primary {
    background-color: rgba(20, 20, 20, 0.55) !important;
    backdrop-filter: blur(10px) saturate(160%);
    -webkit-backdrop-filter: blur(10px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px !important;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px !important;
}

.fruite .fruite-item .p-4,
.vesitable .vesitable-item .p-4 {
    padding: 1.75rem !important;
}

.fruite .fruite-item .p-4 h4 {
    font-size: 1.15rem;
    letter-spacing: 0.2px;
}

.fruite .fruite-item .p-4 p {
    color: #6b7280;
    font-size: 0.92rem;
}

/* Ergonomic, premium CTA row: two compact buttons side by side, never stretched */
.fruite-item .p-4 .d-flex.gap-2,
.vesitable-item .p-4 .d-flex.gap-2 {
    flex-wrap: wrap;
}

.fruite-item .p-4 .btn,
.vesitable-item .p-4 .btn {
    flex: 0 0 auto;
    letter-spacing: 0.3px;
}
/*** Premium Products End ***/


/*** Modern Global Polish Start ***/
html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--bs-primary);
    color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bs-light);
}

::-webkit-scrollbar-thumb {
    background: var(--bs-secondary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bs-primary);
}

a {
    transition: color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.2px;
}

/* Section eyebrow labels ("Nos Solutions", "Nos Produits"...) */
h4.text-secondary,
h6.text-secondary,
h5.text-secondary {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--bs-primary) !important;
    position: relative;
    padding-left: 18px;
}

h4.text-secondary::before,
h6.text-secondary::before,
h5.text-secondary::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background: var(--bs-primary);
}

/* Centered eyebrow labels: the left-aligned dash marker doesn't make sense
   next to centered text, so drop it and the padding reserved for it. */
.text-center h4.text-secondary,
.text-center h5.text-secondary,
.text-center h6.text-secondary {
    padding-left: 0;
}
.text-center h4.text-secondary::before,
.text-center h5.text-secondary::before,
.text-center h6.text-secondary::before {
    display: none;
}

/* Buttons: consistent premium hover lift */
.btn-primary,
.btn-outline-primary {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.btn-primary:hover,
.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(25, 135, 84, 0.25);
}

/* Forms: clean modern inputs with a subtle red focus ring */
.form-control,
.form-select {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.12);
}

/* Interactive cards (solutions, services) get a soft lift on hover */
.card {
    transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.35s ease;
}

a .card:hover,
.card.h-100:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14) !important;
}

.card-img-top {
    border-radius: 18px 18px 0 0 !important;
}

/* Small badges used as tags on cards -> frosted pill, consistent with product cards */
.card .badge.position-absolute {
    background-color: rgba(20, 20, 20, 0.55) !important;
    backdrop-filter: blur(10px) saturate(160%);
    -webkit-backdrop-filter: blur(10px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.7rem;
    padding: 6px 12px;
}

/* Footer: subtle accent + link hover slide */
.footer {
    position: relative;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary), rgba(25, 135, 84, 0));
}

.footer .footer-item .btn-link {
    position: relative;
    padding-left: 0;
    transition: 0.3s ease, padding-left 0.3s ease;
}

.footer .footer-item .btn-link:hover {
    padding-left: 6px;
}

.footer .btn-outline-secondary {
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    backdrop-filter: blur(6px);
}

.footer .btn-outline-secondary:hover {
    transform: translateY(-3px);
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
    color: #fff !important;
}
/*** Modern Global Polish End ***/

