body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

:root {
    --primary: #e62e04;
    --hov-primary: #e62e04;
    --soft-primary: rgba(230, 46, 4, 0.15);
}

#map {
    width: 100%;
    height: 250px;
}

#edit_map {
    width: 100%;
    height: 250px;
}

.pac-container {
    z-index: 100000;
}


.top-banner {
    position: relative;
}

.marquee {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    animation: marquee 30s linear infinite;
}

.marquee span {
    margin-right: 15px;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Modify the animation duration for smaller screen sizes */
@media (max-width: 767px) {
    .marquee {
        animation-duration: 15s !important;
    }
}

@media (max-width: 575px) {
    .marquee {
        animation-duration: 10s !important;
    }
}


/* Floating Popup */
.floating-popup {
    position: fixed;
    bottom: 20px;
    left: -100%;
    /* Initially hidden off-screen */
    z-index: 9999;
    transition: left 0.8s ease;
    /* Slide animation */
}

.popup-content {
    background-color: transparent;
    /* Transparent background */
    padding: 20px;
    max-width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    /* White color */
    font-size: 24px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent black background */
    padding: 5px;
    border-radius: 50%;
    /* Rounded shape */
}

.close:hover,
.close:focus {
    background-color: rgba(0, 0, 0, 0.7);
    /* Darker semi-transparent background on hover */
}


.btn-pink-moon {
    background: #ec008c;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #fc6767, #ec008c);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #fc6767, #ec008c);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #fff;
    border: 3px solid #eee;
}

.btn-rounded {
    border-radius: 35px;
}

.btn-fab {
    height: 50px;
    width: 53px;
    border-radius: 50%;
}

hr {
    border-top: 1px solid #9E9E9E;
}

.btn-orange-moon {
    background: #fc4a1a;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #f7b733, #fc4a1a);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #f7b733, #fc4a1a);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: #fff;
    border: 3px solid #eee;
}



.aiz-card-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(135, 14, 36, 1);
    /* Border color set to #891228 */
    border-radius: 40px;
    /* Adjust border radius as needed */
    overflow: hidden;
    /* Ensure content overflow is hidden */

    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin: 15px 0;
    overflow: hidden;
}

.aiz-card-box .product-image-wrap{
    overflow: hidden;
    transition: 0.5s !important;
}
.aiz-card-box:hover img.product-image {
    transform: scale(2) !important;
    overflow: hidden !important;
    transition: 0.5s;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    /* border-color: rgba(135, 14, 36, 0.7); */
}

@keyframes sparkle {
    0% {
        color: #ffcc00;
    }

    /* Start color of sparkle animation */
    50% {
        color: #fff;
    }

    /* Middle color of sparkle animation */
    100% {
        color: #ffcc00;
    }

    /* End color of sparkle animation */
}

.sparkle-animation {
    animation: sparkle 1s infinite;
    /* Duration and repetition of sparkle animation */

    color: black !important;
    /* Set text color to black */
    font-weight: bold;
}

.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 10px;
    /* Adjust padding as needed */
}

.order-btn .icon {
    font-size: 1.5em;
}

.order-btn .order-text {
    font-weight: bold;
    font-size: 1.1em;
    margin-left: 5px;
    /* Adjust margin as needed */
}

@media (max-width: 576px) {

    /* Adjust max-width based on your mobile breakpoint */
    .order-btn .icon {
        font-size: 1.2em;
    }

    .order-btn .order-text {
        font-size: 1em;
    }
}


.zoom-effect img {
    animation: zoom-in 2s infinite alternate;
}

@keyframes zoom-in {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.rounded-cr {
    border-radius: 9px;
}


.navbar {
    background-color: #f0f0f0;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}

.playstore-icon {
    /* Your styles for the Play Store icon here */
    width: 60%;
    height: 50px;
    cursor: pointer;
    margin-right: 10px;
}

.close-icon {
    /* Your styles for the close icon (X symbol) here */
    font-size: 20px;
    cursor: pointer;
}
.download-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    background: #fff;
    border-radius: 60%;
    padding: 8px;
    border: 1px solid #000;
}

.download-icon i {
    color: #000;
    font-size: 24px;
}

.full-width-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}



/* CSS for mobile buttons */
.mobile-buttons {
    display: none;
}

@media (max-width: 768px) {

    /* Adjust the screen width (768px) as needed */
    .mobile-buttons {
        display: flex;
        justify-content: space-between;
        width: 100%;
        position: fixed;
        bottom: 61px;
        left: 0;
        z-index: 1000;
        /* Adjust the z-index to ensure the buttons appear above other elements */
    }

    .mobile-buttons button {
        flex: 1;
        max-width: 50%;
    }
}

.badge-custom.badge-stock{
    top: 40px !important;
}


