/* 
   LB 50 - Modern Frontend Design Tokens
   Focused on Premium, High-End Health & Wellness Aesthetic
*/

:root {
    /* Refined Color Palette */
    --brand-primary: #db5252;
    --brand-primary-light: #ff7e7e;
    /* Kept from original, not explicitly removed by instruction */
    --brand-secondary: #fdd264;
    --brand-dark: #13204b;
    /* Updated case */
    --brand-light: #f8f9fa;
    --brand-white: #ffffff;

    /* Modern Gradients */
    --grad-mesh: radial-gradient(at 0% 0%, hsla(253, 16%, 7%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(225, 39%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(339, 49%, 30%, 1) 0, transparent 50%);

    --grad-premium: linear-gradient(135deg, var(--brand-primary), #b33939);

    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.45);
    --glass-blur: blur(12px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.1);
}


/* Header & Navigation Refinements */
.main-header {
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    z-index: 1050;
    /* Ensure header is above offcanvas backdrop */
}

.header-logo-img {
    height: 70px;
    transition: all 0.3s ease;
}

.main-header.sticky {
    padding: 0.2rem 0;
}

.main-header.sticky .header-logo-img {
    height: 50px;
}


/* Nav Utility & Social Links */
.nav-social-link {
    width: 35px;
    height: 35px;
    background: var(--brand-light);
    color: var(--brand-dark) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-social-link:hover {
    background: var(--brand-primary);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(219, 82, 82, 0.3);
}


/* LB 50 Method Section Micro-interactions */
.method-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.method-card:hover {
    transform: scale(1.02) translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}



/* Go to Top Button Modern UI */
.go-top-button {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    cursor: pointer;
    background: var(--brand-primary);
    color: white !important;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-premium);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* border: 2px solid rgba(255, 255, 255, 0.2); */
}

@keyframes pulse-shadow {
    0% {
        box-shadow: 0 0 0 0 rgba(219, 82, 82, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(219, 82, 82, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(219, 82, 82, 0);
    }
}

.go-top-button:hover {
    background: #1a2a5a;
    /* Slightly lighter than brand-dark for better contrast */
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 30px rgba(19, 32, 75, 0.4);
    animation: pulse-shadow 1.2s infinite;
}

.go-top-button i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.go-top-button:hover i {
    transform: translateY(-2px);
}

/* Why Us Premium Redesign */
.why-us-premium {
    background: radial-gradient(circle at center, #1a2a5a 0%, #0d152b 100%);
    position: relative;
    overflow: hidden;
}

.testimonial-glass-card {
    background: rgba(255, 255, 255, 0.08);
    /* Increased from 0.05 for better contrast */
    backdrop-filter: blur(20px);
    /* Increased blur */
    border: 1px solid rgba(255, 255, 255, 0.15);
    /* Slightly more prominent border */
    border-radius: 20px;
    padding: 2.5rem 2rem;
    color: #ffffff !important;
    /* Pure white for maximum contrast */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Reset to start to allow mt-auto to work */
}

.testimonial-glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    /* Brighter on hover */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.rating-stars {
    color: #fdd264 !important;
    /* Brighter gold */
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(253, 210, 100, 0.3);
}

.testimonial-text {
    font-size: 1.05rem;
    /* Slightly larger */
    line-height: 1.6;
    font-style: italic;
    font-weight: 500;
    /* Medium weight for better definition */
    opacity: 1 !important;
    /* Full opacity */
    color: #ffffff !important;
    /* Pure white */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonial-user {
    margin-top: auto;
    /* Pushes to bottom */
}

.user-avatar-small {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff !important;
}

.user-name {
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 1 !important;
    color: #ffffff !important;
}

/* Swiper Navigation Redesign */
.product-main-swiper .swiper-button-next,
.product-main-swiper .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--brand-dark) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-main-swiper .swiper-button-next:after,
.product-main-swiper .swiper-button-prev:after {
    font-size: 1.2rem !important;
    font-weight: 900;
}

.product-main-swiper .swiper-button-next:hover,
.product-main-swiper .swiper-button-prev:hover {
    background: var(--brand-primary);
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(219, 82, 82, 0.3);
    border-color: var(--brand-primary);
}

.product-main-swiper .swiper-button-next {
    right: 20px;
}

.product-main-swiper .swiper-button-prev {
    left: 20px;
}

.product-main-swiper {
    min-height: 400px;
    /* Prevent collapse */
    display: flex;
    align-items: center;
}

.product-gallery-img {
    max-height: 450px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-thumbs-swiper {
    height: 100px;
}

.product-thumbs-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.product-info-premium {
    padding-top: 1rem;
}




.product-thumbs-swiper .swiper-slide {
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
    border-width: 2px !important;
}

.product-thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--brand-primary) !important;
    box-shadow: var(--shadow-soft);
}

.product-thumbs-swiper .swiper-slide:hover {
    opacity: 0.8;
}

.product-info-premium .badge-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--brand-primary);
    font-weight: 700;
}

.product-description {
    color: #444;
    line-height: 1.8;
    font-size: 1.1rem;
}

.feature-box-premium {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 1.25rem !important;
    transition: all 0.3s ease;
}

.feature-box-premium:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
    border-color: var(--brand-primary);
}

.quantity-luxury {
    background: #f8f9fa;
    border-radius: 30px;
    padding: 4px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-qty {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    /* Fully rounded */
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    background: white !important;
    color: var(--brand-dark) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    flex-shrink: 0 !important;
}

.btn-qty:hover {
    background: var(--brand-primary) !important;
    color: white !important;
}

.btn-premium-cta {
    background: var(--brand-primary);
    color: white;
    border: none !important;
    border-radius: 30px !important;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1.25rem 2rem !important;
    /* Slightly more padding for prominence */
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(219, 82, 82, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-premium-cta:hover {
    background: var(--brand-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(19, 32, 75, 0.3);
}


/* Base Refinements */
body {
    background-color: var(--brand-white);
    overflow-x: hidden;
    padding-top: 90px;
    /* Offset for fixed header */
    scroll-behavior: smooth;
}

/* Section Anchor Jump Fix */
#method,
#products,
#testimonials,
#why,
#faq {
    scroll-margin-top: 80px;
}

/* Header & Navigation Refinements */
.main-header {
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: white !important;
    min-height: 90px;
}

.main-header.sticky {
    box-shadow: var(--shadow-soft);
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    min-height: 70px;
}

.navbar {
    width: 100%;
    display: flex;
    align-items: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-collapse ul>li {
    margin: 0;
}

.navbar-nav .nav-link {
    font-weight: 500 !important;
    color: var(--brand-dark) !important;
    padding: 0.8rem 1.2rem !important;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    letter-spacing: 1px !important;
    background: transparent !important;
}

/* Standardized Hover - Line below */
.navbar-nav .nav-link::before {
    display: none !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 1.2rem;
    right: 1.2rem;
    height: 2px;
    background: var(--brand-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    transform: scaleX(1);
}

/* Social & Utility Links */
.nav-social-link {
    width: 35px;
    height: 35px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    color: var(--brand-dark);
    margin: 0 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-social-link:hover {
    background: var(--brand-primary);
    color: white !important;
    transform: translateY(-2px);
}

/* Premium Hero Section */
.hero-modern {
    position: relative;
    height: calc(100vh - 86px);
    min-height: 700px;
    background-image: url('../img/lb50-background%20image.png');
    background-size: cover;
    background-position: center right;
    color: var(--brand-white);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}



.hero-glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-premium);
    color: var(--brand-dark);
    max-width: 550px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    min-height: 500px;
    /* Fixed height to prevent jitter */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Custom Carousel Pagination Styles */
.carousel-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--brand-dark);
    background: transparent;
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-nav-btn:hover {
    background: var(--brand-dark);
    color: white;
}

#heroStoryCarousel {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.carousel-navigation-wrap {
    margin-top: auto;
    padding-top: 2rem;
}

.carousel-pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-num {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--brand-dark);
    font-size: 1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
}

.page-num:hover {
    background: rgba(19, 32, 75, 0.05);
}

.page-num.active {
    background: var(--brand-dark);
    color: white;
    border-color: var(--brand-dark);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--brand-dark), var(--brand-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Method Cards */
.method-card {
    border: none;
    border-radius: 20px;
    padding: 2.5rem;
    background: var(--brand-white);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
}

.method-card.bronze::before {
    background: #CD7F32;
}

.method-card.silver::before {
    background: #C0C0C0;
}

.method-card.gold::before {
    background: #FFD700;
}

/* Product Grid Modern */
.product-card-premium {
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 20px;
    background: #fff;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.product-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.product-image-wrap {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.product-card-premium:hover .product-image-wrap {
    background: #f0f2f5;
}

.product-image-wrap img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-premium:hover .product-image-wrap img {
    transform: scale(1.1) rotate(2deg);
}

/* Premium Badge */
.badge-premium {
    background: var(--grad-premium);
    color: white;
    padding: 6px 10px 4px;
    border-radius: 50px;
    font-size: 0.65rem;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(219, 82, 82, 0.3);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.badge-premium::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    animation: shine-badge 3s infinite;
}

@keyframes shine-badge {
    0% {
        left: -60%;
    }

    20% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

/* Premium Button */
.btn-premium {
    background: var(--brand-primary);
    color: white !important;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    line-height: 1.3;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(219, 82, 82, 0.2);
}

.btn-premium:hover {
    background: var(--brand-dark);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-premium i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-premium:hover i {
    transform: translateX(5px);
}

/* FAQ Modern Design */
.premium-accordion .accordion-item {
    border: none;
    border-radius: 16px !important;
    background: #fff;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
}

.premium-accordion .accordion-item:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.premium-accordion .accordion-button {
    font-weight: 600;
    color: var(--brand-dark);
    padding: 1.5rem 2rem;
    box-shadow: none;
    background: transparent;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.premium-accordion .accordion-button:not(.collapsed) {
    color: var(--brand-primary);
    background: rgba(219, 82, 82, 0.03);
}

.premium-accordion .accordion-button::after {
    content: '\f067';
    /* Font Awesome plus */
    font-family: 'FontAwesome';
    background-image: none !important;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.premium-accordion .accordion-button:focus {
    box-shadow: none !important;
}

.premium-accordion .accordion-button:not(.collapsed)::after {
    content: '\f068';
    /* Font Awesome minus */
    transform: rotate(180deg);
}

.premium-accordion .accordion-body {
    padding: 2rem;
    color: #666;
    line-height: 1.8;
}


.hero-modern .img-fluid {
    /* Enlarge hero image */
    max-width: 100%;
    border-radius: 40px;
    box-shadow: var(--shadow-premium);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

/* Pulse Animation for CTA */
.btn-pulse {
    background: #db5252 !important;
    /* Revert to brand red */
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    color: white !important;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    animation: pulse-primary 3s infinite;
}

.btn-pulse:hover {
    background: var(--brand-dark);
    transform: scale(1.05);
    color: white !important;
}

@keyframes pulse-primary {
    0% {
        box-shadow: 0 0 0 0 rgba(219, 82, 82, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(219, 82, 82, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(219, 82, 82, 0);
    }
}

/* Testimonials Modern Design */
.testimonials-modern {
    padding: 120px 0;
    background: var(--brand-light);
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--brand-white);
    border: none;
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-premium);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 8rem;
    color: var(--brand-primary);
    opacity: 0.1;
    font-family: serif;
    z-index: -1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--brand-primary-light);
}

.testimonial-name {
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--grey);
    margin: 0;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--brand-dark);
    font-style: italic;
    opacity: 0.9;
}

.testimonial-stars {
    color: var(--brand-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

/* Footer Modern Design */
.footer-modern {
    background: var(--brand-dark);
    color: var(--brand-white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--brand-primary);
}

.footer-logo {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-heading {
    color: var(--brand-white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--brand-primary);
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--brand-primary);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    align-items: center;
}

.footer-contact-item i {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--brand-primary);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--brand-primary);
    color: white;
    transform: translateY(-3px);
}

/* Modern Cart Icon UI */
.cart-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-icon-wrap a {
    width: 38px;
    height: 38px;
    background: var(--brand-light);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark) !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    text-decoration: none !important;
    font-size: 0.9rem;
    /* Smaller icon */
}

.cart-icon-wrap a:hover {
    background: var(--brand-primary);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(219, 82, 82, 0.2);
}

.cart-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: var(--brand-primary);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--brand-white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cart-icon-wrap a:hover .cart-badge {
    background: var(--brand-dark);
    transform: scale(1.1);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--brand-primary);
    text-decoration: none;
}

/* -----------------------------------------------------------------
   Responsive Adjustments & Media Queries
----------------------------------------------------------------- */

@media (max-width: 991.98px) {
    .header-logo-img {
        height: 50px;
        max-width: 140px;
        /* Constrain logo width on mobile/tablet */
        object-fit: contain;
    }

    .hero-title {
        font-size: 2.2rem !important;
        margin-bottom: 1rem;
    }

    .navbar-brand {
        margin-right: 0 !important;
        flex-shrink: 1;
        /* Allow brand to shrink if needed */
        min-width: 0;
        overflow: hidden;
        width: auto;
    }

    .navbar .align-items-center {
        flex-direction: row !important;
    }

    .navbar-toggler {
        padding: 0.5rem;
        margin-left: 0.5rem;
    }

    /* Offcanvas Modern Styling (Mobile/Tablet Only) */
    .offcanvas {
        background: rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(15px);
        border-left: 1px solid rgba(255, 255, 255, 0.3);
        width: 300px !important;
    }

    .offcanvas-header {
        padding: 1.5rem;
    }

    .offcanvas-body {
        padding: 2rem 1.5rem;
    }

    .offcanvas .nav-link {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--brand-dark) !important;
        padding: 1rem 0 !important;
        transition: all 0.3s ease;
    }

    .offcanvas .nav-link:hover {
        color: var(--brand-primary) !important;
    }

    /* Navbar Toggler Refinement */
    .navbar-toggler:focus {
        box-shadow: none !important;
        outline: none !important;
    }

    .navbar-toggler .fa-bars {
        font-size: 1.25rem;
        color: var(--brand-dark);
    }

    /* Responsive Hero & Glass Card */
    .hero-modern {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 60px;
    }

    .hero-glass-card {
        padding: 2rem 1.5rem !important;
        min-height: 520px !important;
        margin: 0 auto;
    }

    .carousel-navigation-wrap {
        padding-top: 2rem;
        flex-direction: column !important;
        gap: 1.5rem;
        align-items: center !important;
        text-align: center;
    }

    /* Fix for mobile pagination multi-line issue */
    .carousel-navigation-wrap .d-flex.align-items-center.gap-2 {
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
    }

    .carousel-nav-btn {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px;
    }

    .carousel-pagination-numbers {
        gap: 4px !important;
    }

    .page-num {
        width: 26px !important;
        height: 26px !important;
        font-size: 0.85rem !important;
    }

    .hero-cta-wrap {
        width: 100%;
    }

    .hero-cta-wrap .btn {
        width: 100%;
        white-space: nowrap;
    }

    .product-info-premium {
        padding-left: 0 !important;
        margin-top: 2rem;
    }

    .product-main-swiper {
        min-height: 300px;
    }

    .product-description {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }

    .product-main-swiper .swiper-button-next,
    .product-main-swiper .swiper-button-prev {
        display: none !important;
    }

    /* FAQ Spacing Optimization */
    .faq.sec-space {
        padding: 40px 0 !important;
    }

    .faq .container>.row>.col-lg-9>.text-center.mb-5 {
        margin-bottom: 1.5rem !important;
    }

    .premium-accordion .accordion-item {
        margin-bottom: 0.75rem;
        border-radius: 10px !important;
    }

    .premium-accordion .accordion-button {
        padding: 0.85rem 1rem !important;
        font-size: 0.95rem !important;
    }

    .premium-accordion .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 575.98px) {
    .faq.sec-space {
        padding: 25px 0 !important;
    }

    .faq .container>.row>.col-lg-9>.text-center.mb-5 {
        margin-bottom: 1rem !important;
    }

    .premium-accordion .accordion-button {
        padding: 0.75rem 0.85rem !important;
        font-size: 0.9rem !important;
    }

    .premium-accordion .accordion-item {
        border-radius: 6px !important;
    }
}