/* =========================================================
   RADHA RANI — HOMEPAGE HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(198, 146, 50, 0.16),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #fffaf2 0%,
            #fff4df 55%,
            #f9ead0 100%
        );
}

.hero::before {
    content: "ॐ";

    position: absolute;
    right: 5%;
    top: 50%;

    transform: translateY(-50%);

    font-family: Georgia, serif;
    font-size: clamp(15rem, 30vw, 30rem);

    color: rgba(122, 18, 48, 0.035);

    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    margin-bottom: 20px;
}

.hero-title {
    margin-bottom: 22px;

    color: var(--primary);
}

.hero-title span {
    color: var(--secondary);
}

.hero-description {
    max-width: 620px;
    margin-bottom: 30px;

    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 12px;

    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    border-radius: 999px;

    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
}

/* =========================
   HERO VISUAL
   ========================= */

.hero-visual {
    position: relative;

    min-height: 480px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    position: relative;

    width: min(100%, 470px);
    min-height: 450px;

    overflow: hidden;

    border: 1px solid rgba(198, 146, 50, 0.35);
    border-radius: 30px;

    background:
        linear-gradient(
            145deg,
            rgba(122, 18, 48, 0.96),
            rgba(86, 11, 33, 0.98)
        );

    box-shadow: 0 25px 70px rgba(70, 25, 25, 0.22);
}

.hero-card::before {
    content: "";

    position: absolute;
    inset: 18px;

    border: 1px solid rgba(231, 200, 120, 0.35);
    border-radius: 22px;

    pointer-events: none;
}

.hero-card-content {
    position: relative;
    z-index: 2;

    height: 100%;

    min-height: 450px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 45px;

    text-align: center;
}

.hero-om {
    margin-bottom: 18px;

    color: var(--gold-light);

    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
}

.hero-card h2 {
    margin-bottom: 12px;

    color: var(--white);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.hero-card p {
    max-width: 330px;

    color: rgba(255, 255, 255, 0.78);
}

.hero-card-line {
    width: 90px;
    height: 2px;

    margin: 25px 0;

    background: var(--gold-light);
}

/* =========================
   FLOATING TRUST CARDS
   ========================= */

.hero-floating {
    position: absolute;

    padding: 13px 16px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 13px;

    box-shadow: var(--shadow-md);

    font-size: 0.85rem;
    font-weight: 700;
}

.hero-floating-one {
    left: -25px;
    top: 75px;
}

.hero-floating-two {
    right: -25px;
    bottom: 75px;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 950px) {

    .hero {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        max-width: 760px;
        margin-inline: auto;
        text-align: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 450px;
    }

    .hero-card {
        max-width: 450px;
    }
}

@media (max-width: 600px) {

    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 0.98rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust-item {
        font-size: 0.76rem;
    }

    .hero-visual {
        min-height: 390px;
    }

    .hero-card,
    .hero-card-content {
        min-height: 390px;
    }

    .hero-card-content {
        padding: 35px 25px;
    }

    .hero-floating-one {
        left: -5px;
        top: 25px;
    }

    .hero-floating-two {
        right: -5px;
        bottom: 25px;
    }
}
/* =========================================================
   POPULAR PUJA SERVICES
   ========================================================= */

.popular-puja {
    background: var(--surface);
}

.puja-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.puja-card {
    position: relative;
    overflow: hidden;

    padding: 28px 22px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.puja-card:hover {
    transform: translateY(-6px);
    border-color: rgba(198, 146, 50, 0.55);
    box-shadow: var(--shadow-md);
}

.puja-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    margin-bottom: 18px;

    border-radius: 16px;

    background: var(--bg-soft);
    color: var(--primary);

    font-size: 1.7rem;
}

.puja-card h3 {
    margin-bottom: 9px;
    color: var(--primary);
}

.puja-card p {
    margin-bottom: 18px;
    font-size: 0.9rem;
}

.puja-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--primary);

    font-size: 0.88rem;
    font-weight: 700;
}

.puja-link span {
    transition: transform var(--transition);
}

.puja-card:hover .puja-link span {
    transform: translateX(4px);
}

.puja-view-all {
    display: flex;
    justify-content: center;
    margin-top: 38px;
}

@media (max-width: 1000px) {
    .puja-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .puja-grid {
        grid-template-columns: 1fr;
    }

    .puja-card {
        padding: 24px 20px;
    }
}
/* =========================================================
   WHY CHOOSE RADHA RANI
   ========================================================= */

.why-section {
    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

    color: var(--white);
}

.why-section .section-heading h2 {
    color: var(--white);
}

.why-section .section-heading p {
    color: rgba(255, 255, 255, 0.75);
}

.why-section .badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-light);
    border: 1px solid rgba(231, 200, 120, 0.25);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    padding: 30px 23px;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-md);

    transition:
        transform var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);

    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(231, 200, 120, 0.4);
}

.why-icon {
    width: 56px;
    height: 56px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 15px;

    background: rgba(231, 200, 120, 0.12);
    color: var(--gold-light);

    font-size: 1.6rem;
}

.why-card h3 {
    margin-bottom: 10px;
    color: var(--white);
}

.why-card p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
}

.why-bottom {
    display: flex;
    justify-content: center;

    margin-top: 45px;
}

.why-bottom-text {
    max-width: 650px;

    text-align: center;

    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
}

@media (max-width: 1000px) {

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 25px 20px;
    }
}
/* =========================================================
   HOW IT WORKS
   ========================================================= */

.how-section {
    background: var(--bg);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;

    position: relative;
}

.how-grid::before {
    content: "";

    position: absolute;
    top: 45px;
    left: 16%;
    right: 16%;

    height: 1px;

    background: var(--border);

    z-index: 0;
}

.how-card {
    position: relative;
    z-index: 1;

    padding: 32px 25px;

    text-align: center;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.how-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.how-number {
    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: var(--primary);
    color: var(--gold-light);

    border: 4px solid var(--bg);

    font-size: 1.15rem;
    font-weight: 800;

    box-shadow: 0 0 0 1px var(--border);
}

.how-icon {
    margin-bottom: 14px;

    font-size: 1.8rem;
}

.how-card h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.how-card p {
    font-size: 0.92rem;
}

.how-cta {
    display: flex;
    justify-content: center;

    margin-top: 40px;
}

@media (max-width: 700px) {

    .how-grid {
        grid-template-columns: 1fr;
    }

    .how-grid::before {
        display: none;
    }

    .how-card {
        padding: 28px 22px;
    }
}
/* =========================================================
   REAL PUJA GALLERY
   ========================================================= */

.gallery-section {
    background: var(--surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-auto-rows: 230px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;

    border-radius: var(--radius-md);
    background: var(--bg-soft);
    border: 1px solid var(--border);
}

.gallery-item:first-child {
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 20px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            var(--bg-soft),
            #f5e5c8
        );

    color: var(--primary);
}

.gallery-placeholder-icon {
    margin-bottom: 10px;
    font-size: 2.5rem;
}

.gallery-placeholder strong {
    font-size: 1rem;
}

.gallery-placeholder span {
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 0.8rem;
}

.gallery-note {
    max-width: 650px;

    margin: 30px auto 0;

    text-align: center;

    color: var(--text-soft);
    font-size: 0.85rem;
}

@media (max-width: 750px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 190px;
    }

    .gallery-item:first-child {
        grid-row: span 1;
    }
}

@media (max-width: 500px) {

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }
}
/* =========================================================
   CUSTOMER REVIEWS
   ========================================================= */

.reviews-section {
    background: var(--bg-soft);
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-bottom: 35px;
}

.reviews-stars {
    color: var(--secondary);
    font-size: 1.15rem;
    letter-spacing: 2px;
}

.reviews-rating {
    font-weight: 800;
    color: var(--primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    padding: 28px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);
}

.review-stars {
    margin-bottom: 16px;

    color: var(--secondary);
    letter-spacing: 2px;
}

.review-text {
    margin-bottom: 22px;

    color: var(--text);
    font-size: 0.94rem;
    line-height: 1.7;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--bg-soft);
    color: var(--primary);

    font-weight: 800;
}

.reviewer-name {
    color: var(--primary);
    font-weight: 700;
}

.reviewer-service {
    color: var(--text-soft);
    font-size: 0.78rem;
}

.reviews-cta {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

@media (max-width: 800px) {

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 24px;
    }
}
/* =========================================================
   ALL PUJA SERVICES
   ========================================================= */

.all-services-section {
    background: var(--bg);
}

.services-category {
    margin-bottom: 45px;
}

.services-category:last-child {
    margin-bottom: 0;
}

.services-category-title {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 20px;

    color: var(--primary);

    font-size: 1.35rem;
}

.services-category-title::before {
    content: "";

    width: 4px;
    height: 26px;

    border-radius: 5px;

    background: var(--secondary);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.service-mini-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    padding: 17px 18px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;

    color: var(--text);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.service-mini-card:hover {
    transform: translateY(-3px);

    border-color: rgba(198, 146, 50, 0.5);

    box-shadow: var(--shadow-sm);

    color: var(--primary);
}

.service-mini-name {
    font-size: 0.9rem;
    font-weight: 700;
}

.service-mini-arrow {
    color: var(--secondary);
    font-weight: 800;
}

.all-services-cta {
    display: flex;
    justify-content: center;

    margin-top: 45px;
}

@media (max-width: 950px) {

    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {

    .services-list {
        grid-template-columns: 1fr;
    }

    .service-mini-card {
        padding: 15px 16px;
    }
}
/* =========================================================
   SANSKAR + WEDDING
   ========================================================= */

.sanskar-section {
    background: var(--surface);
}

.sanskar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sanskar-panel {
    position: relative;
    overflow: hidden;

    padding: 35px;

    border-radius: var(--radius-lg);
    border: 1px solid var(--border);

    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.sanskar-panel::after {
    content: "ॐ";

    position: absolute;
    right: -25px;
    bottom: -65px;

    color: rgba(122, 18, 48, 0.035);

    font-family: Georgia, serif;
    font-size: 13rem;

    pointer-events: none;
}

.sanskar-panel h3 {
    position: relative;
    z-index: 1;

    margin-bottom: 10px;
    color: var(--primary);
}

.sanskar-panel > p {
    position: relative;
    z-index: 1;

    margin-bottom: 24px;
    font-size: 0.92rem;
}

.sanskar-list {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sanskar-item {
    display: flex;
    align-items: center;
    gap: 9px;

    padding: 12px 13px;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: var(--bg);

    color: var(--text);

    font-size: 0.84rem;
    font-weight: 600;

    transition:
        transform var(--transition),
        border-color var(--transition);
}

.sanskar-item:hover {
    transform: translateY(-2px);
    border-color: rgba(198, 146, 50, 0.55);
    color: var(--primary);
}

.sanskar-item-icon {
    color: var(--secondary);
}

.sanskar-panel-action {
    position: relative;
    z-index: 1;

    display: inline-flex;

    margin-top: 24px;

    color: var(--primary);

    font-size: 0.9rem;
    font-weight: 800;
}

@media (max-width: 800px) {

    .sanskar-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {

    .sanskar-panel {
        padding: 25px 20px;
    }

    .sanskar-list {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   BANGALORE SERVICE AREAS
   ========================================================= */

.areas-section {
    background: var(--bg-soft);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.area-card {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 16px 17px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 11px;

    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.area-card:hover {
    transform: translateY(-3px);

    border-color: rgba(198, 146, 50, 0.55);

    box-shadow: var(--shadow-sm);

    color: var(--primary);
}

.area-icon {
    color: var(--secondary);
}

.areas-note {
    max-width: 700px;

    margin: 28px auto 0;

    text-align: center;

    font-size: 0.9rem;
}

.areas-cta {
    display: flex;
    justify-content: center;

    margin-top: 35px;
}

@media (max-width: 900px) {

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 650px) {

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 430px) {

    .areas-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   FAQ SECTION
   ========================================================= */

.faq-section {
    background: var(--surface);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);

    overflow: hidden;
}

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 20px 22px;

    border: 0;
    background: transparent;

    color: var(--text);

    text-align: left;
    font-size: 0.98rem;
    font-weight: 700;

    cursor: pointer;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;

    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--bg-soft);
    color: var(--primary);

    font-size: 1.1rem;

    transition: transform var(--transition);
}

.faq-answer {
    display: none;

    padding: 0 22px 20px;
}

.faq-answer p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-bottom {
    display: flex;
    justify-content: center;

    margin-top: 35px;
}
/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--primary-dark),
            var(--primary)
        );

    color: var(--white);
}

.final-cta::before {
    content: "ॐ";

    position: absolute;
    right: 4%;
    top: 50%;

    transform: translateY(-50%);

    color: rgba(255, 255, 255, 0.035);

    font-family: Georgia, serif;
    font-size: 20rem;

    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    z-index: 1;

    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}

.final-cta .badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-light);

    border: 1px solid rgba(231, 200, 120, 0.25);
}

.final-cta h2 {
    margin: 20px 0 15px;

    color: var(--white);
}

.final-cta p {
    max-width: 650px;

    margin: 0 auto 30px;

    color: rgba(255, 255, 255, 0.76);
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px;
}

.final-cta-actions .btn-primary {
    background: var(--secondary);
}

.final-cta-actions .btn-primary:hover {
    background: #b57f25;
}

.final-cta-actions .btn-whatsapp {
    background: var(--success);
}

@media (max-width: 550px) {

    .final-cta-actions {
        flex-direction: column;
    }

    .final-cta-actions .btn {
        width: 100%;
    }
}
/* =========================================================
   RADHA RANI — FOOTER
   ========================================================= */

.site-footer {
    background: #241217;
    color: var(--white);
}

.footer-main {
    padding: 70px 0 45px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 45px;
}

.footer-brand {
    max-width: 340px;
}

.footer-brand .brand {
    margin-bottom: 18px;
}

.footer-brand .brand-name {
    color: var(--gold-light);
}

.footer-brand .brand-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.footer-description {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-heading {
    margin-bottom: 18px;

    color: var(--gold-light);
    font-size: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.88rem;

    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
}

/* =========================================================
   MOBILE STICKY ACTION BAR
   ========================================================= */

.mobile-sticky-bar {
    display: none;
}

@media (max-width: 768px) {

    .footer-main {
        padding: 55px 0 100px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        max-width: none;
    }

    .mobile-sticky-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;

        z-index: 2000;

        display: grid;
        grid-template-columns: 1fr 1fr 1fr;

        min-height: 62px;

        background: var(--white);
        border-top: 1px solid var(--border);

        box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.12);
    }

    .mobile-sticky-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 3px;

        color: var(--primary);

        font-size: 0.72rem;
        font-weight: 800;

        border-right: 1px solid var(--border);
    }

    .mobile-sticky-bar a:last-child {
        border-right: 0;
    }

    .mobile-sticky-bar .sticky-whatsapp {
        color: var(--success);
    }

    .mobile-sticky-bar .sticky-book {
        background: var(--primary);
        color: var(--white);
    }

    .sticky-icon {
        font-size: 1.15rem;
    }
}