/* ================================================================
   GAURI CAKE — Custom Stylesheet
   Bootstrap 5.3 base | Poppins (body) | Playfair Display (headings)
================================================================ */

/* ---- CSS Variables ----------------------------------------- */
:root {
    --primary:       #d4426e;
    --primary-dark:  #b8345a;
    --primary-light: #f4a7bc;
    --secondary:     #f9efd6;
    --dark:          #2c1810;
    --text:          #444444;
    --light:         #fff9f4;
    --light-alt:     #fdf0f5;
    --gray:          #6c757d;
    --white:         #ffffff;
    --border:        #f0d5df;
    --shadow:        rgba(212, 66, 110, 0.18);
}

/* ---- Global ------------------------------------------------- */
*               { box-sizing: border-box; }
html            { scroll-behavior: smooth; }
body            { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
h1, h2, h3,
h4, h5, h6      { font-family: 'Playfair Display', serif; color: var(--dark); }
a               { text-decoration: none; color: inherit; transition: color .3s; }
a:hover         { color: var(--primary); }
img             { max-width: 100%; }
.section-padding { padding: 90px 0; }
.bg-light-custom { background-color: var(--light); }

/* ---- Section Labels & Titles -------------------------------- */
.section-label {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: .9rem;
}
.section-title em      { font-style: italic; color: var(--primary); }
.section-subtitle      { font-size: 1.05rem; color: var(--gray); max-width: 520px; margin: 0 auto; }

/* ---- Primary Button ----------------------------------------- */
.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: .4px;
    transition: all .3s ease;
    display: inline-block;
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow);
}

/* ================================================================
   NAVBAR
================================================================ */
#mainNav {
    padding: 18px 0;
    transition: all .4s ease;
    background: transparent;
}
#mainNav.scrolled {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, .08);
    padding: 12px 0;
}

/* Brand */
.brand-icon          { font-size: 1.8rem; }
.brand-name          { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; color: #fff; transition: color .3s; }
#mainNav.scrolled .brand-name         { color: var(--dark); }
.brand-name span                      { color: var(--primary-light); }
#mainNav.scrolled .brand-name span    { color: var(--primary); }

/* Nav Links */
#mainNav .nav-link {
    color: rgba(255, 255, 255, .88);
    font-weight: 500;
    font-size: .88rem;
    padding: 8px 14px;
    position: relative;
    transition: color .3s;
}
#mainNav.scrolled .nav-link           { color: var(--dark); }
#mainNav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform .3s;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after      { transform: scaleX(1); }
#mainNav .nav-link:hover              { color: var(--primary-light); }
#mainNav.scrolled .nav-link:hover,
#mainNav.scrolled .nav-link.active    { color: var(--primary); }

/* Toggler */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, .55);
    padding: 6px 10px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#mainNav.scrolled .navbar-toggler { border-color: var(--primary); }
#mainNav.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212,66,110,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile collapse overlay */
@media (max-width: 991px) {
    #mainNav .navbar-collapse {
        background: rgba(255, 255, 255, .97);
        border-radius: 12px;
        padding: 16px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    }
    #mainNav:not(.scrolled) .navbar-collapse .nav-link { color: var(--dark); }
    #mainNav:not(.scrolled) .navbar-collapse .nav-link:hover { color: var(--primary); }
    #mainNav:not(.scrolled) .navbar-collapse .nav-link::after { background: var(--primary); }
}

/* ================================================================
   HERO SECTION
================================================================ */
.hero-section {
    min-height: 100vh;
    position: relative;
    background:
        linear-gradient(135deg, rgba(44, 24, 16, .82) 0%, rgba(180, 50, 90, .72) 100%),
        url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=1920&auto=format&fit=crop')
        center / cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .12);
}
.hero-content    { padding: 130px 20px 100px; }
.hero-tagline    { font-size: .8rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--primary-light); margin-bottom: 1rem; }
.hero-title      { font-size: clamp(2.6rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.14; color: #fff; margin-bottom: 1.4rem; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero-title em   { font-style: italic; color: var(--primary-light); }
.hero-subtitle   { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.82); max-width: 560px; margin: 0 auto 2rem; font-weight: 300; line-height: 1.7; }

.btn-hero-primary {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    border-radius: 50px;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 1rem;
    transition: all .3s ease;
    display: inline-block;
}
.btn-hero-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 66, 110, .45);
}
.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.75);
    border-radius: 50px;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 1rem;
    transition: all .3s ease;
    display: inline-block;
}
.btn-hero-outline:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,255,255,.2);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.6);
    font-size: .7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2.2s infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    55%       { transform: translateX(-50%) translateY(9px); }
}

/* ================================================================
   ABOUT SECTION
================================================================ */
.about-image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}
.about-img { border-radius: 20px; width: 100%; display: block; }

.about-badge {
    position: absolute;
    bottom: -22px;
    right: -22px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    width: 112px; height: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
}
.badge-number { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; line-height: 1; }
.badge-text   { font-size: .62rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; line-height: 1.5; }

.lead-text  { font-size: 1.08rem; font-weight: 500; color: var(--dark); margin-bottom: 1rem; }
.body-text  { color: var(--gray); line-height: 1.85; margin-bottom: .9rem; }

.about-stats { border-top: 1px solid var(--border); }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.stat-label  { font-size: .75rem; color: var(--gray); margin: 0; text-transform: uppercase; letter-spacing: 1px; }

/* ================================================================
   FEATURES / WHY CHOOSE US
================================================================ */
.features-section { background: linear-gradient(135deg, var(--dark) 0%, #4a2020 100%); }
.features-section .section-label  { color: var(--primary-light); }
.features-section .section-title  { color: #fff; }
.features-section .section-title em { color: var(--primary-light); }
.features-section .section-subtitle { color: rgba(255,255,255,.65); }

.feature-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 40px 28px;
    height: 100%;
    transition: all .4s ease;
}
.feature-card:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.feature-icon {
    width: 70px; height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: #fff;
    transition: all .35s;
}
.feature-card:hover .feature-icon {
    background: #fff;
    color: var(--primary);
    transform: scale(1.1) rotate(6deg);
}
.feature-card h4 { color: #fff; font-size: 1.15rem; margin-bottom: 12px; }
.feature-card p  { color: rgba(255,255,255,.6); font-size: .88rem; line-height: 1.75; margin: 0; }

/* ================================================================
   PRODUCTS SECTION
================================================================ */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all .4s ease;
    position: relative;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 66, 110, .15);
    border-color: var(--primary-light);
}

/* Image */
.product-img-wrapper { overflow: hidden; height: 220px; }
.product-img         { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.product-card:hover .product-img { transform: scale(1.08); }

/* Badge */
.product-badge {
    position: absolute;
    top: 14px; left: 14px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}
.badge-bestseller { background: #ff6b35; color: #fff; }
.badge-popular    { background: #43a047; color: #fff; }
.badge-fan        { background: #8e24aa; color: #fff; }
.badge-seasonal   { background: #fb8c00; color: #fff; }
.badge-premium    { background: var(--dark); color: #fff; }
.badge-special    { background: var(--primary); color: #fff; }

/* Card body */
.product-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-name  { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.product-desc  { font-size: .82rem; color: var(--gray); line-height: 1.65; flex: 1; margin-bottom: 12px; }
.product-weight {
    font-size: .75rem;
    color: var(--gray);
    background: var(--light);
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 14px;
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    margin-top: auto;
}
.product-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--primary); }

.btn-order {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: .78rem;
    font-weight: 600;
    transition: all .3s;
}
.btn-order:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: scale(1.05);
}

/* ================================================================
   TESTIMONIALS SECTION
================================================================ */
.testimonial-card {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: all .3s;
}
.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px var(--shadow);
    transform: translateY(-4px);
}
.stars            { color: #f4c430; font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-text { font-style: italic; color: var(--text); line-height: 1.85; font-size: .94rem; margin-bottom: 20px; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 46px; height: 46px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .88rem; color: var(--dark); }
.testimonial-author small  { font-size: .75rem; color: var(--gray); }

/* ================================================================
   HOW TO ORDER STEPS
================================================================ */
.order-steps-section { background: var(--secondary); }

.order-step {
    padding: 30px 20px;
    position: relative;
}
.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(212, 66, 110, .12);
    line-height: 1;
    margin-bottom: -10px;
}
.step-icon {
    width: 68px; height: 68px;
    background: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 8px 22px var(--shadow);
    transition: transform .3s;
}
.order-step:hover .step-icon { transform: scale(1.1) rotate(5deg); }
.order-step h5  { font-size: 1.05rem; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.order-step p   { font-size: .85rem; color: var(--gray); margin: 0; line-height: 1.7; }

/* ================================================================
   CONTACT SECTION
================================================================ */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 575px) {
    .contact-info-grid { grid-template-columns: 1fr; }
}

.contact-info-item  { display: flex; gap: 16px; margin-bottom: 0; align-items: flex-start; }
.contact-icon {
    width: 44px; height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: .95rem;
    flex-shrink: 0;
}
.contact-info-item strong { display: block; color: var(--dark); margin-bottom: 4px; font-size: .88rem; }
.contact-info-item p      { color: var(--gray); font-size: .88rem; margin: 0; line-height: 1.65; }
.contact-info-item a      { color: var(--gray); }
.contact-info-item a:hover { color: var(--primary); }

.social-links { display: flex; gap: 10px; }
.social-link {
    width: 42px; height: 42px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray);
    font-size: .95rem;
    transition: all .3s;
}
.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Form */
.custom-input {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: .88rem;
    color: var(--text);
    transition: all .3s;
    background: #fff;
    width: 100%;
}
.custom-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 66, 110, .1);
    outline: none;
}
.custom-select { cursor: pointer; }

/* Alerts */
.alert-custom {
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: .9rem;
}
.alert-success-custom { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; }
.alert-danger-custom  { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; }

/* ================================================================
   FOOTER
================================================================ */
.footer-section    { background: var(--dark); color: rgba(255,255,255,.72); }
.footer-top        { padding: 70px 0 50px; }

.brand-icon-footer   { font-size: 1.8rem; }
.footer-brand-name   { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; color: #fff; }
.footer-desc         { font-size: .85rem; line-height: 1.85; color: rgba(255,255,255,.55); }

.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.65);
    font-size: .88rem;
    transition: all .3s;
}
.footer-social a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

.footer-heading { color: #fff; font-size: .88rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }

.footer-links         { list-style: none; padding: 0; margin: 0; }
.footer-links li      { margin-bottom: 10px; }
.footer-links a       { color: rgba(255,255,255,.55); font-size: .85rem; display: flex; align-items: center; gap: 7px; transition: all .3s; }
.footer-links a::before { content: '→'; color: var(--primary); font-size: .72rem; opacity: 0; transform: translateX(-6px); transition: all .3s; }
.footer-links a:hover   { color: #fff; padding-left: 6px; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact-list    { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .83rem; color: rgba(255,255,255,.55); align-items: flex-start; }
.footer-contact-list li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a  { color: rgba(255,255,255,.55); }
.footer-contact-list a:hover { color: var(--primary-light); }

.footer-bottom        { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; }
.footer-bottom p      { font-size: .8rem; color: rgba(255,255,255,.4); margin: 0; }
.heart                { color: var(--primary); }

/* ================================================================
   BACK TO TOP
================================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 46px; height: 46px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all .35s;
    box-shadow: 0 4px 20px var(--shadow);
    z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover   { background: var(--primary-dark); transform: translateY(-4px); }

/* ================================================================
   RESPONSIVE OVERRIDES
================================================================ */
@media (max-width: 991px) {
    .section-padding { padding: 70px 0; }
}

@media (max-width: 767px) {
    .about-badge      { width: 92px; height: 92px; bottom: -16px; right: -10px; }
    .badge-number     { font-size: 1.5rem; }
    .hero-content     { padding: 110px 16px 90px; }
}

@media (max-width: 575px) {
    .section-padding  { padding: 60px 0; }
    .hero-title       { font-size: 2.2rem; }
    .back-to-top      { bottom: 20px; right: 16px; }
}

/* ================================================================
   FAQ SECTION
================================================================ */
#faqAccordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all .3s ease;
}
#faqAccordion .accordion-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 16px var(--shadow);
}
#faqAccordion .accordion-button {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--white);
    padding: 18px 24px;
    box-shadow: none;
    border-radius: 12px !important;
}
#faqAccordion .accordion-button:not(.collapsed) {
    background: var(--light-alt);
    color: var(--primary);
    box-shadow: none;
}
#faqAccordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(212, 66, 110, 0.15);
}
#faqAccordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d4426e'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
#faqAccordion .accordion-body {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.85;
    padding: 4px 24px 20px;
}
#faqAccordion .accordion-body a {
    color: var(--primary);
    font-weight: 500;
}
#faqAccordion .accordion-body a:hover {
    color: var(--primary-dark);
}

/* ================================================================
   FLOATING WHATSAPP BUTTON
================================================================ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px; /* positioned on the left side */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    color: #fff;
    background-color: #1ebe57;
    box-shadow: 2px 2px 15px rgba(37,211,102,0.4);
    transform: translateY(-5px);
}

@keyframes pulse-whatsapp {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 575px) {
    .whatsapp-float {
        bottom: 20px;
        left: 15px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

/* ================================================================
   SUBPAGE NAVBAR FIX (Overrides white text for light backgrounds)
================================================================ */
nav.navbar-subpage {
    background: var(--white) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .05) !important;
}
nav.navbar-subpage .brand-name {
    color: var(--dark) !important;
}
nav.navbar-subpage .nav-link {
    color: var(--dark) !important;
}
nav.navbar-subpage .nav-link:hover,
nav.navbar-subpage .nav-link.active {
    color: var(--primary) !important;
}
nav.navbar-subpage .navbar-toggler {
    border-color: var(--primary) !important;
}
nav.navbar-subpage .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(212,66,110,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
