body {
    font-family: "Poppins", sans-serif;
}

a,
a:hover {
    text-decoration: none;
}

.mobile-body {position: relative;
    max-width: 430px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    padding: 0 0px 110px 0px  ;
}

.carousel {
    background-color: #14212b;

    .carousel-caption {
        position: static;
        padding: 10px 0px;
        font-size: 13px;
    }
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;

    .menu-icon {
        font-size: 24px;
        color: black;
    }
}

.offcanvas {
    ul {
        list-style: none;
        padding: 0px;
        margin: 0px;
    }

    a {
        color: white;
        line-height: 40px;
    }
}

.google-container {
    display: flex;
    align-items: center;
    background-color: #fbfbfb;
    border: 1px solid #d4edda;
    border-radius: 8px;
    padding: 2px 10px;
    width: 100%;
    border: 1px dashed #898686;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;

    .google-text {
        font-size: 13px;
        font-weight: 500;
    }

    .google-rating {
        font-size: 10px;
    }
}

.banner {
    border: 1px solid #dbdce0;
    box-sizing: border-box;
    margin: 0 0 10px;
    border-radius: 9px;
    padding: 20px 20px 0;

    .product__title {
        color: #333;
        font-size: 36px;
        text-align: center;
        margin: 0 0 14px;
        font-weight: 600;
    }
}

.customerReviews-box {
    border-radius: 5px;
    padding: 6px 6px 2px 8px;
    margin-bottom: 10px;
    text-align: center;

    .reviews p {
        margin: 0 0 2px;
        font-size: 11px;
        line-height: 11px;
        font-weight: 700;
        text-align: center;
        text-decoration: underline;
    }

    .customerReviews {
        display: inline-flex;
        align-items: center;
        margin: 0 auto;
    }

    .star-main {
        position: relative;
        top: 1px;
        display: flex;
        margin-right: 4px;

        .star {
            width: 13px;
            height: 13px;
            margin-left: 2.46px;
            display: flex;
            align-items: center;
        }
    }

    .start-rait {
        font-size: 16px;
        line-height: 22px;
        font-weight: 700;
        white-space: nowrap;

        span {
            font-size: 8px;
            line-height: 11px;
        }
    }
}

.btn-cus-1 {
    transition: all .3s ease;
    margin: 0 0 5px;
    background-color: #daf1f6;
    padding: 13px 20px !important;
    cursor: pointer;
    width: 100%;
    text-align: center;
    border-radius: 30px;
    border: solid 1px #cadbde;
    font-weight: 500;
    color: #333;
    letter-spacing: 0;
    font-size: 14px;
    display: block;
    line-height: 1.1;

    &.active {
        background-color: #085f72;
        color: #fff;
    }
}

.shake-up-down {
    display: inline-block;
    animation: upDownShake 1s infinite;
}

@keyframes upDownShake {
    0% {
        transform: translateY(0);
    }

    10% {
        transform: translateY(-5px);
    }

    20% {
        transform: translateY(5px);
    }

    30% {
        transform: translateY(-5px);
    }

    40% {
        transform: translateY(5px);
    }

    50% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(0);
    }
}

.delivery-timeline {
    border: 2px solid #4CAF50;
    padding: 14px;
    border-radius: 10px;
    max-width: 600px;
    margin: auto;
    text-align: center;
    display: flex;
    gap: 10px;

    .timeline-step {
        flex: 1;
        position: relative;
        flex-grow: 1;

        strong {
            font-size: 12px;
        }

        .circle {
            background: #4CAF50;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            margin: auto;
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        p {
            margin-top: 10px;
            font-size: 13px;
            line-height: 1.1;
        }
    }
}

.box-1 {
    max-width: 500px;
    margin: 10px auto 3px auto;
    background: #e6f4ff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.block-call-gkk {
    position: relative;
    background: #fff50030;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 9px;
    line-height: 17px;
    padding: 12px 20px;
    color: #505050;
    line-height: 1.2;
    display: flex;
    gap: 10px;
}

.box-2 {
    padding: 10px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.box-3 {
    background-color: white;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px;
}

.progress-ratting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.product-image-gallery {
    display: flex;
    align-items: center;
    gap: 10px;

    img {
        border-radius: 5px;
        width: 100%;
        height: 67px;
        object-fit: cover;
    }
}

.faq-ul li h3,
.faq-ul li h4,
.faq-ul li h5 {
    display: inline;
    font-size: 16px;
}

.faq-ul li p {
    font-size: 16px;
    line-height: 26px;
}

.box-4 {
    padding: 15px;
    border-radius: 10px;
    color: white;
    text-align: center;
    background: #E52787;
    background: linear-gradient(90deg, rgba(229, 39, 135, 1) 0%, rgba(131, 70, 217, 1) 100%);
}

.footer{position: fixed; bottom: 0px; left: 0px; right: 0; max-width: 430px; margin: 0 auto; background-color: white;}

.order-button {
    background-color: #218838;
    color: white;
    padding: 5px 15px;
    font-size: 24px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    border: 2px solid #28a745;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.line-1 {
    background-color: #28a745;
    color: black;
    text-align: center;
    padding: 5px 0;
    font-size: 15px;
}


@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.price {
    font-size: 24px;
    color: #000000;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

.old-price {
    text-decoration: line-through;
    color: #a1a1a1;
    font-size: 20px;
}

.new-price {
    color: #000000;
    font-size: 28px;
    font-weight: bold;
    animation: pulse 1s infinite;
}


.fs-12px{font-size: 12px;}

.contact-page{
    input, tel, email, textarea, button{width: 100%; padding: 10px 20px; border-radius: 30px; border: 1px solid #666; margin-bottom: 20px; letter-spacing: 1px; font-size: 16px;}
}