.image-container {
    width: 300px;
    /* Set the width of the container */
    height: 300px;
    /* Set the height of the container */
    overflow: hidden;
    /* Hide any overflowing content */
}

.zz svg {
    border-radius: 10px;
    align-items: center;
}

.image-container img {
    width: 100%;
    /* Make the image fill the container horizontally */
    height: 100%;
    /* Make the image fill the container vertically */
    object-fit: contain;
    /* Scale the image to fit within the container while preserving aspect ratio */
    display: block;
    /* Ensure the image is displayed as a block element */
}



.q {
    align-items: center;
}

.gps {
    gap: 10px;
}

.ctn {
    align-items: center;
}

.jx {
    justify-content: space-between;
}

.cb {
    font-weight: 800;
}

.xp {
    padding: 20px 30px;
}

li,
p {
    font-family: ttm, ttn, ttb, effra, Georgia, 'Times New Roman', Times, serif, effra;
    list-style: none;
    position: relative;
}

li::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    /* Adjust this value to control the distance of the underline from the text */
    height: 1px;
    line-height: 12px;
    /* Thickness of the underline */
    /* Color of the underline */
}

.cl {
    background-color: indigo;
    color: white;
    font-size: 10px;
    text-align: center;
    width: 50px;
    padding: 5px 5px;
    font-weight: 700;
    border-radius: 30px;
}


.b10 {
    border-radius: 10px;
}

.spn {
    background-color: #4c56af;
    border-radius: 40px;
    padding: 5px 15px;
    font-size: 12px;
    color: white;
    font-weight: 800;
}

.hd {
    display: none;
}

.mb15 {
    margin-bottom: 15px;

}

.nn {
    margin-top: 2px;
    display: flow-root;
    height: 1px;
    background-color: #d6d8e4;
    width: 100%;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.cart-icons-img {
    height: 30px;
}

.circle {

    width: 20px;
    height: 20px;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid;
}

.circle:hover {
    background-color: rgb(151, 173, 153);
    animation: forwards;
    transition: all 0.5s ease-out;
}



.p20 {
    padding: 20px;
}

.m20 {
    margin: 20px 0 20px 0;
}

.bnd {
    background-color: #2196F3;
    height: 4px;

    width: 30px;
    border-radius: 30px;
}

.mr20 {
    margin-left: 20px;
}

.xi0,
.xi1,
.xi2,
.xi3,
.xi4 {
    border-radius: 30px;
    padding: 4px 10px;
    font-size: small;
    font-family: ttb;
}

.xi2 {
    background-color: gray;
    color: white;
}

.xi1 {
    background-color: #4c56af;
    color: white;
}

.xi0 {
    list-style-type: none;
    background-color: rgb(255, 157, 0);
    color: black;
}

.na {
    background: #ccc;
    color: #f4f4f4;
    transition: all 0.5s ease-in-out;
}

.number {
    margin: 0px 20px;
    font-family: 'aveb';
    font-size: 14px;
}

.cb {
    flex-direction: column;
}

.plus,
.minus {
    font-weight: bold;
}

main {
    display: flex;
    flex-direction: column;

}

.gp {
    gap: 6px;
}

.m5 {
    margin: 5px 52px;
}

.fba {
    flex-basis: 80%;
}



.bgp {
    gap: 20px;
}

.ac {
    align-items: center;
}

.ffc {
    flex-flow: column;
}

.in {
    border: 1px solid #ccc;
    padding: 0.5em 0.9em;
    width: 80px;
    border-radius: 5px;
}

button {
    cursor: pointer;
    border: 1px solid #f4f4f4;
    /*background: #f0f0f0; */
    color: #333;
    padding: 10px 20px;
    border: none;
    font-weight: 800;
    border-radius: 26px;
    font-family: 'ttb';
}

.imgr {
    height: 300px;
    width: 300px;
}

.bd {
    font-weight: 800;
    height: 70px;
}

.hidden {
    display: none;
}

.imgx {
    position: relative;
    display: flex;
}

.imgx::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(104, 187, 121, 0.24) 0px,
            rgba(104, 187, 121, 0) 24px);
    opacity: 0;
}

.imgx {
    height: 100%;
    width: 100%;
}

/*
.vo {
    width: 300px;
}
*/
.hw1 {
    width: 100px;
    height: 100px;
}

.w1 {
    width: 90%;
}

.w50 {
    width: 50%;
}

/* CSS for the product name container */
.product-name-container {
    position: relative;
    /* Ensure proper positioning of the hover text */
}

/* CSS for the fixed-length product name */
.product-name {
    width: 100px;
    /* Adjust the width as needed */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    /* Display ellipsis (...) for overflow text */
}

/* CSS for the full product name on hover */
.product-name-hover {
    position: absolute;
    top: 100%;
    /* Position the hover text below the fixed-length text */
    left: 0;
    z-index: 999;
    /* Ensure the hover text is above other content */
    background-color: white;
    /* Optional: Add background color for readability */
    padding: 5px;
    /* Optional: Add padding for aesthetics */
    border: 1px solid #ccc;
    /* Optional: Add border for aesthetics */
    display: none;
    /* Hide the hover text by default */
}

/* Show the full product name on hover */
.product-name-container:hover .product-name-hover {
    display: block;
}

/* Styles for the first <li> */
li.ab.gps img {

    /* Your styles here */
    flex-basis: 20%;
}

/* Styles for the second <li> */
li.ab.gps h4 {
    /* Your styles here */
    flex-basis: 60%;
}

/* Styles for the third <li> */
li.ab.gps h5 {
    /* Your styles here */
    flex-basis: 10%;
}



@media screen and (max-width: 900px) {
    .mkp {
        margin-top: 30px;
        margin-bottom: 15px;
    }


    .fw {
        flex-wrap: wrap;
    }

    .w1 {
        width: 100%;
    }

    button {
        font-size: 14px;
        /* margin: auto; */
        /* width: 80%; */


    }

    .round {
        padding: 0 !important;
        border-radius: 50%;
        height: 40px;
        width: 40px;
    }

    .mr20 {
        margin-left: 5px;
    }



    .col {
        flex-direction: column;
    }

    .csm {
        flex-basis: 100%;
        gap: 10;


    }

    .bgp {
        flex-basis: 100%;
    }
}


/* Button loading styles */
.submit {
    /* background-color: #FF7F00; */

    border: none;
    font-size: 20px;
    font-weight: 600;
    height: 50px;
    text-transform: uppercase;
    padding: 0.5em 1.25em;

    border-radius: 0.15em;
    transition: 0.3s;


}

.submit:hover {
    background-color: #f6f6f6;
    color: black;
}

.submit:focus {
    outline: 0.05em double cadetblue;
    outline-offset: 0.05em;
}


@keyframes button-anim {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

.submit.loading {
    color: transparent;
}

.submit.loading::after {
    opacity: 1;
}

/* em values are used to adjust button values such as padding, radius etc. based on font-size */
.tick {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

.tick:before,
.tick:after {
    background: white;
    position: absolute;
    content: ' ';
    left: 20%*1.5;
    right: 20%*1.5;
    top: 50%;
    height: 2px;
    bottom: auto;
}

.tick-success {
    background: darkgreen;
    transform: rotate(45deg);
}

.tick:after {
    height: 2px;
    bottom: 25%;
    left: 30%;
    right: 45%;
    top: auto;
}

.tick:before {
    width: 3px;
    height: auto;
    bottom: 25%;
    top: 20%;
    left: 55%;
    right: auto;
}