* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #fafafa;
}

section {
    padding: 50px 0px;
}

a {
    text-decoration: none !important;
}

/* ================= HEADER ================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: white;
    padding: 10px 0px;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}



.rating-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    border-radius: 12px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #5a4b43;
}

/* Stars */
.star {
    color: #f6a21a;
    font-size: 18px;
}

/* Rating text */
.rating-text {
    font-weight: 500;
    color: black;
}

/* Divider */
.divider {
    margin: 0 6px;
    color: #c9bfb8;
}

/* Devotees */
.devotees {
    color: #000000;
}

.content {
    height: 1500px;
    background: #ff0000;
}

.why-section {
    background-color: rgb(252, 244, 238);
}



.why-subtitle {
    color: #7a5c4d;
    font-size: 18px;
}

.why-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.why-icon {
    height: 111px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.why-card h5 {
    font-weight: 600;
    color: #4a2e1e;
    margin-bottom: 10px;
}

.why-card p {
    color: #7a6c64;
    font-size: 15px;
    margin-bottom: 0px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    transition: 0.3s ease;
}

.logo {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin-bottom: 0px;
}

.nav-menu a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #ff5a00;
    transition: 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.download-btn {
    padding: 10px 20px 15px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 12px;

    background: linear-gradient(to bottom, #f39a52, #c65a12);

    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.35),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15),
        0 4px 6px rgba(0, 0, 0, 0.15);

    transition: all 0.25s ease;
}

/* Hover */
.download-btn:hover {
    background: linear-gradient(to bottom, #f7a964, #d96a20);
    transform: translateY(-1px);
}

/* Click */
.download-btn:active {
    transform: scale(0.97);
    box-shadow:
        inset 0 3px 6px rgba(0, 0, 0, 0.25);
}

/* =============== MOBILE MENU =============== */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #6b3e00;
    border-radius: 2px;
    transition: 0.3s;
}

.Sanatan {
    font-size: 3rem;
    font-weight: 700;
    color: rgb(107, 62, 0);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgb(255, 234, 213);
    padding: 80px 15px;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 22px;
    z-index: 998;
}

.mobile-menu a {
    color: #ff5a00;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 20px;
    border-bottom: 1px solid #ff5a00;
}

.mobile-menu.active {
    right: 0;
}

/* =============== RESPONSIVE =============== */

@media (max-width: 900px) {

    .nav-menu,
    .call-btn {
        display: none;
    }

    .hamburger {
        display: flex;
        padding-left: 6px;
    }
}

/* Demo Content */

.content {
    padding-top: 110px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

/* ===== HERO ===== */
.hero {
    background-image: url(../images/bg-top-banner.jpg);
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-bg {
    background-image: url(../images/about-bg.png);
    background-position: center;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-bg {
    background-image: url(../images/blog-bg.jpg);
    background-position: center;
    background-size: cover;
}

.pooja-bg {
    background-image: url(../images/pooja-bg.jpg);
    background-position: center;
    background-size: cover;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 500;
    color: #000000
}


.hero p {
    font-size: 1rem;
    color: #000000
}




/* ===== MENU CARDS ===== */
.menu-card img {
    border-radius: 12px;
}




/* ===== PRODUCT CARDS ===== */
.product-card {
    background: #fff;
    border-radius: 14px;
    padding: 15px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}


.product-card:hover {
    transform: translateY(-6px);
}


.price {
    font-size: 22px;
    font-weight: 700;
    color: #7a1c12;
}


/* ===== FOOTER ICON ROW ===== */
.features {
    background: #efe3d7;
    padding: 40px 0;
    text-align: center;
}


.feature-item {
    font-weight: 600;
    color: #7a1c12;
}


/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .mobile-menu {
        padding: 102px 37px !important;
    }

    .nav-links {
        text-align: center;
        margin-top: 10px;
    }
}

.menu-section {
    background-color: #FBF0ED;
}





.menu-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 60%;
    transform: translateX(-50%);
    background: linear-gradient(#f6b44b, #e8962e);
    color: #5a2500;
    font-weight: 700;
    border-radius: 10px;
    padding: 10px 22px;
    font-size: 16px;
    border: none;
    box-shadow: 0 4px 0 #b86a14;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.2s;
}


.menu-btn span {
    margin-left: 6px;
    font-weight: 900;
}



.Freshly {
    font-weight: bold;
    color: #6b3e00;
}

/* Card */
.card {
    width: 100%;
    background: #f7eadc;
    border: none !important;
    box-shadow: none !important;
    height: 100% !important;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Image */
.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}




/* Extras */
.extras {
    font-size: 13px;
    color: #5a3b2e;
    text-align: right;
}

.extras p {
    margin-bottom: 4px;
    font-size: 0.9rem;
}






/* Heading Style */
.meal-plan {
    color: #6b1f0f;
    /* deep brown-red */
    font-size: 2.3rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 1.6rem;
    letter-spacing: 0.5px;
}

/* Tablet */
@media (max-width: 768px) {
    .meal-plan {
        font-size: 2.3rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .meal-plan {
        font-size: 1.5rem;
    }

    .meal-plan h1 {
        font-size: 20px;
        line-height: 1.3;
    }
}


.slick-slide {
    margin: 0 5px;
}


.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

.slick-slide img {
    display: block;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loding .slick-slide {
    visibility: hidden;
}

.slider {
    position: relative;
}


.slider .prevArrow {
    position: absolute;
    top: 40%;
    left: -5%;
    color: #8b0000;
    cursor: pointer;
    font-size: 2rem;
}

.slider .nextArrow {
    position: absolute;
    top: 40%;
    right: -5%;
    color: #8b0000;
    cursor: pointer;
    font-size: 2rem;
}


@media only screen and (max-width: 1024px) {
    .slider .nextArrow {
        right: 43%;
    }

    .slider .prevArrow {
        left: 43%;
    }
}


@media only screen and (max-width: 768px) {
    .slider .nextArrow {
        right: 42%;
        top: 105% !important;
    }

    .slider .prevArrow {
        left: 42%;
        top: 105% !important;
    }

    .logo a {
        display: block !important;
    }

    #elctrnic {
        width: 100%;
    }
}

.google-play img {
    width: 200px;
}

@media only screen and (max-width: 425px) {
    .slider .nextArrow {
        right: 35%;
    }

    .about-bg {
        height: 85vh !important;
    }

    .rx-icon-circle {
        margin: 0px !important;
    }

    .rx-feature-box {
        padding: 0px !important;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .rx-feature-title {
        text-align: left;
        font-size: 0.8rem !important;
    }

    .sd-main-box {
        padding: 0.9rem !important;
    }

    .jd-fixed-download-btn {
        right: 11% !important;
    }

    .pb-booking-box {
        padding: 0.9rem !important;
    }

    .jd-pooja-img {
        height: 100% !important;
    }

    section {
        padding: 30px 0px;
    }

    .jd-review-wrap {
        padding: 0px !important;
    }

    .astro-info {
        margin-left: 0px !important;
        margin-top: 15px;
    }

    .section-title::before,
    .section-title::after {
        display: none;
    }


    .footer {
        padding: 30px 0px !important;
    }

    .app-section {
        padding: 30px 20px 0px 20px !important;
    }

    .astro-btn {
        width: 100% !important;
    }

    .astro-title p {
        text-align: left;
    }

    .stat-item {
        text-align: left;
    }

    .Sanatan {
        font-size: 2rem !important;
        font-weight: 700;
        color: rgb(107, 62, 0);
    }



    .why-subtitle {
        text-align: center !important;
    }

    .mobile-menu {
        padding: 115px 14px !important;
    }

    .slider .prevArrow {
        left: 35%;
    }

    h2 {
        font-size: 60px;
    }
}

.feature-item img {
    height: 95px;
    margin-bottom: 8px;
}

.features-strip {
    background-color: #F5E9DD;
}



/* Logo */
.footer-logo img {
    width: 170px;
}

.brand-name {
    color: #5a1f12;
    font-weight: 700;
    margin-top: 10px;
}



/* Responsive */
@media (max-width: 768px) {
    .brand-name {
        font-size: 18px;
    }

    .astro-title p {
        text-align: left;
    }

    .stat-item {
        text-align: left;
    }
}

/* Section background */
.features {
    background: #f3e6d8;
    padding: 60px 0;
}

/* Column divider (desktop only) */
.feature-col {
    padding: 20px 30px;
    position: relative;
}

@media (min-width: 768px) {
    .feature-col:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: #e2d3c3;
    }
}

/* Images */
.feature-img {
    max-width: 100%;
    margin-bottom: 15px;
}

/* Title */
.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #5a1f12;
    margin-bottom: 8px;
}

/* Text */
.feature-text {
    color: #6b4a3a;
    font-size: 16px;
    margin: 0;
}

/* Check colors */
.check-green {
    color: #2e7d32;
    margin-right: 6px;
}

.check-orange {
    color: #d97706;
    margin-right: 6px;
}

/* Mobile spacing */
@media (max-width: 767px) {
    .features {
        padding: 40px 0;
    }

}

.slick-dots {
    display: flex;
    justify-content: center;

    margin: 0;
    padding: 1rem 0;

    list-style-type: none;

    li {
        margin: 0 0.25rem;
    }

    button {
        display: block;
        width: 1rem;
        height: 1rem;
        padding: 0;

        border: none;
        border-radius: 100%;
        border: 1px solid #ff4d00;
        background-color: transparent;
        text-indent: -9999px;
    }

    li.slick-active button {
        background-color: #ff4d00;
    }

}


.testimonial-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.tithi-bg {
    background-image: url(../images/plan-bg.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
}

.feature-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    font-size: 22px;
    color: #4a2e1e;
}

/* Custom Check Icon */
.feature-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #e67e22;
    font-size: 20px;
}

.suvichar-section {
    background: #f8f3ef;
    background-image: url(../images/plan-bg.jpg);
    /* optional */
    background-size: cover;
}


.suvichar-subtitle {
    font-size: 18px;
    color: #7a5c4d;
}

.suvichar-box {
    position: relative;
    max-width: 700px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.suvichar-text {
    font-size: 26px;
    color: #4a2e1e;
    line-height: 1.6;
    margin: 0;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn img {
    width: 28px;
}

/* Avatar */
.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

/* Name */
.testimonial-header h3 {
    font-size: 20px;
    color: #5a1f12;
    margin-bottom: 4px;
}

/* Mobile */
@media (max-width: 480px) {

    .avatar {
        width: 48px;
        height: 48px;
    }
}



.btns-close {
    background-color: transparent;
    color: white;
    border: none;
}

.mrp-price .price {
    text-decoration: line-through;
    font-size: 1.2rem;
}

.qty-wrapper {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 215, 150, 0.6);
    border-radius: 6px;
    overflow: hidden;
    background: linear-gradient(180deg, #ff7a1a, #ff5a00);
}

.qty-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    color: #ffcc80;
    font-size: 22px;
    cursor: pointer;
    transition: 0.2s;
}

.qty-btn:hover {
    background: rgba(255, 215, 150, 0.15);
}

#qty {
    width: 50px;
    height: 42px;
    text-align: center;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 16px;
}

.cart-img img {
    height: 120px;
    object-fit: cover;
}

.cart-image {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 20px;
    display: block;
}

.cart-card h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.cart-card p {
    font-size: 14px;
    color: black;
    text-align: center;
    margin-bottom: 22px;
    line-height: 1.4;
}


.pay-icons {
    height: 2rem;
}

.btn:hover {
    background-color: transparent !important;
    color: white !important;
}

.top-bar {
    background: #ffb3a7;
    font-size: 14px;
    text-align: center;
    padding: 6px 0px 6px 17px;
    font-weight: 600;
}

.checkout-box {
    background: #fff;
    border-radius: 16px;
    margin: 12px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


.order-summary {
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: black;
}

.save-box {
    background: #dff9ea;
    color: #099268;
    padding: 8px;
    border-radius: 8px;
    font-size: 14px;
    margin: 10px 0;
    text-align: center;
}

.coupon-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.coupon-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
}

.coupon-btn {
    color: #007bff;
    font-weight: 600;
    background: none;
    border: none;
}

.unlock {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin-top: 6px;
}

.phone-box {
    margin-top: 3px;
    font-size: 1rem;
}

.phone-box input {
    border-radius: 10px;
    height: 48px;
    font-size: 14px;
}

.bottom-icons {
    display: flex;
    justify-content: space-around;
    font-size: 11px;
    color: #777;
    margin-top: 25px;
}



#coupons {
    background-color: transparent;
    text-align: left;
    padding: 0px;
    color: black;
}

.btn-close {
    color: white !important;
}

.total {
    font-size: 1rem;
}

.otp-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.otp-sub {
    font-size: 14px;
    color: #333;
}

.otp-sub span {
    font-weight: 600;
}

.otp-inputs {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
}

.otp-inputs input {
    width: 60px;
    height: 55px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    outline: none;
    transition: .2s;
}

.otp-inputs input:focus {
    border-color: #000;
}

.resend {
    font-size: 13px;
    color: #666;
}

.resend span {
    color: #000;
    font-weight: 600;
}

.form-check {
    font-size: 13px;
    color: #666;
    margin-top: 10px;
}

@media(max-width:420px) {
    .otp-inputs input {
        width: 50px;
        height: 50px;
    }
}

.phone-bar {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 21px auto;
}

.phone-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.phone-icon {
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.edit-btn {
    border: 1px solid #ccc;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.edit-btn:hover {
    background: #f7f7f7;
}

.modal-input {
    height: 46px;
    border-radius: 8px;
}


.delivery-card {
    margin: 25px auto;
}

.delivery-head {
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.change-btn {
    font-size: 14px;
    color: #777;
    cursor: pointer;
}

.change-btn:hover {
    color: #000;
}

.address-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 6px;
}

.address-text {
    font-size: 14px;
    color: #333;
}

.phone {
    font-size: 14px;
    color: #777;
    margin-top: 4px;
}

.delivery-footer {
    margin-top: 12px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.delivery-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
}

.free {
    color: #0aa25f;
    font-size: 13px;
    font-weight: 700;
    margin-left: 24px;
}

.modal-input {
    height: 46px;
    border-radius: 8px;
}

/* Wrapper */
.payment-wrap {
    max-width: 420px;
    margin: 6px auto;
    padding: 6px;
    background: #000;
    border-radius: 14px;
    display: flex;
    gap: 6px;
}

.save {
    color: #0aa25f;
    font-size: 13px;
    font-weight: 700;
}

/* Button */
.pay-btn {
    flex: 1;
    border: none;
    border-radius: 12px;
    background: #000;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 0;
    transition: .25s;
    text-align: center;
}

/* Active */
.pay-btn.active {
    background: #fff;
    color: #000;
}

/* Hover */
.pay-btn:hover {
    opacity: .85;
}

.payment-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footers-text {
    font-size: 0.9rem;
    text-align: center;
    color: black;
}

.promo-input {
    border: none;
    outline: none;
    padding: 12px 14px;
    flex: 1;
    font-size: 15px;
    color: #133843;
}

.promo-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #E0E0E0;
    overflow: hidden;
    width: 100%;
}

.promo-btn {
    border: none;
    padding: 0 22px;
    height: 44px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(180deg, #FFD978, #F4B400);
    border-radius: 0 14px 14px 0;
    cursor: pointer;
}


.coupon-card {
    background: #f2fbfa;
    border: 2px dashed #1b8f8b;
    border-radius: 14px;
    padding: 16px 18px;
    transition: 0.3s;
}

.coupon-card:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.coupon-info h6 {
    font-weight: 700;
    color: #0a3f3f;
    margin-bottom: 4px;
}

.coupon-info p {
    font-size: 14px;
    margin-bottom: 4px;
    color: #333;
}

.coupon-info small {
    color: #777;
}

/* Apply Button */
.apply-btn {
    background: linear-gradient(180deg, #ffd978, #f4b400);
    color: #000;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
    border: none;
}

.apply-btn:hover {
    background: linear-gradient(180deg, #f4b400, #ffd978);
}

.user {
    background-color: transparent;
    border: none;
    color: #ff6a00;
    font-size: 1.3rem;
}

.right-panel {
    flex: 1;
    background: #000000;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right-panel h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.label {
    font-size: 14px;
    margin-bottom: 10px;
    color: #ffffff;
}

.terms {
    font-size: 12px;
    color: #bbb;
    margin-top: 15px;
    line-height: 1.5;
}

.trouble {
    margin-top: 15px;
    font-size: 13px;
}


/* TAB BAR CONTAINER */
.tab-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.tab-wrapper::-webkit-scrollbar {
    display: none;
}


.tabs {
    display: inline-flex;
    gap: 10px;
}

.tab-btn {
    border: none;
    background: #e7d9cc;
    color: #5a2d0c;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.tab-btn.active {
    background: linear-gradient(#C63B16, #8F1E0A);
    color: #F7D36A;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}




/* GRID */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}



.title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.desc {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}



.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    border: none;
    color: rgb(255, 122, 0) !important;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border: none;
    color: rgb(255, 122, 0) !important;
}


/* MOBILE */
@media (max-width: 500px) {
    .tab-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .card img {
        height: 130px;
    }
}

/* Main Container */
.food-box {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Image */
.food-img {
    width: 100%;
    height: 237px;
    object-fit: cover;
}

/* Content */
.food-content {
    padding: 18px;
}

.food-title {
    font-size: 1.3rem;
    color: #4b2e1e;
    font-weight: 700;
    margin-bottom: 8px;
}

/* Description + Price row */
.food-info {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #d6cfc7;
    padding-top: 10px;
}

.food-desc {
    font-size: 1.1rem;
    color: #6b5a4d;
    font-weight: 600;
}

.food-price {
    font-size: 20px;
    font-weight: bold;
    color: #2e7d32;
}

.logo img {
    height: 50px;
    width: 144px;
    object-fit: cover;
}

.store-box {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #8F1E0A;
    padding: 18px 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.store-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.store-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 18px;
}

.store-title img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.view-store {
    color: #8F1E0A;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.store-info {
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-info i {
    color: #555;
    font-size: 16px;
}

#Catering {
    background-image: url(../images/Catering-bg.jpg);
    background-position: center;
    background-size: cover;
}

.feature-bar {
    background: #f5e8df;
    padding: 15px 10px;
    font-weight: 600;
    font-size: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 5px 15px;
    white-space: nowrap;
}

.feature-item i {
    color: #2e7d32;
    font-size: 22px;
}

.divider {
    color: #bcaea4;
    font-weight: 400;
}

@media (max-width: 768px) {
    .feature-bar {
        font-size: 16px;
    }
}

.package-card {
    background: #f7eee7;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

.package-card:hover {
    transform: translateY(-6px);
}

.package-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.package-body {
    padding: 20px;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a2c2a;
}

.price-badge {
    color: #3b7d2c;
    font-weight: 700;
    font-size: 22px;
}

.package-body ul {
    padding-left: 33px;
    margin-top: 15px;
    color: #4a2c2a;
    font-size: 18px;
}

.package-body ul li {
    margin-bottom: 6px;
}

.price-box {
    background: linear-gradient(135deg, #b85c23, #8c3c0f);
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-top: 15px;
}

.price-box small {
    font-size: 16px;
    font-weight: 400;
}

.starting-text {
    font-size: 18px;
    color: #4a2c2a;
    margin-top: 10px;
}

@media(max-width:768px) {
    .package-title {
        font-size: 1.4rem;
    }

    .package-body ul {
        font-size: 16px;
    }
}



.service-item {
    text-align: center;
    padding: 20px 15px;
    position: relative;
}

.service-item i {
    font-size: 48px;
    color: #7a3e1d;
    margin-bottom: 12px;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: #4a2c2a;
}

.dividers {
    border-right: 1px solid #d8c2b5;
}

@media(max-width:768px) {
    .divider {
        border-right: none;
        border-bottom: 1px solid #d8c2b5;
    }
}

.service-item img {
    height: 150px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 10px;
}

/* Custom Search Modal Style */
.search-modal .modal-content {
    background: #111;
    height: 100vh;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-input {
    width: 60%;
    padding: 20px;
    font-size: 24px;
    border-radius: 50px;
    border: none;
    outline: none;
}

.btn-close-white {
    position: absolute;
    top: 30px;
    right: 40px;
    filter: invert(1);
}

@media (max-width: 768px) {
    .search-input {
        width: 90%;
        font-size: 18px;
    }
}

.contact-section {
    background: #fff8e1;
}

.contact-info {
    background: #ffffff;
    border-radius: 10px;
}


.seva-section {
    background: #f8f3ef;
    background-image: url(../images/plan-bg.jpg);
    /* optional */
    background-size: cover;
}



.seva-subtitle {
    font-size: 18px;
    color: #7a5c4d;
}

.seva-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.seva-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff6b00, #ffa500);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: 0.4s ease;
    z-index: -1;
}

.seva-card:hover::before {
    transform: scaleY(1);
}

.seva-card:hover {
    color: #fff;
}



.seva-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.seva-body {
    padding: 20px;
}

.seva-body h5 {
    color: #4a2e1e;
    margin-bottom: 15px;
}

.astro-btn {
    background: linear-gradient(180deg, #ff7a1a, #ff5a00);
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 90, 0, 0.3);
}

/* Hover Effect */
.astro-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 18px rgba(255, 90, 0, 0.5);
    background: linear-gradient(180deg, #ff8c2a, #ff6a10);
}

/* Click Effect */
.astro-btn:active {
    transform: scale(0.97);
    box-shadow: 0 3px 8px rgba(255, 90, 0, 0.4);
}

/* Footer */
.footer {
    background: rgb(255, 234, 213);
    color: #fff;
    padding: 50px 0px 20px;
}

/* Logo */
.footer-logo {
    font-size: 22px;
    font-weight: 700;
    color: #ff7a00;
}

/* Text */
.footer-text {
    font-size: 14px;
    color: #000000;
    margin: 10px 0 15px;
}

/* Headings */
.footer h6 {
    color: #ff5a00;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Links */
.footer a {
    display: block;
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer a:hover {
    color: #ff5a00;
}

/* Social Icons */
.social-icons a {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: white;
    color: #ff5a00;
    margin-right: 15px;
    transition: 0.3s;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 25px;
    padding-top: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: #000000;
}




.tempel img {
    border-radius: 20px;
}


/* Section */
.sanskriti-section {
    background: linear-gradient(135deg, #f4e3d6, #efd2bd);
}


.section-title {
    text-align: center;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
}

.section-title::before,
.section-title::after {
    content: "✧";
    color: #ff7a00;
    margin: 0 10px;
}

.astro-mantra-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 15px;
    text-align: center;
    height: 100%;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.astro-mantra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.astro-title {
    font-weight: 600;
    font-size: 16px;
}

.astro-desc {
    font-size: 13px;
    color: #777;
    min-height: 40px;
}

.astro-choose {
    font-size: 13px;
    color: #777;
}

.astro-mantra-btn {
    margin-top: 10px;
    border: 1px solid #ff7a00;
    color: #ff7a00;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    background: transparent;
    transition: all 0.3s ease;
}

.astro-mantra-btn:hover {
    background: #ff7a00;
    color: #fff;
}

/* Card */
.offer-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Icon */
.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f6c99e, #e9a77b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 15px;
    font-size: 28px;
}

/* Text */
.offer-card h4 {
    color: #6b3f2c;
    font-weight: 600;
}

.offer-card p {
    color: #7a5c4a;
    font-size: 15px;
    line-height: 1.6;
}

/* Mobile */
@media(max-width:768px) {
    .section-title {
        font-size: 28px;
    }

    .offer-card {
        padding: 30px 20px;
    }
}

/* Section Background */
.features-section {
    background: url('your-bg-texture.png') center/cover no-repeat;
    padding: 60px 0;
}

/* Feature Card */
.feature-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 30px 17px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* Icon Style */
.feature-icon {
    font-size: 40px;
    color: #d97706;
    margin-bottom: 15px;
}

.feature-title {
    font-weight: 500;
    font-size: 18px;
    color: #5b3924;
}

@media(max-width:576px) {
    .feature-card {
        padding: 20px;
    }
}

.feature-icon img {
    height: 100px;
    border-radius: 20px;
}

.contact-card {
    width: 100%;
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
    font-size: 28px;
    color: #6a3d2e;
    margin-bottom: 25px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: center;
    background: #f3ded2;
    padding: 15px;
    border-radius: 18px;
    margin-bottom: 18px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.04);
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-right: 15px;
}

.icon.email {
    background: #e67e22;
}

.icon.whatsapp {
    background: #25D366;
}

.icon.location {
    background: #d35400;
}

.icon.time {
    background: #b9770e;
}

.contents h4 {
    margin: 0;
    font-size: 16px;
    color: #5b3428;
    font-weight: 600;
}

.contents p {
    margin: 4px 0 0;
    font-size: 14px;
    color: #7a5a4e;
}



/* Card Container */
.contact-wrapper {

    padding: 30px 25px;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Subtle Mandala Corner Effect */
.contact-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at top right, rgba(0, 0, 0, 0.04), transparent 70%);
    border-top-right-radius: 25px;
}

/* Heading */
.contact-wrapper h2 {
    font-size: 28px;
    color: #6b3f2c;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Inputs */
form input,
form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 15px;
    border-radius: 18px;
    border: none;
    background: #f2ddd2;
    font-size: 15px;
    color: #5b3428;
    outline: none;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Textarea */
form textarea {
    height: 110px;
    resize: none;
}

/* Button */
form button {
    width: 100%;
    padding: 15px;
    border-radius: 30px;
    border: none;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(180deg, #e67e22, #c65d0e);
    box-shadow: 0 8px 15px rgba(198, 93, 14, 0.3);
    transition: 0.3s ease;
}

/* Button Hover */
form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(198, 93, 14, 0.35);
}

/* Responsive */
@media (max-width: 420px) {
    .contact-wrapper {
        width: 90%;
    }
}

/* Section Background */
.connect-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #e6cfc2, #f4ddd2);
    position: relative;
}

/* Subtle Mandala Effect */
.connect-section::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.05), transparent 70%);
}

/* Heading */
.connect-section h2 {
    font-size: 32px;
    color: #6b3f2c;
    margin-bottom: 35px;
    font-weight: 600;
}



/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #f6e5dc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #d2691e;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Hover Effect */
.icon-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.15);
    background: linear-gradient(180deg, #e67e22, #c65d0e);
    color: #fff;
}

/* Responsive */
@media (max-width: 500px) {
    .icon-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .connect-section h2 {
        font-size: 26px;
    }
}

/* Section Styling */
.cta-section {
    padding: 70px 20px;
    text-align: center;
    background-image: url(../images/plan-bg.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

/* Subtle Mandala Corner Effect */
.cta-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at top left, rgba(0, 0, 0, 0.05), transparent 70%);
}

/* Heading */
.cta-content h2 {
    font-size: 28px;
    color: #6b3f2c;
    margin-bottom: 35px;
    font-weight: 500;
}

/* Button */
.cta-btn {
    display: inline-block;
    padding: 16px 45px;
    border-radius: 40px;
    font-size: 20px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(180deg, #e67e22, #c65d0e);
    box-shadow: 0 10px 20px rgba(198, 93, 14, 0.35);
    transition: all 0.3s ease;
}

/* Hover */
.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(198, 93, 14, 0.45);
}

/* Responsive */
@media (max-width: 500px) {
    .cta-content h2 {
        font-size: 22px;
    }

    .cta-btn {
        font-size: 16px;
        padding: 14px 30px;
    }
}

/* Button Container */
#backToTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    border: none;
    background: none;
    cursor: pointer;
    display: none;
    z-index: 1000;
}

/* SVG Circle */
#backToTop svg {
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 6;
}

.progress-bar {
    fill: none;
    stroke: #e67e22;
    stroke-width: 6;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.2s linear;
}


/* Hover */
#backToTop:hover .progress-bar {
    stroke: #c65d0e;
}

#backToTop:hover .arrow {
    color: #c65d0e;
}


.benefit-card {
    background: #f7efe6;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-item {
    font-size: 16px;
    color: #5a4632;
    display: flex;
    align-items: center;
}

.benefit-item i {
    color: #d39b5c;
    margin-right: 10px;
    font-size: 18px;
}

@media (max-width: 768px) {

    .section-title::before,
    .section-title::after {
        width: 40px;
    }
}



.stars {
    color: #ffd700;
    margin-bottom: 12px;
    text-align: left;
}

.stars i {
    margin-right: 3px;
    font-size: 16px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    text-align: left;
}

@media (max-width: 576px) {
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }
}

/* Main Card */
.sw-card {
    background: #f7eadc;
    border-radius: 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    height: 100%;
}

.sw-card img {
    width: 100%;
}

/* Title */
.sw-card__title {
    margin: 15px 0 8px;
    font-size: 1.2rem;
    color: #2b1d14;
    font-weight: 600;
}

/* Divider */
.sw-card__divider {
    width: 50px;
    height: 2px;
    background: #8b6b3f;
    margin: 0 auto 10px;
    border-radius: 2px;
}

/* Description */
.sw-card__desc {
    font-size: 14px;
    color: #4a3b2a;
    line-height: 1.5;
    padding: 0 5px;
}

/* Hover Effect */
.sw-card:hover {
    transform: translateY(-6px);
}

#infinite {
    color: rgb(255, 90, 0);
}

.astro-card {
    border-radius: 16px;
    padding: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #eee;
    height: 100%;
}

.astro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


.astro-title p {
    font-weight: 600;
    font-size: 0.7rem;
    margin: 0;
}

.astro-sub {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* Active Card (Orange) */
.astro-active {
    background: linear-gradient(135deg, #ff7a1a, #ff5a00);
    color: #fff;
    border: none;
}

.astro-active .astro-sub {
    color: rgba(255, 255, 255, 0.85);
}

.astro-active .astro-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.stats-box {
    background: #fff;
    border-radius: 16px;
    padding: 0px 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.stat-item {
    display: flex;
    gap: 12px;
    padding: 10px 10px;
    height: 100%;
}

.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: #fff4e6;
    color: #ff7a00;
    flex-shrink: 0;
}

.stat-title {
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    color: #222;
}

.shop-title {
    font-weight: 600;
    font-size: 13px;
    margin: 0;
    color: #222;
}

#stat-sub {
    font-size: 0.7rem;
    color: #777;
    margin: 0;
}

/* Divider (desktop only) */
.stat-divider {
    border-right: 1px solid #eee;
}

@media (max-width: 767px) {
    .stat-divider {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}

.astro-icon img {
    height: 70px;
    margin-bottom: 10px;
}

.section-box {
    background: #fff;
    border-radius: 18px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Card */
.testimonial-card {
    background: #fff;
    max-width: 600px;
    width: 100%;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid black;
    transition: 0.3s;
}


/* Text */


/* Bottom Section */
.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Profile Image */
.profile-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

/* Right Content */
.footer-content {
    flex: 1;
}

/* Stars */
.stars {
    color: #f5b50a;
    font-size: 18px;
    margin-bottom: 5px;
}

/* Name */
.name {
    font-size: 18px;
    color: #444;
    font-weight: 500;
    text-align: left;
}

/* Responsive */
@media(max-width:480px) {
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .profile-img {
        width: 55px;
        height: 55px;
    }

    .stars {
        font-size: 16px;
    }

    .name {
        font-size: 16px;
    }
}

/* Container */
.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
}

/* Card */
.step-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 1px solid #eee;
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Step Number */
.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff7a00;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Icon Circle */
.icon-circle img {
    width: 150px;
    height: 150px;
    border: 2px solid #ff7a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 15px;
    font-size: 32px;
    color: #ff7a00;
}

/* Title */
.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #333;
}

/* Description */
.step-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

/* Arrow */
.step-card:not(:last-child)::after {
    content: "→";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    color: #ff7a00;
}

/* Responsive */
@media(max-width:900px) {
    .steps-container {
        grid-template-columns: 1fr 1fr;
    }

    .step-card:nth-child(2)::after {
        display: none;
    }
}

@media(max-width:600px) {
    .steps-container {
        grid-template-columns: 1fr;
    }

    .step-card::after {
        display: none;
    }
}

/* Banner */
.cta-banner {
    background: #f7f4f1;
    border-radius: 14px;
    padding: 18px 22px;
    border: 1px solid #eee;
}

/* Icon */
.cta-icon {
    font-size: 32px;
    color: #ff7a00;
}

/* Title */
.cta-title {
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #ff7a00;
}

/* Subtitle */
.cta-sub {
    text-align: left;
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media(max-width:576px) {
    .cta-banner {
        text-align: center;
    }
}

.step-text {
    margin-bottom: 20px;
}

/* Card */
.astro-logy-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #eee;
    transition: 0.3s;
    height: 100%;
}

.astro-logy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Title */
.astro-logy-title {
    color: #ff6a00;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}

/* Icon circle */
.icon-wrap {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

/* Image */
.astro-img {
    width: 70%;
    margin-bottom: 20px;
}

/* List */
.astro-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.astro-list li {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

.astro-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6a00;
}

/* Section */
.app-section {
    background: #f7f4f1;
    border-radius: 16px;
    padding: 0px 30px;
}

/* Title */
.app-title {
    font-size: 28px;
    font-weight: 600;
    color: #ff6a00;
    margin-bottom: 15px;
}

/* Subtitle */
.app-sub {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Store Buttons */
.store-btn img {
    height: 45px;
    margin-right: 10px;
    transition: 0.3s;
}

.store-btn img:hover {
    transform: scale(1.05);
}

/* Phone Image */
.phone-img {
    max-width: 280px;
    width: 100%;
}

/* Responsive */
@media(max-width:768px) {
    .app-section {
        text-align: center;
    }

    .store-btn {
        justify-content: center;
    }

    .phone-img {
        margin-top: 20px;
    }
}

/* Button Style */
#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border: none;
    outline: none;
    background: linear-gradient(135deg, #ff7a00, #ff4d00);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

/* Show Button */
#backToTop.show {
    opacity: 1;
    visibility: visible;
}

/* Hover Effect */
#backToTop:hover {
    transform: translateY(-4px) scale(1.05);
}

/* Section */
.why-astro {
    background: #f8f8f8;
    padding: 60px 20px;
}



/* Heading */
.why-title {
    font-size: 28px;
    font-weight: 700;
    color: #ff6a00;
    margin-bottom: 20px;
}

/* Paragraph */
.why-text {
    text-align: left;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Responsive */
@media(max-width:768px) {
    .why-title {
        font-size: 22px;
    }

    .why-text {
        font-size: 15px;
    }
}

.step-list {
    text-align: left;
    padding-left: 17px;
}

/* Section */
.faq-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

/* Container */
.faq-container {
    max-width: 900px;
    margin: auto;
}

/* Title */
.faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* FAQ Item */
.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #eee;
}

/* Question */
.faq-question {
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

/* Arrow */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
}

/* Active */
.faq-item.active .faq-question::after {
    content: "−";
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    transition: 0.3s;
}

/* Show Answer */
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 20px;
}

/* Responsive */
@media(max-width:768px) {
    .faq-title {
        font-size: 22px;
    }
}




/* Mobile hidden */
@media(max-width: 991px) {
    .filter-sidebar {
        transform: translateX(-100%);
        z-index: 1050;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .filter-sidebar.active {
        transform: translateX(0);
    }
}

/* Overlay */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    display: none;
    z-index: 1040;
}

.overlay.active {
    display: block;
}

/* Title */
.filter-title {
    font-weight: 600;
    font-size: 18px;
}

.reset {
    color: #ff6a00;
    font-size: 14px;
    cursor: pointer;
}

/* Section */
.title-tops {
    font-weight: 600;
    margin-top: 20px;
}

/* Checkbox */
.form-check-input:checked {
    background-color: #ff6a00;
    border-color: #ff6a00;
}

/* Slider */
.range-slider input {
    width: 100%;
    accent-color: #ff6a00;
    background-color: white;
    border: none;
}

/* Button */
.apply-btn {
    background: #ff6a00;
    color: #fff;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    border: none;
    font-weight: 500;
}

/* Mobile Button */
.filter-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 50px;
    z-index: 1100;
}

#expertiseContent {
    max-height: 500px;
    overflow: hidden;
    transition: all 0.4s ease;
}

#expertiseContent.hide {
    max-height: 0;
    opacity: 0;
}

/* ICON BASE */
.toggle-icon {
    font-size: 22px;
    transition: all 0.4s ease;
    position: relative;
}

/* CLOSED STATE (Top + Arrow Up) */
.icon-top {
    transform: rotate(0deg);
    top: 0;
}

/* OPEN STATE (Bottom + Arrow Down) */
.icon-bottom {
    transform: rotate(180deg);
    top: 0;
}

/* Optional side shift */
.icon-left {
    transform: translateX(-5px) rotate(180deg);
}

.title-tops {
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
}

.Astrologer-bg {
    background-image: url(../images/Astrologer-bg.png);
    background-position: center;
    background-size: cover;
}

.filter-bg {
    background-color: white;
    padding: 30px 15px;
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.rating-btn {
    border: 1px solid #e5e5e5;
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Star color */
.rating-btn {
    color: #ff9800;
}

/* Hover */
.rating-btn:hover {
    border-color: #ff6a00;
    color: #ff6a00;
}



/* Breadcrumb style */
.custom-breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.custom-breadcrumb li {
    font-size: 14px;
    color: #666;
}

.custom-breadcrumb li a {
    text-decoration: none;
    color: #666;
    transition: 0.3s;
}

.custom-breadcrumb li a:hover {
    color: #ff6a00;
}

/* Separator */
.separator {
    margin: 0 8px;
    color: #999;
}

/* Active */
.custom-breadcrumb .active {
    color: #333;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 576px) {
    .breadcrumb-wrapper {
        padding: 10px 15px;
    }

    .custom-breadcrumb li {
        font-size: 13px;
    }
}



/* Stat Cards */
.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: 0.3s;
    height: 100%;
}

.stat-card i {
    padding-top: 5px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    font-size: 26px;
    color: #ff7a00;
    background: #fff4ec;
    border-radius: 50%;
}

.stat-card h6 {
    margin: 0;
    font-weight: 600;
}

.stat-card p {
    margin: 0;
    font-size: 13px;
    color: #666;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Search Box */
.search-box {
    display: flex;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    align-items: center;
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
}

.search-box i {
    color: #999;
    margin-right: 10px;
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
}

/* Dropdown */
.custom-select {
    padding: 10px;
    border-radius: 8px;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .search-box {
        margin-bottom: 10px;
    }
}

/* CARD */
.astro-talk-card {
    margin-top: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    transition: 0.3s;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.astro-talk-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* LEFT */
.profile-imgs {
    position: relative;
}

.profile-imgs img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

.badge-check {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    border-radius: 50%;
    color: #28a745;
}

/* INFO */
.astro-info {
    margin-left: 15px;
}

.status {
    background: #e6f7ec;
    margin-bottom: 10px;
    color: #28a745;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
}

.rating {
    color: #666;
    font-size: 14px;
    margin: 5px 0;
}

.astro-middle p {
    color: #666;
}

.rating i {
    color: #ff9800;
}

.desc {
    font-size: 14px;
    color: #666;
}

.lang {
    font-size: 13px;
    color: #777;
}

.tags span {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    margin: 5px 5px 0 0;
    font-size: 12px;
}

.tags .more {
    background: #eee;
}

/* MIDDLE */
.astro-middle {
    min-width: 120px;
}

.price {
    color: #ff6a00;
    font-weight: bold;
}

.price span {
    font-size: 14px;
    color: #666;
}

/* RIGHT */
.astro-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-btn {
    background: #ff6a00;
    color: #fff;
    border-radius: 8px;
}

.chat-btn:hover {
    background: #e55d00;
}

.outline-btn {
    border: 1px solid #ff6a00;
    color: #333;
    border-radius: 8px;
}

.outline-btn:hover {
    background: #fff3eb;
}

/* RESPONSIVE */
@media (max-width: 768px) {


    .astro-middle {
        text-align: left;
    }

    .astro-right {
        width: 100%;
        display: none;
        flex-direction: row;
        gap: 0px;
    }

    .astro-right button {
        width: 100%;
    }
}

/* Individual Colors (matching your UI) */
.tag.vedic {
    background: #fff2e8;
    color: #ff6a00;
}

.tag.kp {
    background: #f3ecff;
    color: #7b61ff;
}

.tag.num {
    background: #eaf7ef;
    color: #2e7d32;
}

.tag-more {
    color: #666;
}

/* Main Badge */
.divine-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b00;
    font-size: 20px;
    font-weight: 700;
    border-radius: 4px;
    position: relative;
}

/* Left Diamond Icon */
.divine-tag::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #ff6b00;
    transform: rotate(45deg);
    display: inline-block;
}

.work-btn {
    position: relative;
    padding: 14px 28px;
    border: 2px solid #ff6b00;
    border-radius: 14px;
    background: #fff;
    color: #ff6b00;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    overflow: hidden;
    transition: 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.work-btn i {
    font-size: 14px;
    transition: 0.4s ease;
}

/* Hover Effect */
.work-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ff6b00;
    transition: 0.4s ease;
    z-index: 0;
}

.work-btn span,
.work-btn i {
    position: relative;
    z-index: 2;
}

.work-btn:hover::before {
    left: 0;
}

.work-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.25);
}

.work-btn:hover i {
    transform: rotate(20deg);
}

.features-section {
    padding: 60px 0;
}

.feature-card {
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 16px;
    padding: 30px 17px;
    text-align: center;
    height: 100%;
    transition: 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
    border-color: #ff7a00;
}

.Services-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}


.feature-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.feature-card p {
    font-size: 14px;
    color: #777;
    margin: 0;
    line-height: 1.6;
}

@media(max-width:767px) {
    .feature-card {
        padding: 25px 15px;
    }

    .feature-card h5 {
        font-size: 16px;
    }
}



/* Card */
.jp-pooja-card {
    background: #ffffff;
    border: 0.063rem solid #ececec;
    border-radius: 1rem;
    padding: 1rem;
    transition: 0.35s ease;
    height: 100%;
}

.jp-pooja-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
}

/* Image */
.jp-pooja-img {
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.jp-pooja-img img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: 0.4s ease;
}

.jp-pooja-card:hover .jp-pooja-img img {
    transform: scale(1.06);
}

/* Title */
.jp-pooja-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.7rem;
    line-height: 1.4;
}

/* Badge */
.jp-pooja-badge {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    color: #ff7a00;
    background: #fff4ea;
    border-radius: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Description */
.jp-pooja-desc {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Price */
.jp-pooja-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 1rem;
}



/* Mobile */
@media (max-width:576px) {

    .jp-pooja-title {
        font-size: 1.1rem;
    }

    .jp-pooja-price {
        font-size: 1.35rem;
    }
}



.hw-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 50px;
}

.hw-item {
    text-align: center;
    position: relative;
}

.hw-step {
    width: 34px;
    height: 34px;
    border: 2px solid #ff7a00;
    color: #ff7a00;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto -12px;
    background: #fff;
    z-index: 2;
    position: relative;
}

.hw-icon-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    background: #fff4ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hw-icon-wrap::before,
.hw-icon-wrap::after {
    content: "✦";
    position: absolute;
    color: #ffd2b2;
    font-size: 14px;
}

.hw-icon-wrap::before {
    top: 10px;
    left: 8px;
}

.hw-icon-wrap::after {
    right: 10px;
    bottom: 10px;
}

.hw-icon {
    font-size: 38px;
    color: #ff7a00;
}

.hw-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.hw-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.hw-arrow {
    position: absolute;
    top: 51px;
    right: -22px;
    font-size: 26px;
    color: #555;
}

/* Tablet */
@media(max-width:991px) {
    .hw-arrow {
        display: none;
    }

    .hw-item {
        margin-bottom: 35px;
    }
}

/* Mobile */
@media(max-width:576px) {

    .hw-title {
        font-size: 26px;
    }

    .hw-box {
        padding: 30px 20px;
    }

    .hw-item h4 {
        font-size: 20px;
    }

    .hw-item p {
        font-size: 15px;
    }

    .hw-icon-wrap {
        width: 80px;
        height: 80px;
    }

    .hw-icon {
        font-size: 32px;
    }
}

/* Main Card */
.pd-card {
    background-image: url(../images/ASTROLOGER-bg.jpg);
    background-position: center;
    background-size: cover;
    border: 1px solid #f2e7d8;
    border-radius: 18px;
    padding: 30px;
    overflow: hidden;
    position: relative;
}



/* Profile Left */
.pd-user-box {
    position: relative;
    width: 190px;
    margin: auto;
}

.pd-user-img {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 6px solid #fff;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.pd-badge {
    position: absolute;
    right: 5px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff8a00;
    font-size: 22px;
}

.pd-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eaf7df;
    color: #2d7c21;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    margin-top: 16px;
}

.pd-dot {
    width: 8px;
    height: 8px;
    background: #39b100;
    border-radius: 50%;
}

/* Right Content */
.pd-name {
    font-size: 1.7rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.pd-verify {
    color: #ff8a00;
    font-size: 1.5rem;
    vertical-align: middle;
}

.pd-rating {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 14px;
    color: #444;
    font-size: 1.1rem;
}

.pd-rating i {
    color: #ff9800;
}

.pd-skill {
    font-size: 1rem;
    color: #444;
    margin-bottom: 12px;
}

.pd-lang {
    font-size: 1rem;
    color: #555;
    margin-bottom: 24px;
}

.pd-lang i {
    color: #666;
}

/* Stats */
.pd-stat-box {
    background: #fff;
    border: 1px solid #f1ece5;
    border-radius: 14px;
    padding: 10px;
    height: 100%;
    transition: .3s;
}

.pd-stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
}

.pd-stat-top {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 15px;
}

.pd-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff5ea;
    color: #ff8a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.pd-stat-num {
    font-size: 0.9rem;
    color: #111;
}

/* Responsive */
@media(max-width:991px) {

    .pd-card {
        padding: 16px;
        text-align: center;
    }

    .pd-rating {
        justify-content: center;
    }

    .pd-card::after {
        display: none;
    }
}

@media(max-width:576px) {

    .pd-user-img {
        width: 150px;
        height: 150px;
    }

    .pd-user-box {
        width: 150px;
    }

    .pd-name {
        font-size: 1.8rem;
    }

    .pd-skill {
        font-size: 1.05rem;
    }

    .pd-rating,
    .pd-lang {
        font-size: 1rem;
    }

    .pd-stat-num {
        font-size: 1.1rem;
        text-align: left;
    }

    .text p {
        text-align: left;
        font-size: 1rem;
    }

    .pd-stat-top {
        gap: 8px;
    }
}


.pd-box {
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 16px;
    padding: 15px;
}

/* Tabs */
.pd-tabs {
    border-bottom: 1px solid #ececec;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.pd-tabs::-webkit-scrollbar {
    display: none;
}

.pd-tabs .nav-link {
    border: none;
    color: #555;
    font-size: 17px;
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 0;
    position: relative;
    background: none;
}

.pd-tabs .nav-link i {
    margin-right: 8px;
}

.pd-tabs .nav-link.active {
    color: #ff7a00;
    background: none;
}

.pd-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 3px;
    background: #ff7a00;
    border-radius: 10px;
}

/* Content */
.pd-title {
    font-size: 34px;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
}

.pd-text {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Info Cards */
.info-card {
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 18px;
    height: 100%;
    transition: 0.3s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff4ea;
    color: #ff7a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 14px;
}

.info-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}

.info-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Featured */
.featured-title {
    font-size: 18px;
    font-weight: 700;
    color: #444;
    margin: 30px 0 18px;
}

.brand-box img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 16px;
    color: #333;
    background: #fff;
}

/* Responsive */
@media(max-width:768px) {

    .pd-title {
        font-size: 28px;
    }

    .pd-text {
        font-size: 16px;
    }

    .pd-tabs .nav-link {
        font-size: 15px;
        padding: 12px 16px;
    }

    .info-title {
        font-size: 18px;
    }

    .brand-box {
        font-size: 18px;
    }
}

@media(max-width:576px) {

    .pd-box {
        padding: 15px;
    }

    .pd-title {
        font-size: 24px;
    }

    .pd-text {
        font-size: 15px;
    }
}


/* Heading */
.jt-review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.jt-review-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
}

.jt-review-link {
    color: #ff7a00;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.jt-review-link:hover {
    color: #e66c00;
}

/* Card */
.jt-review-card {
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    position: relative;
    transition: 0.3s;
}

.jt-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Flex */
.jt-review-flex {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* Image */
.jt-review-img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Content */
.jt-review-content {
    flex: 1;
}

.jt-review-head {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 8px;
}

.jt-review-name {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.jt-review-stars {
    color: #ff9900;
    font-size: 14px;
    letter-spacing: 1px;
}

.jt-review-time {
    font-size: 13px;
    color: #888;
}

.jt-review-text {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
    padding-right: 35px;
}

/* Quote */
.jt-review-quote {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 34px;
    color: #e7e7e7;
}

/* Responsive */
@media(max-width:991px) {
    .jt-review-title {
        font-size: 24px;
    }
}

@media(max-width:767px) {
    .pd-tabs {
        display: flex;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        gap: 0.6rem;
        padding-bottom: 0.35rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .pd-tabs::-webkit-scrollbar {
        display: none;
    }

    .pd-tabs .nav-item {
        flex: 0 0 auto;
    }

    .pd-tabs .nav-link {
        padding: 0.7rem 0.9rem;
        font-size: 0.8125rem;
        min-height: 2.75rem;
    }

    .pd-tabs .nav-link i {
        font-size: 0.95rem;
    }

    .jt-review-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .jt-review-img {
        width: 52px;
        height: 52px;
    }

    .jt-review-title {
        font-size: 22px;
    }

    .jt-review-card {
        padding: 18px;
    }
}

@media(max-width:575px) {
    .jt-review-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .jt-review-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .jt-review-title {
        font-size: 20px;
    }

    .jt-review-text {
        padding-right: 0;
    }

    .jt-review-quote {
        font-size: 28px;
    }
}

/* Card */
.jd-box-card {
    background: #ffffff;
    border: 0.0625rem solid #ececec;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

/* Heading */
.jd-main-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.25rem;
}

.jd-sub-text {
    font-size: 0.8125rem;
    color: #777;
    margin-bottom: 0.875rem;
}

/* Option Box */
.jd-call-option {
    border: 0.0625rem solid #e8e8e8;
    border-radius: 0.5rem;
    padding: 0.75rem 0.875rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    transition: 0.3s;
    cursor: pointer;
}

.jd-call-option:hover {
    border-color: #ff7a00;
}

.jd-call-active {
    border-color: #ff7a00;
    background: #fff8f2;
}

.jd-option-left {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.jd-option-icon {
    color: #ff7a00;
    font-size: 1rem;
}

.jd-option-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #222;
}

.jd-option-price {
    font-size: 0.875rem;
    color: #222;
    font-weight: 600;
}

/* Button */
.jd-main-btn {
    width: 100%;
    border: none;
    background: #ff7300;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 700;
    padding: 0.875rem;
    border-radius: 0.375rem;
    transition: 0.3s;
}

.jd-main-btn:hover {
    background: #e56700;
}

.jd-free-text {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #1f9d42;
    font-weight: 600;
}

/* Stats */
.jd-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.jd-stat-box {
    border: 0.0625rem solid #ececec;
    border-radius: 0.625rem;
    padding: 0.75rem;
    display: flex;
    gap: 0.625rem;
    align-items: flex-start;
}

.jd-stat-icon {
    width: 2rem;
    height: 2rem;
    background: #fff5eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7a00;
    font-size: 1rem;
    flex-shrink: 0;
}

.jd-stat-num {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.jd-stat-label {
    font-size: 0.75rem;
    color: #777;
}

/* List Section */
.jd-mini-title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111;
}

.jd-list-style {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jd-list-style li {
    font-size: 0.8125rem;
    color: #444;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.5rem;
}

.jd-list-style li i {
    color: #32a852;
    margin-top: 0.125rem;
}

/* Badge */
.jd-certificate-row {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
}

.jd-badge-img {
    width: 4.5rem;
}

/* Responsive */
@media(max-width:767px) {

    .jd-main-title {
        font-size: 1rem;
    }

    .jd-option-text,
    .jd-option-price,
    .jd-main-btn {
        font-size: 0.875rem;
    }

    .jd-stat-num {
        font-size: 0.9375rem;
    }
}

@media(max-width:420px) {

    .jd-stat-grid {
        grid-template-columns: 1fr;
    }

    .jd-call-option {
        padding: 0.7rem;
    }
}

/* Fixed Bottom Bar */
.jd-fixbar-wrap {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
    background: #ffffff;
    border-top: 0.0625rem solid #ececec;
    box-shadow: 0 -0.25rem 1rem rgba(0, 0, 0, 0.06);
}

.jd-fixbar-inner {
    padding: 0.75rem 1rem;
}

/* Main Row */
.jd-fixbar-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Profile */
.jd-fixbar-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 16rem;
}

.jd-fixbar-img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 0.125rem solid #fff2e8;
}

.jd-fixbar-name {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.jd-fixbar-verify {
    color: #ff7a00;
    font-size: 0.875rem;
}

.jd-fixbar-meta {
    font-size: 0.75rem;
    color: #777;
    margin-top: 0.15rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.jd-fixbar-meta span i {
    color: #ff9800;
    margin-right: 0.2rem;
}

/* Price */
.jd-fixbar-price {
    font-size: 1rem;
    font-weight: 700;
    color: #ff6d00;
    white-space: nowrap;
}

/* Actions */
.jd-fixbar-btns {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.jd-fixbar-btn {
    border: 0.0625rem solid #dcdcdc;
    background: #fff;
    color: #222;
    padding: 0.65rem 1rem;
    border-radius: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1;
    transition: 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.jd-fixbar-btn:hover {
    border-color: #ff7a00;
    color: #ff7a00;
}

.jd-fixbar-btn-main {
    background: #ff7a00;
    border-color: #ff7a00;
    color: #fff;
}

.jd-fixbar-btn-main:hover {
    background: #e86d00;
    color: #fff;
}

.jd-fixbar-heart {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.0625rem solid #ddd;
    border-radius: 0.4rem;
    color: #666;
    font-size: 1rem;
    text-decoration: none;
}

.jd-fixbar-heart:hover {
    color: #ff7a00;
    border-color: #ff7a00;
}

/* Tablet */
@media(max-width:991px) {

    .jd-fixbar-flex {
        gap: 0.8rem;
    }

    .jd-fixbar-profile {
        min-width: auto;
    }

    .jd-fixbar-btn {
        padding: 0.6rem 0.85rem;
        font-size: 0.75rem;
    }
}

/* Mobile */
@media(max-width:767px) {



    .jd-fixbar-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .jd-fixbar-profile {
        width: 100%;
    }

    .jd-fixbar-price {
        text-align: left;
    }

    .jd-fixbar-btns {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .jd-fixbar-btn {
        justify-content: center;
        width: 100%;
    }

    .jd-fixbar-btn-main {
        grid-column: 1/3;
    }

    .jd-fixbar-heart {
        width: 100%;
        height: auto;
        padding: 0.7rem;
    }

    .jd-pooja-img {
        height: 100% !important;
    }
}

/* Small Mobile */
@media(max-width:420px) {

    .jd-fixbar-name {
        font-size: 0.92rem;
    }

    .jd-fixbar-meta {
        font-size: 0.68rem;
    }

    .jd-fixbar-btn {
        font-size: 0.72rem;
        padding: 0.65rem 0.45rem;
    }
}


/* Title */
.jd-exp-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

/* Top Cards */
.jd-exp-card {
    border: 0.0625rem solid #ececec;
    border-radius: 0.625rem;
    padding: 0.9rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 100%;
    transition: 0.3s;
    background: #fff;
}

.jd-exp-card:hover {
    transform: translateY(-0.1875rem);
    border-color: #ff7a00;
}

.jd-exp-icon {
    width: 2.6rem;
    height: 2.6rem;
    min-width: 2.6rem;
    border-radius: 50%;
    background: #fff3e8;
    color: #ff7a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.jd-exp-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.15rem;
    line-height: 1.2;
}

.jd-exp-year {
    font-size: 0.75rem;
    color: #666;
}

/* Divider */
.jd-exp-line {
    border-top: 0.0625rem solid #ececec;
    margin: 1rem 0;
}

/* Bottom Section */
.jd-sub-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: #111;
}

.jd-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jd-check-list li {
    font-size: 0.8125rem;
    color: #444;
    margin-bottom: 0.55rem;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
}

.jd-check-list li i {
    color: #ff7a00;
    font-size: 0.9rem;
    margin-top: 0.08rem;
}

/* Right Style Card */
.jd-style-box {
    border-left: 0.0625rem solid #ececec;
    padding-left: 1.5rem;
    height: 100%;
}

.jd-style-flex {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.jd-style-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #fff3e8;
    color: #ff7a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.jd-style-text {
    font-size: 0.8125rem;
    color: #444;
    line-height: 1.45;
}

/* Responsive */
@media(max-width:991px) {

    .jd-style-box {
        border-left: none;
        border-top: 0.0625rem solid #ececec;
        padding-left: 0;
        padding-top: 1rem;
        margin-top: 1rem;
    }

}

@media(max-width:767px) {

    .jd-exp-wrap {
        padding: 1rem;
    }

    .jd-exp-title {
        font-size: 1rem;
    }

    .jd-exp-name {
        font-size: 0.8125rem;
    }

    .jd-exp-year,
    .jd-check-list li,
    .jd-style-text {
        font-size: 0.75rem;
    }

    .jd-exp-icon {
        width: 2.3rem;
        height: 2.3rem;
        min-width: 2.3rem;
        font-size: 1rem;
    }

}

@media(max-width:575px) {

    .jd-exp-card {
        padding: 0.8rem;
    }

    .jd-style-flex {
        align-items: flex-start;
    }
}

/* Wrapper */


/* Titles */
.jd-block-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

/* Top Layout */
.jd-top-grid {
    display: grid;
    grid-template-columns: 18rem 1fr;
    gap: 1rem;
    align-items: start;
}

/* Rating Left */
.jd-score {
    font-size: 2.4rem;
    font-weight: 800;
    color: #111;
    line-height: 1;
}

.jd-stars {
    color: #ff8a00;
    font-size: 1.1rem;
    margin: 0.6rem 0;
}

.jd-small-text {
    font-size: 0.8rem;
    color: #666;
}

/* Bars */
.jd-bars-row {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 1rem;
}

.jd-bar-list {
    margin-top: 0.15rem;
}

.jd-bar-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.45rem;
    font-size: 0.78rem;
}

.jd-bar-track {
    flex: 1;
    height: 0.25rem;
    background: #efefef;
    border-radius: 2rem;
    overflow: hidden;
}

.jd-bar-fill {
    height: 100%;
    background: #ff7a00;
    border-radius: 2rem;
}

/* Reviews Cards */
.jd-card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.jd-review-card {
    border: 0.0625rem solid #ececec;
    border-radius: 0.6rem;
    padding: 0.75rem;
    position: relative;
    background: #fff;
    height: 100%;
}

.jd-user-top {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    margin-bottom: 0.45rem;
}

.jd-user-img {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
}

.jd-user-name {
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0;
    color: #111;
}

.jd-time {
    font-size: 0.68rem;
    color: #777;
}

.jd-mini-stars {
    color: #ff8a00;
    font-size: 0.72rem;
}

.jd-review-text {
    font-size: 0.75rem;
    color: #444;
    line-height: 1.45;
    margin: 0;
    padding-right: 1rem;
}

.jd-quote {
    position: absolute;
    top: 0.65rem;
    right: 0.6rem;
    color: #e1e1e1;
    font-size: 1.1rem;
}

/* Divider */
.jd-divider {
    border-top: 0.0625rem solid #ececec;
    margin: 1.2rem 0;
}

/* Bottom */
.jd-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.jd-box {
    border: 0.0625rem solid #ececec;
    border-radius: 0.7rem;
    padding: 1rem;
    height: 100%;
}

.jd-icon-title {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.jd-icon-title i {
    color: #ff7a00;
}


.jd-stat-card {
    background: #fffaf4;
    border-radius: 0.55rem;
    padding: 0.75rem;
}

.jd-stat-num {
    font-size: 1rem;
    font-weight: 800;
    color: #111;
}

.jd-stat-cap {
    font-size: 0.72rem;
    color: #666;
}

/* Availability */
.jd-live {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #eef9ef;
    color: #159c2f;
    padding: 0.28rem 0.55rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.jd-dot {
    width: 0.45rem;
    height: 0.45rem;
    background: #18b336;
    border-radius: 50%;
}

.jd-work {
    font-size: 0.78rem;
    color: #666;
    margin-top: 0.75rem;
}

.jd-day-grid {
    margin-top: 0.85rem;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.45rem;
}

.jd-day {
    background: #f4f8f2;
    border-radius: 0.45rem;
    text-align: center;
    padding: 0.55rem 0.2rem;
    font-size: 0.7rem;
    color: #333;
}

.jd-day span {
    display: block;
    margin-top: 0.25rem;
    color: #18b336;
    font-size: 0.9rem;
}

/* Responsive */
@media(max-width:1199px) {
    .jd-card-row {
        grid-template-columns: 1fr;
    }
}

@media(max-width:991px) {

    .jd-top-grid,
    .jd-bottom-grid {
        grid-template-columns: 1fr;
    }

    .jd-bars-row {
        grid-template-columns: 1fr;
    }
}

@media(max-width:767px) {
    .jd-review-wrap {
        padding: 1rem;
    }

    .jd-score {
        font-size: 2rem;
    }

    .jd-stat-grid {
        grid-template-columns: 1fr;
    }

    .jd-day-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width:480px) {
    .jd-day-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}



/* Breadcrumb */
.jd-pooja-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    color: #666;
}

.jd-pooja-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.jd-pooja-breadcrumb a:hover {
    color: #ff7a00;
}

.jd-pooja-breadcrumb span {
    color: #999;
}

/* Card */
.jd-pooja-card {
    background: #fff;
    border: 0.0625rem solid #ececec;
    border-radius: 0.75rem;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}



/* Layout */
.jd-pooja-row {
    display: grid;
    grid-template-columns: 15rem 1fr 11rem;
    gap: 1rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Image */
.jd-pooja-img {
    width: 100%;
    height: 9.2rem;
    object-fit: cover;
    border-radius: 0.55rem;
}

/* Title */
.jd-pooja-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.jd-pooja-desc {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 0.8rem;
}




.jd-pooja-icon {
    color: #ff7a00;
    font-size: 1rem;
    margin-top: 0.1rem;
}

.jd-pooja-ft-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.jd-pooja-ft-sub {
    font-size: 0.68rem;
    color: #777;
    line-height: 1.2;
}

/* Trust Box */
.jd-pooja-trust {
    background: #fff8f1;
    border-radius: 0.65rem;
    padding: 0.85rem;
    text-align: center;
}

.jd-pooja-trust i {
    font-size: 1.5rem;
    color: #ff7a00;
}

.jd-pooja-trust-top {
    font-size: 0.72rem;
    color: #666;
    margin-top: 0.25rem;
}

.jd-pooja-trust-num {
    font-size: 1.45rem;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
}

.jd-pooja-trust-bottom {
    font-size: 0.72rem;
    color: #666;
}

/* Responsive */
@media(max-width:1199px) {

    .jd-pooja-row {
        grid-template-columns: 7rem 1fr 9rem;
    }

    .jd-pooja-feature-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:991px) {

    .jd-pooja-row {
        grid-template-columns: 1fr;
    }



    .jd-pooja-card::after {
        right: 1rem;
        top: 1rem;
    }

}

@media(max-width:767px) {

    .jd-pooja-title {
        font-size: 1.25rem;
    }

    .jd-pooja-feature-wrap {
        grid-template-columns: 1fr 1fr;
    }

    .jd-pooja-img {
        height: 11rem;
    }

}

@media(max-width:575px) {

    .jd-pooja-card {
        padding: 0.9rem;
    }

    .jd-pooja-breadcrumb {
        font-size: 0.7rem;
    }

    .jd-pooja-title {
        font-size: 1.1rem;
    }

    .jd-pooja-desc {
        font-size: 0.75rem;
    }

    .jd-pooja-feature-wrap {
        grid-template-columns: 1fr;
    }

    .jd-pooja-img {
        height: 9rem;
    }

    .jd-pooja-card::after {
        font-size: 3.8rem;
    }
}

/* Card */
.jd-ks-card {
    background: #fff;
    border: 0.0625rem solid #ececec;
    border-radius: 0.7rem;
    padding: 1rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.jd-ks-card:hover {
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

/* Heading */
.jd-ks-head {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.75rem;
}

.jd-ks-head i {
    font-size: 1rem;
}

.jd-ks-orange {
    color: #ff7a00;
}

.jd-ks-red {
    color: #ef3d2f;
}

.jd-ks-green {
    color: #24a148;
}

/* Title */
.jd-ks-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.3;
}

/* Paragraph */
.jd-ks-text {
    font-size: 0.75rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* List */
.jd-ks-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.jd-ks-list li {
    font-size: 0.75rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin-bottom: 0.55rem;
    line-height: 1.45;
}

.jd-ks-list li i {
    font-size: 0.8rem;
    margin-top: 0.08rem;
    flex-shrink: 0;
}

/* Background Watermark */
.jd-ks-watermark {
    position: absolute;
    right: 0.45rem;
    bottom: 0.1rem;
    font-size: 4rem;
    color: #fff5eb;
    line-height: 1;
    pointer-events: none;
}

.jd-ks-watermark-img {
    position: absolute;
    right: 0.4rem;
    bottom: 0.35rem;
    width: 3.8rem;
    opacity: 0.12;
}

/* Responsive */
@media(max-width:991px) {

    .jd-ks-title {
        font-size: 0.9rem;
    }

}

@media(max-width:767px) {

    .jd-ks-card {
        padding: 0.9rem;
    }

    .jd-ks-title {
        font-size: 0.85rem;
    }

    .jd-ks-text,
    .jd-ks-list li {
        font-size: 0.73rem;
    }

    .jd-ks-watermark {
        font-size: 3rem;
    }

    .jd-ks-watermark-img {
        width: 3rem;
    }

}

@media(max-width:575px) {

    .jd-ks-wrap {
        padding: 0.75rem 0;
    }

}

/* Main Box */
.jd-pf-box {
    background: #ffffff;
    border: 0.0625rem solid #ececec;
    border-radius: 0.65rem;
    overflow: hidden;
}

/* Grid */
.jd-pf-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

/* Item */
.jd-pf-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    position: relative;
    min-height: 5rem;
}

.jd-pf-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    width: 0.0625rem;
    height: 60%;
    background: #ececec;
}

/* Icon */
.jd-pf-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    border-radius: 50%;
    background: #fff4ea;
    color: #ff6f00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

/* Text */
.jd-pf-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.18rem;
    line-height: 1.35;
}

.jd-pf-sub {
    font-size: 0.78rem;
    color: #777;
    margin: 0;
    line-height: 1.35;
}


/* Responsive */
@media(max-width:1199px) {

    .jd-pf-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .jd-pf-item:nth-child(3)::after {
        display: none;
    }

}

@media(max-width:991px) {

    .jd-pf-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jd-pf-item:nth-child(2)::after,
    .jd-pf-item:nth-child(4)::after {
        display: none;
    }

}

@media(max-width:767px) {

    .jd-pf-item {
        padding: 0.9rem;
        min-height: auto;
    }

    .jd-pf-icon {
        width: 2.7rem;
        height: 2.7rem;
        min-width: 2.7rem;
        font-size: 1.15rem;
    }

    .jd-pf-title {
        font-size: 0.88rem;
    }

    .jd-pf-sub {
        font-size: 0.74rem;
    }

}

@media(max-width:575px) {

    .jd-pf-grid {
        grid-template-columns: 1fr;
    }

    .jd-pf-item::after {
        display: none !important;
    }

    .jd-pf-item {
        border-bottom: 0.0625rem solid #ececec;
    }

    .jd-pf-item:last-child {
        border-bottom: none;
    }

}

/* Card */
.jd-bs-card {
    background: #ffffff;
    border: 0.0625rem solid #ececec;
    border-radius: 0.7rem;
    padding: 1rem;
    max-width: 22rem;
    margin: auto;
}

/* Heading */
.jd-bs-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1rem;
}

/* Product */
.jd-bs-top {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding-bottom: 0.9rem;
    border-bottom: 0.0625rem solid #efefef;
}

.jd-bs-img {
    width: 4rem;
    height: 4rem;
    object-fit: cover;
    border-radius: 0.45rem;
}

.jd-bs-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.2rem;
    line-height: 1.35;
}

.jd-bs-sub {
    font-size: 0.72rem;
    color: #777;
}

/* Detail rows */
.jd-bs-list {
    padding: 0.9rem 0;
    border-bottom: 0.0625rem solid #efefef;
}

.jd-bs-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.45rem;
}

.jd-bs-row:last-child {
    margin-bottom: 0;
}

.jd-bs-label {
    font-size: 0.75rem;
    color: #666;
}

.jd-bs-value {
    font-size: 0.75rem;
    color: #111;
    font-weight: 500;
    text-align: right;
}

/* Price Box */
.jd-bs-price {
    padding: 0.9rem 0;
    border-bottom: 0.0625rem solid #efefef;
}

.jd-bs-total {
    background: #fff7f1;
    border-radius: 0.45rem;
    padding: 0.75rem;
    margin-top: 0.65rem;
}

.jd-bs-total .jd-bs-row {
    margin: 0;
    align-items: center;
}

.jd-bs-final {
    color: #ff6f00;
    font-size: 1.2rem;
    font-weight: 800;
}

/* Notice */
.jd-bs-note {
    margin-top: 0.9rem;
    background: #f4faf1;
    border: 0.0625rem solid #e4f0de;
    border-radius: 0.5rem;
    padding: 0.75rem;
    display: flex;
    gap: 0.65rem;
}

.jd-bs-note i {
    color: #2ea44f;
    font-size: 1.1rem;
    margin-top: 0.1rem;
}

.jd-bs-note-title {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1f7f39;
    margin-bottom: 0.1rem;
}

.jd-bs-note-text {
    font-size: 0.7rem;
    color: #5d6b61;
    line-height: 1.4;
}

/* Payment */
.jd-bs-pay {
    padding-top: 1rem;
}

.jd-bs-pay-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 0.15rem;
}

.jd-bs-pay-sub {
    font-size: 0.7rem;
    color: #777;
    margin-bottom: 0.75rem;
}

.jd-bs-logo-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.45rem;
}

.jd-bs-logo {
    border: 0.0625rem solid #ececec;
    border-radius: 0.4rem;
    background: #fff;
    text-align: center;
    padding: 0.45rem 0.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #333;
}

/* Button */
.jd-bs-btn {
    width: 100%;
    margin-top: 1rem;
    border: none;
    background: #ff6f00;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.85rem;
    border-radius: 0.45rem;
    transition: 0.3s;
}

.jd-bs-btn:hover {
    background: #e66300;
}

.jd-bs-bottom {
    margin-top: 0.65rem;
    text-align: center;
    font-size: 0.68rem;
    color: #777;
}

.jd-bs-bottom i {
    color: #ff6f00;
    margin-right: 0.2rem;
}

/* Responsive */
@media(max-width:575px) {

    .jd-bs-card {
        max-width: 100%;
        padding: 0.9rem;
    }

    .jd-bs-final {
        font-size: 1.05rem;
    }

    .jd-bs-logo-row {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* Main Box */
.jd-ts-box {
    background: #ffffff;
    border: 0.0625rem solid #ececec;
    border-radius: 0.65rem;
    overflow: hidden;
}

/* Grid */
.jd-ts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

/* Item */
.jd-ts-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.15rem;
    min-height: 4.8rem;
    position: relative;
    transition: 0.3s ease;
}

.jd-ts-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 22%;
    width: 0.0625rem;
    height: 56%;
    background: #ececec;
}


/* Icon */
.jd-ts-icon {
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    border-radius: 50%;
    background: #fff4ea;
    color: #ff6f00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

/* Text */
.jd-ts-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.15rem;
    line-height: 1.35;
}

.jd-ts-sub {
    font-size: 0.78rem;
    color: #777;
    margin: 0;
    line-height: 1.35;
}

/* Responsive */
@media(max-width:1199px) {

    .jd-ts-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .jd-ts-item:nth-child(3)::after {
        display: none;
    }

}

@media(max-width:991px) {

    .jd-ts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .jd-ts-item:nth-child(2)::after,
    .jd-ts-item:nth-child(4)::after {
        display: none;
    }

}

@media(max-width:767px) {

    .jd-ts-item {
        padding: 0.9rem;
        min-height: auto;
    }

    .jd-ts-icon {
        width: 2.7rem;
        height: 2.7rem;
        min-width: 2.7rem;
        font-size: 1.15rem;
    }

    .jd-ts-title {
        font-size: 0.88rem;
    }

    .jd-ts-sub {
        font-size: 0.74rem;
    }

}

@media(max-width:575px) {

    .jd-ts-grid {
        grid-template-columns: 1fr;
    }

    .jd-ts-item::after {
        display: none !important;
    }

    .jd-ts-item {
        border-bottom: 0.0625rem solid #ececec;
    }

    .jd-ts-item:last-child {
        border-bottom: none;
    }

}

:root {
    --pb-primary: #ff6b00;
    --pb-border: #e6e6e6;
    --pb-text: #222222;
    --pb-muted: #777777;
    --pb-bg: #ffffff;
}

/* Main Box */
.pb-booking-box {
    background: var(--pb-bg);
    border: 0.0625rem solid #efefef;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

/* =========================
   TOP STEPS
========================= */
.pb-step-head {
    text-align: center;
    color: var(--pb-primary);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pb-progress-wrap {
    position: relative;
    margin-bottom: 1.8rem;
}

.pb-progress-line {
    position: absolute;
    top: 1rem;
    left: 7%;
    width: 86%;
    height: 0.0625rem;
    border-top: 0.12rem dashed #d7d7d7;
    z-index: 1;
}

.pb-steps-row {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.pb-step-item {
    text-align: center;
    width: 20%;
}

.pb-step-circle {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    border: 0.0625rem solid #d9d9d9;
    background: #fff;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin: auto;
}

.pb-step-item.active .pb-step-circle {
    background: var(--pb-primary);
    border-color: var(--pb-primary);
    color: #fff;
}

.pb-step-text {
    margin-top: 0.7rem;
    font-size: 0.85rem;
    color: #444;
}

.pb-step-item.active .pb-step-text {
    color: var(--pb-primary);
    font-weight: 600;
}

/* =========================
   Section Title
========================= */
.pb-section-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1.4rem;
}

.pb-section-title span {
    display: inline-flex;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: var(--pb-primary);
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

/* Labels */
.pb-label {
    font-size: 1rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.8rem;
}

/* =========================
   Cards
========================= */
.pb-pooja-card {
    border: 0.0625rem solid var(--pb-border);
    border-radius: 0.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: 0.3s;
    height: 100%;
}

.pb-pooja-card:hover {
    border-color: var(--pb-primary);
}

.pb-pooja-card.active {
    border-color: var(--pb-primary);
    background: #fffaf6;
}

.pb-card-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.pb-left-flex {
    display: flex;
    gap: 0.7rem;
}

.pb-radio {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    border: 0.1rem solid #bbb;
    margin-top: 0.2rem;
    padding-right: 18px;
    position: relative;
}

.pb-pooja-card.active .pb-radio {
    border-color: var(--pb-primary);
}

.pb-pooja-card.active .pb-radio::after {
    content: "";
    position: absolute;
    inset: 0.22rem;
    background: var(--pb-primary);
    border-radius: 50%;
}

.pb-card-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
}

.pb-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
}

.pb-card-desc {
    margin-left: 1.9rem;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--pb-muted);
    line-height: 1.6;
}

/* =========================
   Date Input
========================= */
.pb-date-box {
    border: 0.0625rem solid var(--pb-border);
    border-radius: 0.4rem;
    padding: 0.85rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.pb-date-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
}

/* =========================
   Time Slots
========================= */
.pb-slot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.pb-time-slot {
    border: 0.0625rem solid var(--pb-border);
    border-radius: 0.4rem;
    padding: 0.85rem 0.6rem;
    text-align: center;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
}

.pb-time-slot:hover {
    border-color: var(--pb-primary);
}

.pb-time-slot.active {
    background: var(--pb-primary);
    border-color: var(--pb-primary);
    color: #fff;
    font-weight: 700;
}

/* Responsive */
@media(max-width:991px) {

    .pb-slot-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pb-step-text {
        font-size: 0.75rem;
    }

}

@media(max-width:767px) {

    .pb-steps-row {
        gap: 0.4rem;
    }

    .pb-step-circle {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.8rem;
    }

    .pb-step-text {
        font-size: 0.68rem;
    }


    .pb-section-title {
        font-size: 1.3rem;
    }

    .pb-card-name {
        font-size: 1rem;
    }

    .pb-price {
        font-size: 1rem;
    }

}

:root {
    --sd-primary: #f97316;
    --sd-border: #e7e7e7;
    --sd-text: #222222;
    --sd-muted: #777777;
    --sd-light: #fafafa;
    --sd-green: #eaf7e7;
    --sd-green-text: #2f8d39;
}

.sd-main-box {
    background: #ffffff;
    border: 0.0625rem solid #efefef;
    border-radius: 0.8rem;
    padding: 1.5rem;
}

.sd-divider {
    border-right: 0.0625rem solid #ededed;
}

.sd-head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.4rem;
}

.sd-count {
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    background: var(--sd-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--sd-text);
}

.sd-label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.45rem;
    color: var(--sd-text);
}

.sd-label span {
    color: #ff3b30;
}

.sd-input,
.sd-select,
.sd-textarea {
    width: 100%;
    border: 0.0625rem solid var(--sd-border);
    border-radius: 0.4rem;
    padding: 0.8rem 0.9rem;
    font-size: 0.95rem;
    outline: none;
    background: #fff;
}

.sd-input:focus,
.sd-select:focus,
.sd-textarea:focus {
    border-color: var(--sd-primary);
}

.sd-textarea {
    min-height: 7rem;
    resize: none;
}

.sd-phone-wrap {
    display: flex;
    gap: 0.6rem;
}

.sd-code {
    width: 4rem;
}

/* location cards */

.sd-option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.sd-option-card {
    border: 0.0625rem solid var(--sd-border);
    border-radius: 0.45rem;
    padding: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    background: #fff;
}

.sd-option-card.active {
    border-color: var(--sd-primary);
    background: #fffaf5;
}

.sd-option-top {
    display: flex;
    gap: 0.7rem;
}

.sd-radio {
    width: 1.1rem;
    height: 1.1rem;
    border-radius: 50%;
    border: 0.1rem solid #c8c8c8;
    position: relative;
    margin-top: 0.1rem;
}

.sd-option-card.active .sd-radio {
    border-color: var(--sd-primary);
}

.sd-option-card.active .sd-radio::after {
    content: "";
    position: absolute;
    inset: 0.2rem;
    border-radius: 50%;
    background: var(--sd-primary);
}

.sd-option-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sd-text);
    line-height: 1.4;
}

.sd-option-sub {
    font-size: 0.85rem;
    color: var(--sd-muted);
    margin-top: 0.25rem;
    line-height: 1.5;
}

/* included box */

.sd-feature-box {
    margin-top: 0.8rem;
    border: 0.0625rem solid #ffd7ba;
    border-radius: 0.45rem;
    padding: 0.9rem;
    background: #fffdfa;
}

.sd-feature-title {
    color: var(--sd-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.sd-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.4rem 1rem;
}

.sd-list-item {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #444;
}

.sd-dot {
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 50%;
    border: 0.08rem solid var(--sd-primary);
    position: relative;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.sd-dot::after {
    content: "";
    position: absolute;
    inset: 0.18rem;
    border-radius: 50%;
    background: var(--sd-primary);
}

/* security */

.sd-safe-box {
    margin-top: 0.8rem;
    background: var(--sd-green);
    color: var(--sd-green-text);
    border-radius: 0.4rem;
    padding: 0.8rem 0.9rem;
    font-size: 0.92rem;
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.sd-shield {
    width: 1rem;
    height: 1rem;
    border: 0.1rem solid var(--sd-green-text);
    border-radius: 0.2rem;
    transform: rotate(45deg);
}

/* responsive */

@media(max-width:991px) {

    .sd-divider {
        border-right: none;
        border-bottom: 0.0625rem solid #ededed;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

}

@media(max-width:767px) {

    .sd-option-grid,
    .sd-list-grid {
        grid-template-columns: 1fr;
    }

    .sd-title {
        font-size: 1.2rem;
    }

    .sd-phone-wrap {
        flex-direction: column;
    }

    .sd-code {
        width: 100%;
    }

}

:root {
    --ct-primary: #ff6a00;
    --ct-dark: #1f1f1f;
    --ct-text: #666666;
    --ct-border: #ececec;
    --ct-soft: #fff6ef;
    --ct-bg: #fafafa;
}

.ct-card {
    background: #ffffff;
    border: 0.0625rem solid #f0f0f0;
    border-radius: 0.9rem;
    padding: 1.6rem;
    height: 100%;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.03);
}

.ct-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ct-dark);
    margin-bottom: 0.5rem;
}

.ct-sub {
    font-size: 0.95rem;
    color: var(--ct-text);
    margin-bottom: 1.6rem;
}

.ct-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ct-dark);
    margin-bottom: 0.45rem;
    display: block;
}

.ct-label span {
    color: var(--ct-primary);
}

.ct-group {
    margin-bottom: 1rem;
}

.ct-field {
    position: relative;
}

.ct-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #8b8b8b;
}

.ct-input,
.ct-select,
.ct-textarea {
    width: 100%;
    border: 0.0625rem solid var(--ct-border);
    border-radius: 0.45rem;
    padding: 0.85rem 0.9rem 0.85rem 2.4rem;
    font-size: 0.95rem;
    outline: none;
    background: #fff;
}

.ct-select {
    appearance: auto;
}

.ct-input:focus,
.ct-select:focus,
.ct-textarea:focus {
    border-color: var(--ct-primary);
}

.ct-textarea {
    min-height: 8rem;
    padding-left: 18px;
    resize: none;
    padding-top: 0.9rem;
}

.ct-phone {
    display: flex;
    gap: 0.7rem;
}

.ct-code {
    max-width: 5rem;
    padding-left: 0.9rem;
}

.ct-btn {
    width: 100%;
    border: none;
    background: linear-gradient(90deg, #ff6a00, #ff7a00);
    color: #fff;
    padding: 0.95rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.45rem;
    transition: 0.3s;
}

.ct-btn:hover {
    transform: translateY(-0.1rem);
}

.ct-note {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}

/* right side */

.ct-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ct-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 0.0625rem solid #f1f1f1;
}

.ct-item:last-child {
    border-bottom: none;
}

.ct-round {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--ct-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--ct-primary);
    flex-shrink: 0;
}

.ct-info {
    flex: 1;
}

.ct-head {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ct-dark);
    margin-bottom: 0.2rem;
}

.ct-small {
    font-size: 0.88rem;
    color: #7a7a7a;
    margin-bottom: 0.25rem;
}

.ct-link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ct-primary);
    text-decoration: none;
}

.ct-arrow {
    font-size: 1.5rem;
    color: #999;
}

/* responsive */

@media(max-width:991px) {
    .ct-title {
        font-size: 1.6rem;
    }
}

@media(max-width:767px) {

    .ct-card {
        padding: 1.2rem;
    }

    .ct-phone {
        flex-direction: column;
        gap: 0.8rem;
    }

    .ct-code {
        max-width: 100%;
    }

    .ct-title {
        font-size: 1.4rem;
    }

    .ct-item {
        align-items: flex-start;
    }

}

:root {
    --hh-primary: #ff6a00;
    --hh-dark: #111111;
    --hh-text: #666666;
    --hh-border: #ececec;
    --hh-bg: #ffffff;
}

.hh-box {
    background: var(--hh-bg);
    border-radius: 0.8rem;
    padding: 2rem;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.04);
}

/* breadcrumb */

.hh-bread {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hh-bread a {
    text-decoration: none;
    color: #555;
}

.hh-bread span {
    color: #999;
}

/* title */

.hh-title {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--hh-dark);
    margin-bottom: 0.8rem;
}

.hh-line-wrap {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 1.3rem;
}

.hh-line {
    width: 3.5rem;
    height: 0.12rem;
    background: var(--hh-primary);
}


.hh-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    max-width: 44rem;
    margin-bottom: 1.4rem;
}

/* features */

.hh-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-radius: 0.6rem;
    overflow: hidden;
}

.hh-item {
    text-align: center;
    border-right: 0.0625rem solid var(--hh-border);
}

.hh-item:last-child {
    border-right: none;
}

.hh-icon {
    width: 3.7rem;
    height: 3.7rem;
    border-radius: 50%;
    border: 0.0625rem solid #ffe2d0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--hh-primary);
    background: #fffaf7;
}

.hh-head {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--hh-dark);
    margin-bottom: 0.7rem;
}

.hh-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--hh-text);
}

/* responsive */

@media(max-width:991px) {

    .hh-title {
        font-size: 2.4rem;
    }

    .hh-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 2rem;
    }

    .hh-item:nth-child(2) {
        border-right: none;
    }

    .hh-item:nth-child(1),
    .hh-item:nth-child(2) {
        padding-bottom: 1rem;
    }

}

@media(max-width:767px) {

    .hh-box {
        padding: 1.4rem;
    }

    .hh-title {
        font-size: 2rem;
    }

    .hh-desc {
        font-size: 1rem;
    }



    .hh-item {
        border-right: none;
        border-bottom: 0.0625rem solid var(--hh-border);
        padding-bottom: 1.4rem;
    }

    .hh-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .hh-line-wrap {
        gap: 4rem;
    }

}

.contact-bg {
    background-image: url(../images/contact-bg.jpg);
    background-position: center;
    background-size: cover;
}

:root {
    --oc-primary: #ff6a00;
    --oc-dark: #1c1c1c;
    --oc-text: #666666;
    --oc-border: #f1e8df;
    --oc-soft: #fff8f2;
    --oc-bg: #ffffff;
}

.oc-card {
    background: var(--oc-bg);
    border: 0.0625rem solid var(--oc-border);
    border-radius: 0.9rem;
    overflow: hidden;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.03);
}

.oc-col {
    padding: 1.6rem;
    height: 100%;
}

.oc-divider {
    border-left: 0.0625rem solid var(--oc-border);
    border-right: 0.0625rem solid var(--oc-border);
    padding: 0;
}

/* left */

.oc-head {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 0.8rem;
}

.oc-pin {
    width: 2.3rem;
    height: 2.3rem;
    border-radius: 50%;
    background: #fff1e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oc-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.oc-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--oc-dark);
    line-height: 1.3;
    margin-bottom: 0.4rem;
}

.oc-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--oc-text);
    margin-bottom: 1.2rem;
}

.oc-btn {
    display: inline-block;
    padding: 0.8rem 1.2rem;
    border: 0.0625rem solid #ffd8bf;
    border-radius: 0.45rem;
    color: var(--oc-primary);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.oc-btn:hover {
    background: var(--oc-primary);
    color: #fff;
}

/* center */

.oc-img {
    width: 100%;
    height: 100%;
    min-height: 14rem;
    object-fit: cover;
    display: block;
}

/* right */

.oc-right {
    position: relative;
    overflow: hidden;
}

.oc-right::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: -2rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.08) 0%, rgba(255, 106, 0, 0) 70%);
}

.oc-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--oc-text);
    max-width: 22rem;
    margin-bottom: 1.5rem;
}

.oc-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    position: relative;
    z-index: 2;
}

.oc-icon {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
}

.oc-fb {
    background: #1877f2;
}

.oc-in {
    background: #e1306c;
}

.oc-yt {
    background: #ff0000;
}

.oc-wa {
    background: #25d366;
}

.oc-tg {
    background: #229ed9;
}

/* responsive */

@media(max-width:991px) {

    .oc-divider {
        border-left: none;
        border-right: none;
        border-top: 0.0625rem solid var(--oc-border);
        border-bottom: 0.0625rem solid var(--oc-border);
    }

    .oc-title {
        font-size: 1.5rem;
    }

}

@media(max-width:767px) {

    .oc-col {
        padding: 1.2rem;
    }

    .oc-title {
        font-size: 1.3rem;
    }

    .oc-text,
    .oc-desc {
        font-size: 0.95rem;
    }

    .oc-social {
        gap: 0.7rem;
    }

    .oc-icon {
        width: 2.4rem;
        height: 2.4rem;
        font-size: 1.05rem;
    }

}

.shop-bg {
    background-image: url(../images/shop-bg.jpg);
    background-position: center;
    background-size: cover;
}

.Remedies-bg {
    background-image: url(../images/Remedies-bg.jpg);
    background-position: center;
    background-size: cover;
}

:root {
    --sc-primary: #ff6a00;
    --sc-dark: #111111;
    --sc-text: #666666;
    --sc-border: #f1f1f1;
    --sc-soft: #fff7f1;
    --sc-bg: #ffffff;
}

.sc-box {
    padding: 0rem;
}

/* top heading */

.sc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.sc-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--sc-dark);
    margin: 0;
}

.sc-link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sc-primary);
    text-decoration: none;
    white-space: nowrap;
}

.sc-link:hover {
    color: #e55c00;
}

/* category scroll */

.sc-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.sc-scroll::-webkit-scrollbar {
    display: none;
}

.sc-row {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    min-width: max-content;
    padding-bottom: 0.4rem;
}

.sc-item img {
    width: 85px;
    margin-bottom: 10px;
}

/* item */

.sc-item {
    min-width: 6.5rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.sc-item:hover {
    transform: translateY(-0.2rem);
}

.sc-circle {
    width: 5.2rem;
    height: 5.2rem;
    border-radius: 50%;
    background: var(--sc-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.8rem;
    border: 0.0625rem solid #f7e6da;
    font-size: 2rem;
    overflow: hidden;
}

.sc-circle img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.sc-name {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--sc-dark);
}

/* responsive */

@media(max-width:991px) {

    .sc-title {
        font-size: 1.8rem;
    }

    .sc-row {
        gap: 1.3rem;
    }

}

@media(max-width:767px) {


    .sc-top {
        margin-bottom: 1.2rem;
    }

    .sc-title {
        font-size: 1.45rem;
    }

    .sc-link {
        font-size: 0.9rem;
    }

    .sc-item {
        min-width: 5.8rem;
    }

    .sc-circle {
        width: 4.6rem;
        height: 4.6rem;
        font-size: 1.7rem;
        margin-bottom: 0.65rem;
    }

    .sc-name {
        font-size: 0.82rem;
    }

}

:root {
    --bs-primary: #ff6a00;
    --bs-dark: #111111;
    --bs-text: #666666;
    --bs-border: #ececec;
    --bs-soft: #fff7f1;
    --bs-green: #53a653;
    --bs-bg: #ffffff;
}


/* heading */

.bs-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.bs-title {
    margin: 0;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--bs-dark);
}

.bs-link {
    text-decoration: none;
    color: #ff6a00;
    font-size: 1rem;
    font-weight: 700;
}

.bs-link:hover {
    color: #e25d00;
}

/* cards */

.bs-card {
    background: #fff;
    border: 0.0625rem solid var(--bs-border);
    border-radius: 0.7rem;
    padding: 0.9rem;
    height: 100%;
    transition: 0.3s;
    position: relative;
}



.bs-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.55rem;
    border-radius: 0.25rem;
    color: #fff;
    line-height: 1;
}

.bs-green {
    background: var(--bs-green);
}

.bs-orange {
    background: #ff6a00;
}

.bs-img {
    height: 8.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 4rem;
}

.bs-name {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--bs-dark);
    margin-bottom: 0.35rem;
}

.bs-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--bs-text);
    min-height: 3rem;
    margin-bottom: 0.6rem;
}

.bs-rate {
    font-size: 0.9rem;
    color: #ff6a00;
    margin-bottom: 0.9rem;
}

.bs-rate span {
    color: #777;
    margin-left: 0.3rem;
}

.bs-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.bs-price {
    font-size: 1.45rem;
    font-weight: 700;
    color: #ff6a00;
    ;
}

.bs-btn {
    border: 0.0625rem solid #ffb58c;
    background: #fff;
    color: #ff6a00;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.65rem 1rem;
    border-radius: 0.4rem;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
}

.bs-btn:hover {
    background: #ff6a00;
    color: #fff;
}

/* responsive */

@media(max-width:991px) {

    .bs-title {
        font-size: 1.8rem;
    }

}

@media(max-width:767px) {



    .bs-title {
        font-size: 1.45rem;
    }

    .bs-link {
        font-size: 0.9rem;
    }

    .bs-name {
        font-size: 1rem;
    }

    .bs-price {
        font-size: 1.2rem;
    }

    .bs-btn {
        padding: 0.55rem 0.8rem;
        font-size: 0.82rem;
    }

    .bs-img {
        height: 7rem;
        font-size: 3.2rem;
    }

}

:root {
    --gld-main: #d88a1c;
    --gld-dark: #8f4c07;
    --soft-bg: #f7f7f7;
    --card-bg: #ffffff;
    --line: #ececec;
    --text: #242424;
}



.ganesh-row {
    display: flex;
    gap: 1rem;
}

.ganesh-thumb-box {
    width: 5.2rem;
    flex-shrink: 0;
}

.ganesh-thumb-item {
    width: 100%;
    height: 5.2rem;
    border: 0.08rem solid var(--line);
    border-radius: 0.8rem;
    padding: 0.4rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 0.8rem;
    transition: all .3s ease;
}

.ganesh-thumb-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ganesh-thumb-item.active,
.ganesh-thumb-item:hover {
    border-color: var(--gld-main);
    box-shadow: 0 0 0.8rem rgba(216, 138, 28, .25);
}

.ganesh-main-box {
    flex: 1;
    position: relative;
}

.ganesh-main-frame {
    overflow: hidden;
    border-radius: 1rem;
    background: #fff8ef;
    border: 0.08rem solid #f0e4d1;
    position: relative;
}

.ganesh-main-img {
    width: 100%;
    height: 32rem;
    object-fit: cover;
    transition: transform .25s ease;
    cursor: zoom-in;
}

.ganesh-search-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.8rem;
    height: 2.8rem;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, .12);
    font-size: 1.2rem;
    z-index: 2;
}

.ganesh-note {
    margin-top: 1rem;
    background: #f7f0e4;
    border-radius: 0.7rem;
    padding: 0.9rem 1rem;
    text-align: center;
    color: #555;
    font-size: 1rem;
    font-weight: 500;
}

.ganesh-note i {
    color: #ff6b00;
    margin-right: 0.3rem;
}

@media(max-width:48rem) {
    .ganesh-row {
        flex-direction: column-reverse;
    }

    .ganesh-thumb-box {
        width: 100%;
        display: flex;
        gap: 0.7rem;
        overflow-x: auto;
    }

    .ganesh-thumb-item {
        min-width: 4.8rem;
        height: 4.8rem;
        margin-bottom: 0;
    }

    .ganesh-main-img {
        height: 24rem;
    }
}

@media(max-width:36rem) {
    .ganesh-main-img {
        height: 19rem;
    }

    .ganesh-note {
        font-size: 0.9rem;
    }
}

:root {
    --gsp-primary: #f26522;
    --gsp-dark: #111111;
    --gsp-text: #555555;
    --gsp-border: #e8e8e8;
    --gsp-soft: #f7f7f7;
    --gsp-green: #dff4df;
    --gsp-green-text: #2c8b39;
}


.gsp-tag {
    display: inline-block;
    background: #d6f2d6;
    color: #237a2f;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 0.7rem;
    border-radius: 0.4rem;
    margin-bottom: 1rem;
}

.gsp-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--gsp-dark);
    line-height: 1.2;
}

.gsp-subtitle {
    font-size: 1.05rem;
    color: #222;
    margin-top: 0.5rem;
}

.gsp-rating-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    align-items: center;
    margin-top: 1rem;
    color: var(--gsp-text);
    font-size: 0.95rem;
}

.gsp-stars {
    color: var(--gsp-primary);
    display: flex;
    gap: 0.12rem;
    font-size: 1rem;
}

.gsp-divider {
    width: 0.06rem;
    height: 1rem;
    background: #cfcfcf;
}

.gsp-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.3rem;
}

.gsp-price {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--gsp-primary);
}

.gsp-old-price {
    font-size: 1.35rem;
    color: #8a8a8a;
    text-decoration: line-through;
}

.gsp-off {
    background: var(--gsp-green);
    color: var(--gsp-green-text);
    padding: 0.35rem 0.65rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.35rem;
}

.gsp-line {
    border-top: 0.06rem solid var(--gsp-border);
    margin: 1.3rem 0;
}

.gsp-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
}

.gsp-feature-box {
    text-align: center;
}

.gsp-feature-box i {
    color: var(--gsp-primary);
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.gsp-feature-box span {
    display: block;
    font-size: 0.83rem;
    color: #333;
    line-height: 1.35;
}

.gsp-desc {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
}

.gsp-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gsp-list li {
    display: flex;
    gap: 0.7rem;
    align-items: flex-start;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.9rem;
    line-height: 1.5;
}

.gsp-list i {
    color: var(--gsp-primary);
    font-size: 1.15rem;
    margin-top: 0.1rem;
}

.gsp-list strong {
    font-weight: 700;
}

@media(max-width:36rem) {



    .gsp-title {
        font-size: 1.7rem;
    }

    .gsp-price {
        font-size: 1.8rem;
    }

    .gsp-old-price {
        font-size: 1.1rem;
    }

    .gsp-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gsp-subtitle,
    .gsp-desc,
    .gsp-list li {
        font-size: 0.95rem;
    }
}

:root {
    --qpc-primary: #ff6600;
    --qpc-primary-dark: #f15800;
    --qpc-text: #222222;
    --qpc-muted: #666666;
    --qpc-border: #e9e9e9;
    --qpc-soft: #f8f8f8;
    --qpc-green: #25a53b;
    --qpc-green-box: #eef7eb;
}

.qpc-wrap {
    background: #ffffff;
    border: 0.06rem solid var(--qpc-border);
    border-radius: 0.9rem;
    padding: 1.2rem;
    box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, .05);
}

.qpc-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--qpc-text);
    margin-bottom: 0.8rem;
}

.qpc-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.qpc-counter {
    display: flex;
    align-items: center;
    border: 0.06rem solid var(--qpc-border);
    border-radius: 0.45rem;
    overflow: hidden;
    background: #fff;
}

.qpc-btn {
    width: 2.8rem;
    height: 2.2rem;
    border: none;
    background: #fff;
    font-size: 1.2rem;
    color: #333;
    transition: 0.25s;
}

.qpc-btn:hover {
    background: #f3f3f3;
}

.qpc-count {
    width: 2.6rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: #111;
}

.qpc-stock {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1rem;
    color: #444;
}

.qpc-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--qpc-green);
}

.qpc-action {
    margin-top: 1.2rem;
}

.qpc-cart-btn,
.qpc-buy-btn {
    width: 100%;
    border-radius: 0.45rem;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.9rem 1rem;
    transition: 0.25s;
}

.qpc-cart-btn {
    border: none;
    background: linear-gradient(90deg, var(--qpc-primary), var(--qpc-primary-dark));
    color: #fff;
}

.qpc-cart-btn:hover {
    transform: translateY(-0.08rem);
}

.qpc-buy-btn {
    border: 0.08rem solid var(--qpc-primary);
    background: #fff;
    color: var(--qpc-primary);
}

.qpc-buy-btn:hover {
    background: #fff4ec;
}

.qpc-mid-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 1.3rem 0;
    padding-bottom: 1rem;
    border-bottom: 0.06rem solid var(--qpc-border);
}

.qpc-mid-link {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #555;
    font-size: 1rem;
    text-decoration: none;
}

.qpc-vline {
    width: 0.06rem;
    height: 1.2rem;
    background: var(--qpc-border);
}

.qpc-info-box {
    border-radius: 0.55rem;
    padding: 1rem;
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.qpc-info-box i {
    font-size: 1.6rem;
    line-height: 1;
}

.qpc-green-box {
    background: var(--qpc-green-box);
}

.qpc-green-box i,
.qpc-green-title {
    color: #2f8e3f;
}

.qpc-gray-box {
    background: #f7f7f7;
}

.qpc-gray-box i {
    color: #333;
}

.qpc-info-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.qpc-info-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

@media(max-width:30rem) {

    .qpc-wrap {
        margin: 1rem;
        padding: 1rem;
    }

    .qpc-cart-btn,
    .qpc-buy-btn {
        font-size: 1rem;
    }

    .qpc-mid-link,
    .qpc-stock {
        font-size: 0.92rem;
    }
}

/* parent row ke top align ke liye */
.product-sticky-wrap {
    position: relative;
}

/* scroll pe fixed */
.ganesh-wrap {
    position: sticky;
    top: 6rem;
    /* top se gap */
    z-index: 10;
}

/* mobile me normal rakho */
@media (max-width: 61.99rem) {
    .ganesh-wrap {
        position: static;
        top: auto;
    }
}

:root {
    --gtb-primary: #ff6a00;
    --gtb-dark: #1f1f1f;
    --gtb-text: #555555;
    --gtb-border: #ececec;
    --gtb-bg: #ffffff;
    --gtb-soft: #fff6f0;
}

.gtb-wrap {
    background: var(--gtb-bg);
    border: 0.06rem solid var(--gtb-border);
    border-radius: 0.9rem;
    overflow: hidden;
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, .04);
}

/* top tabs */
.gtb-tabs {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 0.06rem solid var(--gtb-border);
    overflow-x: auto;
    scrollbar-width: none;
}

.gtb-tabs::-webkit-scrollbar {
    display: none;
}

.gtb-btn {
    border: none;
    background: transparent;
    color: var(--gtb-dark);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1rem 1.4rem;
    white-space: nowrap;
    position: relative;
    transition: 0.25s;
    flex-shrink: 0;
}

.gtb-btn:hover {
    background: var(--gtb-soft);
    color: var(--gtb-primary);
}

.gtb-btn.active {
    color: var(--gtb-primary);
}

.gtb-btn.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0.12rem;
    background: var(--gtb-primary);
}

.gtb-btn.active::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.28rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--gtb-primary);
}

/* content */
.gtb-content {
    padding: 1rem;
}

.gtb-pane {
    display: none;
}

.gtb-pane.show {
    display: block;
}

.gtb-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    gap: 2rem;
}

.gtb-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gtb-dark);
    margin-bottom: 1rem;
}

.gtb-text {
    font-size: 1rem;
    color: var(--gtb-text);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.gtb-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gtb-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.gtb-list i {
    color: var(--gtb-primary);
    font-size: 1.1rem;
    margin-top: 0.1rem;
}



.gtb-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.gtb-benefit i {
    color: var(--gtb-primary);
    font-size: 1.3rem;
    margin-top: 0.08rem;
}

/* mobile */
@media(max-width:61.99rem) {
    .gtb-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gtb-side {
        border-left: none;
        border-top: 0.06rem solid var(--gtb-border);
        padding-left: 0;
        padding-top: 1.4rem;
    }
}

@media(max-width:36rem) {


    .gtb-content {
        padding: 1rem;
    }

    .gtb-btn {
        font-size: 0.95rem;
        padding: 0.95rem 1.1rem;
    }

    .gtb-title {
        font-size: 1.45rem;
    }

    .gtb-text,
    .gtb-list li,
    .gtb-benefit {
        font-size: 0.95rem;
    }
}

.jd-fixed-download-btn {
    position: fixed;
    right: 4%;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right top;
    background: #ff7a00;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 0.8rem 0.8rem 0 0;
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.jd-fixed-download-btn:hover {
    background: #e66b00;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width:768px) {
    .jd-fixed-download-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
    }
}

/* Title */
.am-about-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    margin-bottom: 1rem;
}

.am-about-title span {
    color: #f97316;
}

/* Divider */
.am-about-divider {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.am-about-divider::before,
.am-about-divider::after {
    content: "";
    width: 4rem;
    height: 0.12rem;
    background: #f97316;
}

.am-about-divider i {
    color: #f97316;
    font-size: 1rem;
}

/* Subtitle */
.am-about-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Text */
.am-about-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 1.4rem;
    max-width: 42rem;
}

/* Buttons */
.am-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}


/* Responsive */
@media (max-width: 991.98px) {
    .am-about-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 767.98px) {
    .am-about-wrap {
        padding: 3rem 1rem;
    }

    .am-about-title {
        font-size: 2rem;
    }

    .am-about-subtitle {
        font-size: 1.1rem;
    }

    .am-about-text {
        font-size: 0.95rem;
    }

    .am-btn-group {
        flex-direction: column;
    }

    .am-main-btn,
    .am-outline-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .am-about-title {
        font-size: 1.7rem;
    }
}

/* Title */
.os-story-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Divider */
.os-story-divider {
    width: 4rem;
    height: 0.18rem;
    background: #ff7a00;
    border-radius: 5rem;
    margin-bottom: 1.8rem;
}

/* Paragraph */
.os-story-text {
    font-size: 1rem;
    line-height: 2;
    color: #555555;
    margin-bottom: 1.5rem;
}

/* Quote Box */
.os-quote-box {
    margin-top: 2rem;
    padding: 1.5rem 1.3rem;
    border: 0.08rem solid #f6d6bd;
    border-radius: 0.7rem;
    background: #fffaf7;
    position: relative;
}

.os-quote-icon {
    font-size: 1.8rem;
    color: #ff7a00;
    line-height: 1;
    margin-right: 0.7rem;
    flex-shrink: 0;
}

.os-quote-text {
    font-size: 1rem;
    color: #444444;
    line-height: 1.8;
    font-weight: 500;
    margin: 0;
}

.os-quote-light {
    position: absolute;
    right: 1rem;
    bottom: 0.6rem;
    font-size: 1.8rem;
    color: #f5d9c6;
}

/* Responsive */
@media (max-width: 991.98px) {
    .os-story-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 767.98px) {
    .os-story-wrap {
        padding: 3rem 0;
    }

    .os-story-title {
        font-size: 1.8rem;
    }

    .os-story-text {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .os-quote-box {
        padding: 1.2rem 1rem;
    }

    .os-quote-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .os-story-title {
        font-size: 1.6rem;
    }

    .os-quote-box {
        border-radius: 0.6rem;
    }
}

/* Wrapper */
.aj-card-wrap {
    padding: 2rem 1rem;
    display: flex;
    justify-content: center;
}

/* Card */
.aj-profile-card {
    width: 100%;
    background: #ffffff;
    border: 0.06rem solid #ece7e2;
    border-radius: 0.8rem;
    padding: 1rem 0.8rem;
    text-align: center;
    transition: 0.3s ease;
}



/* Image */
.aj-profile-img {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 0.8rem;
    display: block;
    border: 0.12rem solid #f1ece7;
}

/* Name */
.aj-profile-name {
    font-size: 1rem;
    font-weight: 700;
    color: #222222;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

/* Experience */
.aj-profile-exp {
    font-size: 0.75rem;
    color: #8a8a8a;
    margin-bottom: 0.5rem;
}

/* Skills */
.aj-profile-skill {
    font-size: 0.75rem;
    color: #5e5e5e;
    line-height: 1.6;
    margin-bottom: 0.7rem;
}

/* Rating */
.aj-profile-rating {
    font-size: 0.78rem;
    color: #6d6d6d;
    margin-bottom: 0.9rem;
}

.aj-profile-rating span {
    color: #ff8a00;
    font-weight: 700;
}

/* Button */
.aj-profile-btn {
    display: inline-block;
    width: 100%;
    border: 0.08rem solid #f28b3b;
    color: #222222;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.65rem 0.5rem;
    border-radius: 0.45rem;
    transition: 0.3s ease;
}

.aj-profile-btn:hover {
    background: #ff7a00;
    border-color: #ff7a00;
    color: #ffffff;
}

/* Responsive */
@media (max-width:575.98px) {

    .aj-profile-card {
        max-width: 100%;
    }

    .aj-profile-name {
        font-size: 0.95rem;
    }

    .aj-profile-btn {
        font-size: 0.8rem;
    }
}

.tm-trust-box {
    background: linear-gradient(90deg, #220033, #2a0142, #1c0030);
    border-radius: 0.8rem;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

/* subtle texture */
.tm-trust-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 20%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.03) 0%, transparent 18%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 20%);
    pointer-events: none;
}

/* Heading */
.tm-trust-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}


.tm-trust-line {
    width: 3.5rem;
    height: 0.08rem;
    background: #ff7a00;
}

.tm-trust-divider i {
    color: #ff7a00;
    font-size: 0.8rem;
}

/* Items */
.tm-feature-item {
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 2;
    padding: 0.5rem;
}

.tm-icon-box {
    width: 2.7rem;
    height: 2.7rem;
    border: 0.08rem solid #ff7a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.7rem;
}

.tm-icon-box i {
    color: #ff7a00;
    font-size: 1.1rem;
}

.tm-feature-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width:991.98px) {
    .tm-trust-title {
        font-size: 1.7rem;
    }

    .tm-feature-text {
        font-size: 0.85rem;
    }
}

@media (max-width:767.98px) {
    .tm-trust-box {
        padding: 1.8rem 1rem;
    }

    .tm-trust-title {
        font-size: 1.5rem;
    }

    .tm-feature-item {
        margin-bottom: 1.4rem;
    }
}

@media (max-width:575.98px) {
    .tm-trust-title {
        font-size: 1.3rem;
    }

    .tm-feature-text {
        font-size: 0.82rem;
    }

    .tm-icon-box {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Card */
.rx-feature-box {
    text-align: center;
    padding: 0rem 0.8rem;
    height: 100%;
    position: relative;
}

/* Divider */
.rx-feature-box::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 0.06rem;
    height: 60%;
    background: #e7e1db;
}

.rx-feature-last::after {
    display: none;
}

/* Icon Circle */
.rx-icon-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #fdf4ee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.rx-icon-circle i {
    color: #ff6a00;
    font-size: 1.3rem;
}

/* Text */
.rx-feature-title {
    font-size: 0.8rem;
    color: #222222;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

/* Tablet */
@media (max-width:991.98px) {
    .rx-feature-title {
        font-size: 0.92rem;
    }
}

/* Mobile */
@media (max-width:767.98px) {

    .rx-feature-wrap {
        padding: 2rem 0.5rem;
    }

    .rx-feature-box {
        padding: 1rem 0.5rem;
    }

    .rx-feature-box::after {
        display: none;
    }

    .rx-feature-title {
        font-size: 0.9rem;
    }

    .rx-icon-circle {
        width: 2.8rem;
        height: 2.8rem;
    }

    .rx-icon-circle i {
        font-size: 1.2rem;
    }
}

@media (max-width:575.98px) {

    .rx-feature-title {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .rx-icon-circle {
        width: 2.6rem;
        height: 2.6rem;
        margin-bottom: 0.8rem;
    }
}


.rm-search-panel {
    background: #ffffff;
    border-radius: 0.8rem;
    padding: 1rem;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.04);
}

/* Inputs */
.rm-field-box {
    position: relative;
}

.rm-input-field,
.rm-select-field {
    width: 100%;
    height: 3rem;
    border: 0.06rem solid #e7e7e7;
    border-radius: 0.45rem;
    padding: 0 1rem;
    font-size: 0.95rem;
    color: #333333;
    background: #ffffff;
    outline: none;
    transition: 0.3s ease;
}

.rm-input-field {
    padding-right: 3rem;
}

.rm-input-field:focus,
.rm-select-field:focus {
    border-color: #ff6a00;
    box-shadow: none;
}

/* Search Icon */
.rm-search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: #333333;
}

/* Select */
.rm-select-field {
    appearance: none;
    cursor: pointer;
}

.rm-select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #333333;
    pointer-events: none;
}


/* Responsive */
@media (max-width:991.98px) {

    .rm-input-field,
    .rm-select-field,
    .rm-submit-btn {
        font-size: 0.9rem;
    }
}

@media (max-width:767.98px) {
    .rm-search-panel {
        padding: 0.9rem;
    }

    .rm-search-wrap {
        padding: 0.8rem;
    }
}

@media (max-width:575.98px) {

    .rm-input-field,
    .rm-select-field,
    .rm-submit-btn {
        height: 2.9rem;
        font-size: 0.88rem;
    }
}

.bs-img img {
    width: 128px;
}

/* Step Box */
.sp-step-card {
    text-align: center;
    position: relative;
    padding: 0 1rem;
    height: 100%;
}

/* Icon Circle */
.sp-icon-circle {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background: #fff5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.sp-icon-circle i {
    font-size: 2rem;
    color: #ff6a00;
}

/* Arrow */
.sp-arrow {
    position: absolute;
    top: 1rem;
    right: -0.8rem;
    font-size: 1.8rem;
    color: black;
}

.sp-last .sp-arrow {
    display: none;
}

/* Title */
.sp-step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #222222;
    line-height: 1.5;
    margin-bottom: 0.7rem;
}

/* Description */
.sp-step-text {
    font-size: 0.92rem;
    color: #666666;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 15rem;
}

/* Tablet */
@media (max-width:991.98px) {

    .sp-arrow {
        display: none;
    }

    .sp-step-card {
        margin-bottom: 2rem;
    }
}

/* Mobile */
@media (max-width:767.98px) {

    .sp-process-wrap {
        padding: 2.5rem 1rem;
    }

    .sp-icon-circle {
        width: 4rem;
        height: 4rem;
    }

    .sp-icon-circle i {
        font-size: 1.7rem;
    }

    .sp-step-title {
        font-size: 0.96rem;
    }

    .sp-step-text {
        font-size: 0.88rem;
        max-width: 100%;
    }
}

@media (max-width:575.98px) {

    .sp-process-wrap {
        padding: 2rem 0.8rem;
    }

    .sp-icon-circle {
        width: 3.7rem;
        height: 3.7rem;
        margin-bottom: 1rem;
    }

    .sp-icon-circle i {
        font-size: 1.5rem;
    }

    .sp-step-title {
        font-size: 0.92rem;
    }

    .sp-step-text {
        font-size: 0.85rem;
        line-height: 1.7;
    }
}



/* Tag */
.rc-top-badge {
    display: inline-block;
    background: #ffe8f0;
    color: #d83d7c;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.45rem 0.9rem;
    border-radius: 2rem;
    letter-spacing: 0.02rem;
    margin-bottom: 1rem;
}

/* Title */
.rc-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #161616;
    line-height: 1.3;
    margin-bottom: 0.7rem;
}

/* Subtitle */
.rc-subtitle {
    font-size: 1.15rem;
    color: #333333;
    margin-bottom: 1.6rem;
    line-height: 1.7;
}

/* Info Box */
.rc-info-box {
    border: 0.06rem solid #ececec;
    border-radius: 0.8rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.rc-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    height: 100%;
    position: relative;
}



.rc-last::after {
    display: none;
}

.rc-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 0.08rem solid #ff6a00;
    color: #ff6a00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.rc-label {
    font-size: 0.85rem;
    color: #777777;
    margin-bottom: 0.15rem;
}

.rc-value {
    font-size: 1rem;
    color: #222222;
    font-weight: 600;
    line-height: 1.5;
}

/* Description */
.rc-desc {
    font-size: 1rem;
    color: #555555;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

/* Buttons */
.rc-btn-wrap {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}



.rc-outline-btn {
    background: #ffffff;
    color: #222222;
    border: 0.08rem solid #ff6a00;
}

.rc-outline-btn:hover {
    background: #fff2e8;
    color: #222222;
}

/* Responsive */
@media (max-width:991.98px) {

    .rc-title {
        font-size: 1.9rem;
    }

    .rc-info-item::after {
        display: none;
    }
}

@media (max-width:767.98px) {


    .rc-title {
        font-size: 1.6rem;
    }

    .rc-subtitle {
        font-size: 1rem;
    }

    .rc-desc {
        font-size: 0.95rem;
    }

    .rc-main-btn,
    .rc-outline-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width:575.98px) {

    .rc-remedy-wrap {
        padding: 1rem 0.6rem;
    }

    .rc-title {
        font-size: 1.4rem;
    }

    .rc-value {
        font-size: 0.95rem;
    }
}

.astro-card-box {
    background: white;
    border-radius: 1rem;
    border: 0.06rem solid #e5e5e5;
}

.astro-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
}

.astro-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 0.06rem solid #eaeaea;
}

.astro-info-row:last-child {
    border-bottom: none;
}

.astro-label {
    font-size: 0.95rem;
    color: #666;
}

.astro-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: #e53935;
    text-align: right;
}

/* Responsive */
@media (max-width: 36rem) {
    .astro-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .astro-value {
        text-align: left;
    }
}

.astro-prod-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2c2c;
}

/* Card */
.astro-prod-card {
    background: #ffffff;
    border-radius: 0.8rem;
    padding: 0.6rem;
    border: 0.06rem solid #e6e6e6;
}

/* Image */
.astro-prod-img {
    width: 3.8rem;
    height: 3.8rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

/* Text */
.astro-prod-name {
    font-size: 1rem;
    font-weight: 500;
    color: #222;
}

.astro-prod-sub {
    font-size: 0.85rem;
    color: #777;
}

.astro-prod-price {
    font-size: 1rem;
    font-weight: 600;
    color: #e53935;
    margin-top: 0.2rem;
}

/* Cart Button */
.astro-cart-btn {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.6rem;
    background: #fff3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5722;
    font-size: 1.1rem;
    cursor: pointer;
}

/* View All */
.astro-view-all {
    font-size: 0.95rem;
    color: #ff5722;
    font-weight: 500;
    cursor: pointer;
}



.astro-help-box {
    background: linear-gradient(90deg, #fff6f1, #fff);
    border-radius: 1rem;
    padding: 1.2rem;
    border: 0.06rem solid #f1e2db;
}

/* Content */
.astro-help-content {
    max-width: 26rem;
}

.astro-help-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 0.4rem;
}

.astro-help-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.8rem;
}

/* Button */
.astro-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #ff5722;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
}

/* Image */
.astro-help-img-box {
    max-width: 10rem;
}

.astro-help-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 36rem) {
    .astro-help-box {
        flex-direction: column;
        text-align: left;
        gap: 1rem;
    }

    .astro-help-img-box {
        align-self: center;
    }
}


/* Title */
.astro-about-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 0.6rem;
}

/* Description */
.astro-about-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* Subtitle */
.astro-about-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2b2b2b;
}

/* Image */
.astro-about-img-box {
    width: 100%;
}

.astro-about-img {
    width: 100%;
    height: auto;
    border-radius: 0.8rem;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 48rem) {


    .astro-about-img-box {
        margin-top: 1rem;
    }
}


/* List */
.astro-use-list {
    padding-left: 1.2rem;
    margin: 0;
}

.astro-use-list li {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.5;
    position: relative;
}

/* Custom Bullet */
.astro-use-list li::marker {
    color: #ff5722;
    font-size: 1rem;
}

/* Card */
.astro-ben-box {
    background: #fff5ef;
    border-radius: 1rem;
    padding: 1.2rem;
    border: 0.06rem solid #f2ded6;
}

/* Row */
.astro-ben-row {
    gap: 1rem;
    padding-bottom: 0.3rem;
}

/* Item */
.astro-ben-item {
    min-width: 9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Icon */
.astro-ben-icon {
    width: 2.4rem;
    height: 2.4rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5722;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Text */
.astro-ben-text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.3;
}

/* Scrollbar hide (optional) */
.astro-ben-row::-webkit-scrollbar {
    display: none;
}

/* Responsive */
@media (max-width: 36rem) {
    .astro-ben-box {
        padding: 1rem;
    }

    .astro-ben-item {
        min-width: 11rem;
    }
}

#blog-tabs {
    padding: 1rem 1.2rem;
    ;
}

/* Card */
.astro-blog-card {
    background: #ffffff;
    border-radius: 0.9rem;
    overflow: hidden;
    border: 0.06rem solid #e6e6e6;
    height: 100%;
    transition: transform 0.2s ease;
}

.astro-blog-card:hover {
    transform: translateY(-0.3rem);
}

/* Image */
.astro-blog-img-box {
    position: relative;
}

.astro-blog-img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
}

/* Tag */
.astro-blog-tag {
    position: absolute;
    bottom: -0.8rem;
    left: 1rem;
    background: #ede7f6;
    color: #6a1b9a;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 0.5rem;
    font-weight: 500;
}

.astro-tag-orange {
    background: #fff3e0;
    color: #ef6c00;
}

.astro-tag-green {
    background: #e8f5e9;
    color: #2e7d32;
}

.astro-tag-blue {
    background: rgb(234, 242, 255);
    color: rgb(47, 111, 237);
}

.astro-tag-pink {
    background: #FFE9EF;
    color: #E54872;
}

/* Content */
.astro-blog-content {
    padding: 1rem;
}

.astro-blog-title {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.4rem;
}

.astro-blog-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

/* Meta */
.astro-blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #888;
}

/* Responsive */
@media (max-width: 36rem) {
    .astro-blog-img {
        height: 9rem;
    }

    .astro-blog-title {
        font-size: 0.95rem;
    }
}

/* Card */
.astro-side-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 1rem;
    border: 0.06rem solid #e6e6e6;
}

/* Title */
.astro-side-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 0.8rem;
}

/* Social */
.astro-social-row {
    display: flex;
    gap: 0.6rem;
}

.astro-social-btn {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.6rem;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
}

/* Posts */
.astro-post-item {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.astro-post-img {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 0.5rem;
    object-fit: cover;
}

.astro-post-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #222;
}

.astro-post-date {
    font-size: 0.75rem;
    color: #888;
}

/* Categories */
.astro-cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: #444;
}

.astro-cat-count {
    background: #f2f2f2;
    border-radius: 0.6rem;
    padding: 0.1rem 0.5rem;
    font-size: 0.75rem;
}

/* View All */
.astro-view-all {
    margin-top: 0.6rem;
    font-size: 0.9rem;
    color: #ff5722;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 36rem) {
    .astro-side-wrapper {
        max-width: 100%;
    }
}

/* Tag */
.astro-head-tag {
    display: inline-block;
    background: #ede7f6;
    color: #6a1b9a;
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
    border-radius: 0.6rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

/* Title */
.astro-head-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2b2b2b;
    line-height: 1.3;
    margin-bottom: 0.6rem;
}

/* Description */
.astro-head-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Author */
.astro-head-avatar {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    object-fit: cover;
}

.astro-head-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #222;
}

.astro-head-date {
    font-size: 0.75rem;
    color: #888;
}

.astro-verify {
    color: #ff9800;
    font-size: 0.8rem;
}

/* Share */
.astro-head-share {
    gap: 0.5rem;
    margin-top: 0.6rem;
}

.astro-share-text {
    font-size: 0.85rem;
    color: #666;
}

.astro-share-icon {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.5rem;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 36rem) {
    .astro-head-title {
        font-size: 1.4rem;
    }

    .astro-head-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }
}

/* Nav Box */
.astro-art-nav {
    background: #fff6f1;
    border: 0.06rem solid #f2ded6;
    border-radius: 0.8rem;
    padding: 0.8rem;
}

.astro-art-nav-title {
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.4rem;
}

.astro-art-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: #555;
}

/* Text */
.astro-art-desc {
    font-size: 0.95rem;
    color: #666;
}

.astro-art-heading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.astro-art-subheading {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.8rem 0 0.5rem;
}

.astro-art-text {
    font-size: 0.9rem;
    color: #555;
}

/* List */
.astro-art-list div {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.astro-art-list span {
    color: #ff5722;
    font-weight: 600;
}

/* Image */
.astro-art-img-box {
    margin-top: 0.5rem;
}

.astro-art-img {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Quote */
.astro-art-quote {
    text-align: center;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.astro-quote-icon {
    font-size: 1.6rem;
    color: #ff5722;
}

.astro-art-quote p {
    font-size: 0.95rem;
    color: #555;
    margin: 0.5rem 0;
}

.astro-quote-author {
    font-size: 0.85rem;
    color: #ff5722;
}

/* Responsive */
@media (max-width: 48rem) {
    .astro-art-img {
        margin-top: 1rem;
    }
}

/* Titles */
.astro-sec-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.astro-sec-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Text */
.astro-sec-desc,
.astro-sec-text {
    font-size: 0.9rem;
    color: #555;
}

/* List */
.astro-sec-list {
    padding-left: 1.2rem;
    margin-top: 0.4rem;
}

.astro-sec-list li {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.astro-sec-list li::marker {
    color: #ff5722;
}

/* Benefits */
.astro-sec-benefits {
    gap: 0.6rem;
    margin-top: 0.6rem;
}

.astro-sec-benefit {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    background: #fff4ef;
    padding: 0.3rem 0.6rem;
    border-radius: 0.6rem;
    color: #444;
}

/* Author */
.astro-sec-author {
    background: white;
    padding: 1rem;
    border-radius: 0.8rem;
    border: 0.06rem solid #f2ded6;
}

.astro-sec-avatar {
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.astro-sec-author-title {
    font-size: 0.75rem;
    color: #777;
}

.astro-sec-author-name {
    font-size: 0.95rem;
    font-weight: 600;
}

.astro-sec-author-desc {
    font-size: 0.8rem;
    color: #666;
}

.astro-sec-badge {
    color: #ff9800;
    font-size: 0.8rem;
}

.astro-sec-btn {
    width: 15%;
    background: #ff5722;
    color: #fff;
    border: none;
    padding: 0.5rem 0.9rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
}

/* Nav */
.astro-sec-nav-item {
    font-size: 0.85rem;
    color: #ff5722;
}

.astro-sec-nav-text {
    font-size: 0.8rem;
    color: #555;
}

/* Responsive */
@media (max-width: 48rem) {
    .astro-sec-author {
        gap: 0.6rem;
    }

    .astro-sec-btn {
        margin-top: 0.6rem;
    }
}

.jd-author-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.05);
    max-width: 28rem;
    width: 100%;
}

.jd-author-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.jd-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.jd-author-img img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
}

.jd-author-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #222;
}

.jd-verify-badge {
    color: #ff6b00;
    font-size: 0.9rem;
    margin-left: 0.3rem;
}

.jd-author-desc {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.jd-author-btn-wrap {
    text-align: center;
}

.jd-author-btn {
    display: inline-block;
    padding: 0.75rem 1rem;
    border: 0.125rem solid #ff6b00;
    color: #ff6b00;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s ease;
}

.jd-author-btn:hover {
    background: #ff6b00;
    color: #fff;
}

/* Card */
.jdg-card {
    background: linear-gradient(135deg, #f7f3ef, #f2ebe5);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.05);
}

/* Flex */
.jdg-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

/* Content */
.jdg-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2b2b2b;
}

.jdg-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Button */
.jdg-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #ff6a00, #ff3d00);
    color: #fff;
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.jdg-btn:hover {
    opacity: 0.9;
}

.jdg-btn-icon {
    font-size: 1rem;
}

/* Image */
.jdg-img img {
    width: 5rem;
    max-width: 100%;
}

/* Form */
.jdg-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.jdg-input {
    flex: 1;
    width: 100%;
    padding: 0.6rem 0.8rem;
    border-radius: 0.4rem;
    border: 0.0625rem solid #ddd;
    font-size: 0.85rem;
}

/* Bottom image */
.jdg-bottom-img img {
    width: 100%;
}

/* Responsive */
@media (max-width: 36rem) {
    .jdg-flex {
        flex-direction: column;
        text-align: center;
    }

    .jdg-img img {
        width: 4rem;
    }

    .jdg-form {
        flex-direction: column;
    }

    .jdg-btn {
        width: 100%;
        justify-content: center;
    }
}

.apply-btn {
    background: linear-gradient(180deg, #ffd978, #f4b400);
    color: #000;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
    width: 100px;
    border: none;
}

.nav-menu li a {
    color: #333;
    text-decoration: none;
    transition: 0.3s ease;
}

.nav-menu li a.active {
    color: rgb(255, 90, 0);
}

.nav-menu li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: rgb(255, 90, 0);
    border-radius: 2px;
}
