.web-logo {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}


@keyframes weblogomoveGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/*.web-logo::before {*/
/*    content: "\F23B";*/
/*    font-family: "bootstrap-icons";*/
/*    font-style: normal;*/
/*    font-weight: normal;*/
/*    font-size: 40px;*/
/*    margin-right: 8px;*/
/*    background: linear-gradient(270deg, #592efc, #e8440d, #592efc);*/
/*    background-size: 600% 600%;*/
/*    animation: weblogomoveGradient 5s ease infinite;*/
/*    -webkit-background-clip: text;*/
/*    -webkit-text-fill-color: transparent;*/
/*    background-clip: text;*/
/*    color: transparent;*/
/*}*/


.web-logo::after {
    content: "Kesho";
    font-family: "bootstrap-icons";
    font-style: normal;
    font-weight: bold;
    font-size: 26px;
    /*border-bottom: 2px solid transparent;*/
    border-image-source: linear-gradient(270deg, #592efc, #e8440d, #592efc);
    border-image-slice: 1;
    background: linear-gradient(270deg, #592efc, #e8440d, #592efc);
    background-size: 600% 600%;
    animation: weblogomoveGradient 5s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /*padding-bottom: 5px;*/
}

section {
    padding: 40px 0px;
}

#navbarNavDropdown ul.navbar-nav.px-3 {
    align-items: anchor-center;
}



/*a.nav-att {*/
/*    border: 1px solid;*/
/*    border-radius: 5px;*/
/*    margin: 5px;*/
/*}*/

.referral-nav a {
    color: #ff844c;
    text-decoration: none;
    background: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    border: 1px solid #ff844c;
    display: flex
;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.referral-nav a i.bi.bi-percent {
    background: #ff844c;
    color: #fff;
    border-radius: 50%;
    padding: 3px 5px;
    font-size: 12px;

}

.header .dropdown-item {
    /*white-space: inherit;*/
}

.login-form .container {
    max-width: 350px;
}

#product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#product-list .card {
    flex: 1 100%;
}

#product-list img {
    max-height: 150px;
    object-fit: contain;
}

#product-wishlist-block {
    position: relative;
    display: block;

}

.form-heading {
    font-size: 20px;
    text-align: center;
}

.subscriptio-sec {
    background: linear-gradient(to right, #f2f3f6, #ebe4ff);
}

.subscriptio-sec .duration {
    display: flex;
    flex-wrap: wrap;
}

.subscriptio-sec ul {
    padding-left: 0;
}

.subscriptio-sec ul li strong::after {
    content: ":";
    float: inline-end;
    padding-right : 20px  ;
}

.subscriptio-sec ul li strong {
    flex: 0 1 30%;
}
.subscriptio-sec ul  li {
    display: flex
;
    flex-wrap: wrap;
}

.subscriptio-sec img {
    border-radius: 20px;
}

.subscriptio-sec #pay-button {
    position: relative;
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    border: transparent;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
     min-width: 150px;
         box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.subscriptio-sec #pay-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #e8440d 0%, #ff7300 100%);
    border-radius: 50px;
    z-index: -1;
    transition: left 0.5s ease;
}

.subscriptio-sec #pay-button:hover::before {
    left: 0;
}

.subscriptio-sec #pay-button:hover {
    transform: scale(1.05);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/*.subscriptio-sec #pay-button {*/
/*    min-width: 200px;*/
/*    background-color: #0f3c27;*/
    /*color: #198754;*/
/*}*/

.product-profile-deatils h1 {
    margin-top: 10px;
    font-size: 30px;
}

/*.product-profile-deatils-block img {*/
/*    max-height: 300px;*/
/*    object-fit: contain;*/
/*    padding: 20px 0;*/
/*}*/

.product-profile-images .carousel-dark .carousel-caption {
    position: relative;
}

.product-profile-deatils {
    font-weight: bold;
}

.product-profile-deatils .block {
    display: flex;
    flex-wrap: wrap;
}

.product-profile-deatils .block p {
    flex: 1 48%;
}

.product-profile-deatils span {
    font-weight: 400;
    position: relative;
}

.stores-list .stores-details-block {
    display: flex;
    flex-wrap: wrap;
}

.stores-list .stores-details-block p {
    flex: 1 48%;
}

.stores-list .carousel img {
    max-height: 300px;
    object-fit: contain;
    padding: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #000;
    border-radius: 50px;
    padding: 10px;
    background-size: 50%;
}

.product-details-block {
    max-height: 100px;
    /* Initial height */
    overflow: hidden;
    /* Hide overflow content */
    transition: max-height 0.3s ease-in-out;
    /* Smooth transition for expanding */
    display: flex;
    flex-wrap: wrap;
}

/* When expanded, show the full content */
.product-details-block.expanded {
    max-height: none;
    /* Remove height restriction */
}

@media all and (max-width: 767px) {
    
        .subscriptio-sec .duration>div {
    flex: 0 1 40%;
}
    
    .subscriptio-sec ul  {
       padding-left: 0;
}
    .subscriptio-sec ul li strong {
    flex: 0 1 50%;
}

    .subscriptio-sec {
        padding: 30px 15px;
    }

    .subscriptio-sec #pay-button {
        width: 100%;

    }

    .stores-details-block {
        max-height: 0px;
        /* Initial height */
        overflow: hidden;
        /* Hide overflow content */
        transition: max-height 0.3s ease-in-out;
        /* Smooth transition for expanding */
    }

    /* When expanded, show the full content */
    .stores-details-block.expanded {
        max-height: none;
        /* Remove height restriction */
    }

    .stores-list .stores-details-block p {
        flex: 1 100%;
    }

}


@media all and (max-width: 1199px) {

.header ul.navbar-nav li.nav-item {
    /*border-bottom: 1px solid;*/
        box-shadow: var(--bs-box-shadow-lg) !important;
                padding: 5px 15px;
}


    .header  .offcanvas-header {
    padding-bottom: 0;
}
}

@media only screen and (min-width: 768px) and (max-width : 991px) {}

@media only screen and (min-width: 992px) and (max-width : 1199px) {}