/* ============================================
   MILLION CARE â€” Premium Landing Page Styles
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --purple-900: #3a1a6e;
    --purple-800: #4a2580;
    --purple-700: #5a3095;
    --purple-600: #6b3dad;
    --purple-500: #7c4dcc;
    --purple-400: #9b6fe0;
    --purple-300: #bfa0ee;
    --purple-200: #dac6f7;
    --purple-100: #efe7fc;
    --purple-50: #f7f3ff;

    --gold-600: #c9952a;
    --gold-500: #e0a820;
    --gold-400: #f0be3c;
    --gold-300: #f7d76a;
    --gold-gradient: linear-gradient(135deg, #f6d77a 0%, #e0a820 50%, #c9952a 100%);

    --bg-white: #ffffff;
    --bg-light: #faf8fc;
    --bg-light-purple: #f5f0ff;
    --text-dark: #2a1f3d;
    --text-body: #5a5070;
    --text-muted: #8e85a0;

    --shadow-sm: 0 2px 8px rgba(107, 61, 173, 0.07);
    --shadow-md: 0 4px 20px rgba(107, 61, 173, 0.1);
    --shadow-lg: 0 8px 40px rgba(107, 61, 173, 0.14);
    --shadow-xl: 0 20px 60px rgba(107, 61, 173, 0.18);
    --shadow-gold: 0 4px 20px rgba(224, 168, 32, 0.3);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

::selection {
    background: var(--purple-300);
    color: white;
}

img {
    max-width: 100%;
    height: auto;
}

section[id]:not(#hero) {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
}

/* ===== UTILITY CLASSES ===== */
.text-gold {
    color: var(--gold-500) !important;
}

.text-purple {
    color: var(--purple-500) !important;
}

.bg-light-purple {
    background-color: var(--bg-light-purple) !important;
}

.section-padding {
    padding: 80px 0;
}

/* ===== SECTION BADGES & TITLES ===== */
.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: var(--purple-100);
    color: var(--purple-600);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold-400);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ===== BUTTONS ===== */
.btn-gold {
    background: var(--gold-gradient);
    color: white !important;
    border: none;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.5);
    color: white !important;
}

.btn-gold:active {
    transform: translateY(0);
}

/* Pulse Animation */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(234, 179, 8, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(234, 179, 8, 0);
    }
}

/* ===== NAVBAR ===== */
.mc-navbar {
    padding: 6px 0;
    transition: var(--transition);
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.mc-navbar.scrolled {
    background: white;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 4px 0;
}

.mc-navbar .navbar-brand {
    padding: 0;
    line-height: 1;
    position: relative;
}

/* Glow ring behind the logo */
.mc-navbar .navbar-brand::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 20px;
    background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s;
    opacity: 0;
}

.mc-navbar .navbar-brand:hover::before {
    opacity: 1;
}

.nav-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    transition: transform 0.35s ease, filter 0.35s ease;
    filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.25));
}

.mc-navbar.scrolled .nav-logo {
    height: 56px;
}

.nav-logo:hover {
    transform: scale(1.06) translateY(-2px);
    filter: drop-shadow(0 8px 20px rgba(124, 58, 237, 0.40));
}

.brand-icon {
    font-size: 1.5rem;
    color: var(--purple-500);
}

.brand-icon-sm {
    color: var(--purple-300);
}

.footer-logo-icon {
    color: var(--purple-400);
}

.footer-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 14px;
    transition: transform 0.3s ease, opacity 0.3s;
}

.footer-logo:hover .footer-logo-img {
    transform: translateY(-3px);
    opacity: 0.9;
}

.mc-navbar .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: var(--transition);
    font-size: 0.95rem;
}

.mc-navbar .nav-link:hover,
.mc-navbar .nav-link.active {
    color: var(--purple-600) !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: auto;
    background: #ffffff;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.05);
}

.hero-section>.container-fluid>.row {
    background: #ffffff;
    border: 1px solid rgba(124, 58, 237, 0.09);
    border-radius: 34px;
    box-shadow: 0 28px 80px rgba(124, 58, 237, 0.14), 0 8px 24px rgba(15, 23, 42, 0.06);
    margin: 0;
    overflow: hidden;
}

.hero-section>.container-fluid>.row>[class*="col-"] {
    padding: 30px;
}

.hero-section>.container-fluid>.row>[class*="col-"]:first-child {
    border-inline-end: 1px solid rgba(124, 58, 237, 0.06);
}

.hero-gradient-overlay {
    display: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-box {
    width: 100%;
    max-width: 560px;
    margin-inline-end: auto;
    height: 100%;
    padding: 32px 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 243, 255, 0.84) 100%);
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 30px;
    box-shadow: 0 22px 70px rgba(107, 61, 173, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(217, 198, 247, 0.38) 0%, transparent 45%);
    pointer-events: none;
}

.hero-content-box>* {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    background: var(--purple-50);
    border: 1px solid var(--purple-200);
    border-radius: 50px;
    color: var(--purple-700);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 32px;
    max-width: 520px;
}

/* Hero Formula Text */
.hero-formula-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
    padding: 0;
}

.hero-formula-highlight {
    color: var(--purple-600);
    font-weight: 800;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Hide mobile carousel by default, show on mobile */
.hero-carousel-mobile {
    display: none;
}

/* Show desktop carousel by default */
.hero-carousel-desktop {
    display: block;
}

.hero-btn {
    font-size: 1.1rem;
    padding: 16px 36px;
}

.hero-btn-secondary {
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--purple-700) !important;
    border: 1px solid rgba(124, 58, 237, 0.16);
    box-shadow: 0 10px 24px rgba(107, 61, 173, 0.08);
}

.hero-btn-secondary:hover {
    background: white;
    color: var(--purple-800) !important;
    border-color: rgba(124, 58, 237, 0.24);
    box-shadow: 0 14px 28px rgba(107, 61, 173, 0.12);
}

.hero-trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-trust-badges span {
    color: var(--text-body);
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--purple-50);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid var(--purple-100);
}

.hero-trust-badges i {
    color: var(--gold-400);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    padding: 40px;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

.hero-product-img {
    max-height: 480px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: badge-float 3s ease-in-out infinite;
}

.badge-1 {
    top: 15%;
    right: 20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 25%;
    left: 20px;
    animation-delay: 1.5s;
}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===== HERO — RESPONSIVE (MOBILE FIX) ===== */

/* --- Desktop (≥992px) - Reset to default --- */
@media (min-width: 992px) {
    .hero-section {
        min-height: auto !important;
        padding-top: 110px !important;
        padding-bottom: 60px !important;
    }

    .hero-section>.container-fluid>.row>[class*="col-"] {
        padding-top: 26px;
        padding-bottom: 26px;
    }

    /* Hide mobile carousel on desktop */
    .hero-carousel-mobile {
        display: none !important;
    }

    /* Show desktop carousel */
    .hero-carousel-desktop {
        display: block !important;
    }

    .hero-section>.container-fluid>.row>.hero-text-col {
        padding-right: 30px;
        padding-left: 16px;
        border-inline-end: 1px solid rgba(124, 58, 237, 0.04);
    }

    .hero-section>.container-fluid>.row>.hero-carousel-desktop {
        padding-right: 16px;
        padding-left: 30px;
    }

    .hero-content {
        padding: 0 !important;
        text-align: right !important;
        border-radius: 0 !important;
        height: 100% !important;
    }

    .hero-content-box {
        max-width: 100% !important;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .hero-image-wrapper {
        padding: 40px !important;
    }

    .hero-product-img {
        max-height: 480px !important;
    }

    .hero-glow {
        width: 350px !important;
        height: 350px !important;
    }

    .hero-btn {
        width: auto !important;
        max-width: none !important;
    }

    .hero-cta-group {
        align-items: flex-end !important;
    }

    .hero-trust-badges {
        justify-content: flex-end !important;
    }
}

/* --- Tablet (≤991px) --- */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding-top: 82px;
        padding-bottom: 70px;
        align-items: flex-start;
    }

    /* Show mobile carousel inside box */
    .hero-carousel-mobile {
        display: block !important;
        margin: 20px 0;
    }

    /* Hide desktop carousel column */
    .hero-carousel-desktop {
        display: none !important;
    }

    .hero-content {
        padding: 0 0 28px;
        text-align: center;
    }

    .hero-content-box {
        max-width: 100%;
        margin-inline: 0;
        padding: 26px 22px;
        border-radius: 26px;
    }

    .hero-badge {
        font-size: 0.82rem;
        padding: 7px 16px;
        margin-bottom: 18px;
    }

    .hero-formula-text {
        margin-bottom: 0;
    }

    .hero-title {
        font-size: 2.1rem;
        line-height: 1.35;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 28px;
    }

    .hero-cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .hero-btn {
        width: 100%;
        max-width: 420px;
        font-size: 1rem;
        padding: 14px 28px;
    }

    .hero-btn-secondary {
        max-width: 420px;
    }

    .hero-trust-badges {
        justify-content: center;
        gap: 14px;
    }

    /* Image col */
    .hero-image-wrapper {
        padding: 28px 24px 12px;
    }

    .hero-product-img {
        max-height: 300px;
    }

    .hero-glow {
        width: 260px;
        height: 260px;
    }

    .badge-1 {
        top: 12%;
        right: 8px;
    }

    .badge-2 {
        bottom: 22%;
        left: 8px;
    }

    .hero-wave svg {
        height: 55px;
    }
}

/* --- Mobile (≤767px) --- */
@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 76px;
        padding-bottom: 60px;
    }

    .hero-carousel-mobile {
        margin: 16px 0 !important;
    }

    .hero-content {
        padding: 0 0 24px;
        border-radius: 0;
    }

    .hero-content-box {
        padding: 22px 18px;
    }

    .hero-carousel-wrap,
    .hero-carousel,
    .hero-carousel-inner,
    .hero-slide-img {
        border-radius: 24px;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 14px;
        margin-bottom: 14px;
    }

    .hero-formula-text {
        margin-bottom: 0;
    }

    .hero-title {
        font-size: 1.7rem;
        line-height: 1.4;
        margin-bottom: 14px;
    }

    .hero-btn {
        font-size: 0.97rem;
        padding: 13px 22px;
        border-radius: var(--radius-md);
    }

    .hero-btn-secondary {
        border-radius: var(--radius-md);
    }

    .hero-trust-badges {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-trust-badges span {
        font-size: 0.78rem;
        gap: 5px;
    }

    /* Image — tighter on mobile */
    .hero-image-wrapper {
        padding: 18px 12px 6px;
    }

    .hero-product-img {
        max-height: 230px;
        filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.4));
    }

    .hero-glow {
        width: 210px;
        height: 210px;
    }

    /* Floating badges — smaller & tucked in */
    .floating-badge {
        padding: 7px 12px;
        font-size: 0.74rem;
        gap: 6px;
        border-radius: 10px;
    }

    .badge-1 {
        top: 8%;
        right: 4px;
    }

    .badge-2 {
        bottom: 18%;
        left: 4px;
    }

    .hero-wave svg {
        height: 38px;
    }
}

/* --- Small Mobile (≤575px) --- */
@media (max-width: 575.98px) {
    .hero-section {
        padding-top: 72px;
        padding-bottom: 50px;
    }

    .hero-carousel-mobile {
        margin: 14px 0 !important;
    }

    .hero-content-box {
        padding: 20px 16px;
    }

    .hero-badge {
        font-size: 0.73rem;
        padding: 5px 12px;
    }

    .hero-formula-text {
        margin-bottom: 0;
    }

    .hero-title {
        font-size: 1.48rem;
        line-height: 1.45;
    }

    .hero-subtitle {
        font-size: 0.88rem;
    }

    .hero-btn {
        font-size: 0.93rem;
        padding: 13px 18px;
    }

    .hero-trust-badges {
        gap: 8px;
    }

    .hero-trust-badges span {
        font-size: 0.72rem;
    }

    .hero-image-wrapper {
        padding: 14px 8px 4px;
    }

    .hero-product-img {
        max-height: 200px;
    }

    .hero-glow {
        width: 175px;
        height: 175px;
    }

    .floating-badge {
        padding: 6px 10px;
        font-size: 0.7rem;
    }

    .badge-1 {
        right: 0;
    }

    .badge-2 {
        left: 0;
    }

    .hero-wave svg {
        height: 28px;
    }
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    border-radius: 30px;
    padding: 0;
    overflow: hidden;
}

/* Swipe Hint Badge */
.swipe-hint-badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--purple-700);
    box-shadow: 0 4px 15px rgba(107, 61, 173, 0.2);
    z-index: 5;
    animation: swipeHintPulse 2s ease-in-out infinite;
    border: 2px solid var(--purple-200);
}

.swipe-hint-badge i {
    color: var(--purple-600);
    font-size: 1rem;
}

.swipe-hint-badge .bi-arrow-left-right {
    animation: swipeArrowMove 1.5s ease-in-out infinite;
}

@keyframes swipeHintPulse {

    0%,
    100% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) scale(1.05);
        opacity: 0.9;
    }
}

@keyframes swipeArrowMove {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

/* Hide hint after first interaction */
.hero-carousel-wrap.interacted .swipe-hint-badge {
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Hide on desktop */
@media (min-width: 992px) {
    .swipe-hint-badge {
        display: none;
    }
}

.hero-carousel-caption-top {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.hero-carousel {
    border-radius: 30px;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    position: relative;
}

/* Swipe Hint Overlay */
.hero-carousel::after {
    display: none;
}

.hero-carousel-inner {
    border-radius: 30px;
    height: 100%;
}

.hero-carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.carousel-item {
    transition: opacity 0.6s ease-in-out !important;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Smooth fade transition */
.carousel-item.active {
    opacity: 1;
}

.carousel-item-next,
.carousel-item-prev {
    opacity: 0;
}

.carousel-item-start,
.carousel-item-end {
    opacity: 1;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 30px;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Dots */
.hero-carousel-indicators {
    bottom: 10px;
    margin: 0;
}

.hero-carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.24);
    border: none;
    margin: 0 3px;
    transition: all 0.3s;
}

.hero-carousel-indicators button.active {
    background: var(--gold-500);
    width: 22px;
    border-radius: 4px;
}

/* Arrows */
.hero-carousel-ctrl {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-radius: 50% !important;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    border: 2px solid var(--purple-500) !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.hero-carousel-ctrl:hover {
    background: var(--purple-600) !important;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(107, 61, 173, 0.4);
}

.hero-carousel-ctrl i {
    font-size: 1.4rem;
    color: var(--purple-600);
    font-weight: bold;
}

.hero-carousel-ctrl:hover i {
    color: #fff;
}

/* Comparison Row */
.hero-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.hero-compare-card {
    border-radius: 14px;
    padding: 14px 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-compare-card.good {
    background: rgba(22, 163, 74, 0.15);
    border: 1px solid rgba(22, 163, 74, 0.35);
}

.hero-compare-card.bad {
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.hcc-header {
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-compare-card.good .hcc-header {
    color: #86efac;
}

.hero-compare-card.bad .hcc-header {
    color: #fca5a5;
}

.hero-compare-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-compare-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.88);
}

.hero-compare-card.good ul li i {
    color: #4ade80;
    margin-top: 2px;
    flex-shrink: 0;
}

.hero-compare-card.bad ul li i {
    color: #f87171;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive */
@media (min-width: 992px) {
    .hero-slide-img {
        max-height: 500px !important;
    }
}

@media (max-width: 991.98px) {
    .hero-slide-img {
        max-height: 400px;
    }
}

@media (max-width: 767.98px) {
    .hero-slide-img {
        max-height: 350px;
    }

    .hero-carousel-caption-top {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .hero-compare-card {
        padding: 10px 12px;
    }

    .hcc-header {
        font-size: 0.75rem;
    }

    .hero-compare-card ul li {
        font-size: 0.72rem;
    }
}

@media (max-width: 575.98px) {
    .hero-slide-img {
        max-height: 300px;
    }

    .hero-compare-row {
        grid-template-columns: 1fr;
    }
}


.problem-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid transparent;
    overflow: hidden;
}

.before-card {
    border-color: rgba(239, 68, 68, 0.15);
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.after-card {
    border-color: rgba(34, 197, 94, 0.15);
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.problem-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.problem-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.problem-icon-wrap.danger {
    background: #fee2e2;
    color: #ef4444;
}

.problem-icon-wrap.success {
    background: #dcfce7;
    color: #22c55e;
}

.problem-card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.problem-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* ===== BEFORE / AFTER SINGLE COMPARISON ===== */
.ba-compare-wrap {
    margin-top: 40px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.ba-single-img {
    position: relative;
    width: 100%;
}

.ba-single-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ba-single-img:hover img {
    transform: scale(1.02);
}

/* Label bar at bottom */
.ba-single-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
}

.ba-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.before-tag {
    background: rgba(239, 68, 68, 0.88);
    color: white;
}

.after-tag {
    background: rgba(22, 163, 74, 0.88);
    color: white;
}

.ba-tag-center {
    color: white;
    font-size: 1.4rem;
    opacity: 0.85;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

@media (max-width: 575px) {
    .ba-single-img img {
        height: 240px;
    }

    .ba-tag {
        font-size: 0.82rem;
        padding: 6px 14px;
    }
}

/* ===== PRODUCT VIDEOS SECTION — Clean White ===== */
.product-videos-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 -20px 60px rgba(100, 60, 200, 0.10),
        0 20px 60px rgba(100, 60, 200, 0.10);
    margin: 8px 0;
    border-top: 1px solid rgba(124, 58, 237, 0.08);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.product-videos-section .reviews-slider-container {
    max-width: 100%;
}

/* Nav buttons on white bg */
.product-videos-section .reviews-nav-btn {
    background: #ffffff;
    border-color: rgba(124, 58, 237, 0.15);
    color: var(--purple-700);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
}

.product-videos-section .reviews-nav-btn:hover {
    background: var(--purple-600);
    border-color: var(--purple-600);
    color: white;
}

.ingredients-mega-section {
    overflow: hidden;
}

/* --- Ingredients Hero --- */
.ingredients-hero {
    background: linear-gradient(145deg, var(--purple-900) 0%, #2e1260 40%, var(--purple-800) 70%, #1e0c42 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.ingredients-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(224, 168, 32, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(124, 77, 204, 0.22) 0%, transparent 50%);
    pointer-events: none;
}

.ingredients-hero-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: white;
    line-height: 1.4;
    margin-bottom: 20px;
}

.ingredients-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    max-width: 520px;
}

.ingredients-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.ing-stat {
    text-align: center;
}

.ing-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-400);
    line-height: 1.2;
}

.ing-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.ing-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Ingredients Hero Image */
.ingredients-hero-img-wrap {
    position: relative;
    padding: 30px;
}

.ing-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}

.ingredients-hero-img {
    max-height: 420px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.4));
    animation: float 4s ease-in-out infinite;
}

.ing-floating-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: badge-float 3s ease-in-out infinite;
    color: var(--text-dark);
}

.ing-floating-tag.tag-1 {
    top: 15%;
    right: 0;
}

.ing-floating-tag.tag-2 {
    bottom: 20%;
    left: 0;
    animation-delay: 1.5s;
}

.ingredients-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 2;
}

.ingredients-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* --- Ingredient Mega Cards --- */
.ingredient-mega-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(124, 58, 237, 0.08);
}

.ingredient-mega-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.ingredient-mega-card.featured-mega {
    border: 2px solid var(--gold-500);
    box-shadow: 0 8px 40px rgba(234, 179, 8, 0.15);
}

.ing-card-img-wrap {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.ing-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

/* --- Compact Ingredient Cards --- */
.ing-compact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ing-compact-featured {
    border-color: var(--gold-500);
    background: rgba(255, 255, 255, 0.08);
    position: relative;
}

.ing-compact-featured::before {
    content: '⭐';
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1.2rem;
}

.ing-compact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ing-compact-icon i {
    font-size: 2.5rem;
    color: var(--icon-color, #f59e0b);
}

.ing-compact-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.ing-compact-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.ing-compact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.ing-compact-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.ing-compact-list li i {
    color: var(--gold-500);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .ing-compact-card {
        padding: 28px 20px;
    }

    .ing-compact-icon {
        width: 70px;
        height: 70px;
    }

    .ing-compact-icon i {
        font-size: 2rem;
    }

    .ing-compact-title {
        font-size: 1.3rem;
    }

    .ing-compact-list li {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .ing-compact-card {
        padding: 24px 16px;
    }
}

/* Navbar toggler for white navbar */
.mc-navbar .navbar-toggler {
    border-color: rgba(124, 58, 237, 0.2);
}

.mc-navbar .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(45, 10, 78, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.mid-cta-box {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--purple-100);
    position: relative;
    overflow: hidden;
}

.mid-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.mid-cta-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--purple-800);
    margin-bottom: 12px;
}

.mid-cta-desc {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 24px;
}

/* --- Ingredients Dark BG --- */
.ingredients-dark-bg {
    background: linear-gradient(145deg, var(--purple-900) 0%, #2e1260 40%, var(--purple-800) 70%, #1e0c42 100%);
}

/* --- Heat Hero Section (matches ingredients hero) --- */
.heat-hero-section {
    background: linear-gradient(145deg, var(--purple-900) 0%, #2e1260 40%, var(--purple-800) 70%, #1e0c42 100%);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.heat-hero-img {
    height: auto;
    width: 100%;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .heat-hero-section {
        padding: 80px 0 80px;
        text-align: center;
    }
}

/* --- Home Service Dark (Purple) Section --- */
.home-service-dark {
    background: linear-gradient(145deg, var(--purple-900) 0%, #2e1260 40%, var(--purple-800) 70%, #1e0c42 100%);
    position: relative;
    overflow: hidden;
}

.home-service-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(224, 168, 32, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(124, 77, 204, 0.18) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.home-service-dark .container {
    position: relative;
    z-index: 1;
}

.home-service-dark .row {
    direction: ltr;
}

/* USP items — premium glassmorphism on dark bg */
.home-service-dark .usp-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 44px;
}

.home-service-dark .usp-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    transform: translateY(0);
    transition: transform 0.25s ease, opacity 0.25s ease;
    position: relative;
    overflow: hidden;
}

.home-service-dark .usp-item::before {
    display: none;
}

.home-service-dark .usp-item::after {
    content: '';
    position: absolute;
    left: 0;
    right: 72px;
    bottom: -10px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent);
    opacity: 0.45;
}

.home-service-dark .usp-item:hover {
    transform: translateX(-4px);
    opacity: 0.98;
}

.home-service-dark .usp-item h5 {
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.home-service-dark .usp-item p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.94rem;
    line-height: 1.6;
    margin: 0;
}

.home-service-dark .usp-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-400);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
    transition: transform 0.3s, background 0.3s;
    position: relative;
    z-index: 1;
}

.home-service-dark .usp-item:hover .usp-icon {
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.14);
}

.home-service-dark .usp-item>div:last-child {
    min-width: 0;
}


/* --- Results Gallery Section --- */
.results-gallery-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 -20px 60px rgba(100, 60, 200, 0.10),
        0 20px 60px rgba(100, 60, 200, 0.10);
    margin: 8px 0 0;
    border-top: 1px solid rgba(124, 58, 237, 0.08);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

/* --- Premium Pricing Cards - Simplified & Clean --- */
.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(100, 60, 200, 0.12), 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.10);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Featured Card */
.pricing-featured {
    border-color: var(--gold-500);
    box-shadow: 0 4px 20px rgba(234, 179, 8, 0.15);
}

/* Ribbon - Simplified */
.pricing-ribbon {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
}

.pricing-ribbon span {
    display: inline-block;
    background: var(--purple-600);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.25);
}

.featured-ribbon span {
    background: linear-gradient(135deg, #e65100, #ff6d00);
}

/* Image - Cleaner */
.pricing-img-wrap {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    background: linear-gradient(180deg, #faf8fc 0%, white 100%);
}

.pricing-img-wrap img {
    max-height: 140px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Body - More Spacious */
.pricing-body {
    padding: 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--purple-900);
    margin-bottom: 4px;
}

.pricing-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Features list - Simplified */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    text-align: right;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dark);
}

.pricing-features li i {
    color: var(--purple-500);
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Price Box - Cleaner */
.pricing-price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    padding: 12px 0;
    margin-top: auto;
}

.pricing-old-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--purple-800);
    line-height: 1;
}

.pricing-price small {
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 4px;
    color: var(--text-muted);
}

.pricing-save {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #dcfce7;
    color: #15803d;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-featured .pricing-price {
    color: var(--gold-600);
}

/* CTA - Simplified */
.pricing-cta {
    border-radius: 12px !important;
    font-size: 0.95rem !important;
    font-weight: 700;
    padding: 12px 20px !important;
}

/* Pricing Actions - Two Buttons */
.pricing-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.btn-cart {
    flex: 1;
    height: 48px;
    border-radius: 12px;
    background: var(--purple-600);
    color: white !important;
    border: none;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cart:hover {
    background: var(--purple-700);
    color: white;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-cart:active {
    transform: scale(0.98);
    color: white;
}

.btn-whatsapp {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: #25D366;
    color: white !important;
    border: none;
    font-size: 1.3rem;
    padding: 0;
    border-radius: 12px;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    color: white !important;
}

.btn-whatsapp:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-featured {
        transform: none;
    }
}

@media (max-width: 767px) {
    .pricing-img-wrap {
        min-height: 120px;
        padding: 16px;
    }

    .pricing-img-wrap img {
        max-height: 100px;
    }

    .pricing-body {
        padding: 16px;
    }

    .pricing-title {
        font-size: 1rem;
    }

    .pricing-desc {
        font-size: 0.8rem;
    }

    .pricing-price {
        font-size: 1.8rem;
    }

    .pricing-cta {
        font-size: 0.9rem !important;
        padding: 10px 16px !important;
    }

    .pricing-title {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .pricing-desc {
        font-size: 0.78rem;
        margin-bottom: 10px;
    }

    .pricing-price {
        font-size: 1.8rem;
    }

    .pricing-price-box {
        padding: 10px 0;
        margin-bottom: 12px;
    }

    .pricing-cta {
        font-size: 0.82rem !important;
        padding: 10px 8px !important;
    }

    .pricing-ribbon span {
        font-size: 0.68rem;
        padding: 4px 10px;
    }
}

/* Results CTA */
.results-cta-wrap {
    text-align: center;
    margin-top: 48px;
    padding-top: 40px;
}

.results-trust-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--purple-700);
}

.trust-item i {
    color: var(--gold-500);
    font-size: 1.2rem;
}

/* ===== ANIKA CAFFEINE SECTION ===== */
.anika-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f5ff 50%, #ffffff 100%);
}

/* Image Wrap */
.anika-img-wrap {
    position: relative;
    text-align: center;
    padding: 20px;
}

.anika-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 3s ease-in-out infinite;
}

.anika-product-img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.15));
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.anika-img-wrap:hover .anika-product-img {
    transform: scale(1.03);
}

/* Price Tag */
.anika-price-tag {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: linear-gradient(135deg, var(--purple-800), var(--purple-600));
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.35);
}

.anika-price-value {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.anika-price-currency {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.85;
}

/* Detail Cards */
.anika-detail-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(124, 58, 237, 0.06);
    transition: var(--transition);
}

.anika-detail-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(124, 58, 237, 0.12);
}

.anika-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--purple-50);
}

.anika-card-header i {
    font-size: 1.4rem;
    color: var(--purple-500);
    background: var(--purple-50);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.anika-card-header h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--purple-900);
    margin: 0;
}

/* Ingredients Grid */
.anika-ingredients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.anika-ingredient {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: var(--purple-50);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.anika-ingredient:hover {
    background: var(--purple-100);
    transform: translateX(-2px);
}

.anika-ingredient>i {
    color: var(--purple-500);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.anika-ingredient strong {
    display: block;
    font-size: 0.92rem;
    color: var(--purple-800);
    font-weight: 700;
}

.anika-ingredient span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Steps */
.anika-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.anika-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.anika-step:hover {
    background: var(--purple-50);
    transform: translateX(-3px);
}

.step-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.anika-step p {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.5;
}

/* Notes */
.anika-notes-card {
    border-color: rgba(22, 163, 74, 0.12);
    background: #f0fdf4;
}

.anika-notes-card .anika-card-header {
    border-bottom-color: rgba(22, 163, 74, 0.1);
}

.anika-notes-card .anika-card-header i {
    color: #16a34a;
    background: rgba(22, 163, 74, 0.1);
}

.anika-notes-card .anika-card-header h4 {
    color: #15803d;
}

.anika-notes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.anika-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.anika-note i {
    color: #16a34a;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.anika-note span {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 767px) {
    .anika-ingredients-grid {
        grid-template-columns: 1fr;
    }

    .anika-detail-card {
        padding: 18px;
    }

    .anika-price-tag {
        padding: 10px 22px;
    }

    .anika-price-value {
        font-size: 1.6rem;
    }
}

/* --- Responsive for Ingredients Mega Section --- */
@media (max-width: 991px) {
    .ingredients-hero {
        padding: 80px 0 100px;
    }

    .ingredients-hero-title {
        font-size: 1.9rem;
    }

    .ing-card-content {
        padding: 28px;
    }

    .ing-card-img-wrap {
        min-height: 280px;
    }

    .ing-benefits-list {
        grid-template-columns: 1fr;
    }

    .heat-img {
        height: 350px;
    }

    .heat-protection-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .ingredients-hero {
        padding: 80px 0 80px;
        text-align: center;
    }

    .ingredients-hero-title {
        font-size: 1.6rem;
    }

    .ingredients-hero-desc {
        margin: 0 auto;
        font-size: 1rem;
    }

    .ingredients-hero-stats {
        justify-content: center;
    }

    .ing-card-content {
        padding: 24px 20px;
    }

    .ing-card-number {
        font-size: 2.5rem;
    }

    .ing-card-title {
        font-size: 1.3rem;
    }

    .mid-cta-box {
        padding: 32px 20px;
    }

    .mid-cta-title {
        font-size: 1.2rem;
    }

    .results-trust-row {
        gap: 16px;
    }

    .trust-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .ingredients-hero-title {
        font-size: 1.4rem;
    }

    .ing-stat-number {
        font-size: 1.5rem;
    }

    .ingredients-hero-stats {
        gap: 16px;
    }

    .ing-floating-tag {
        font-size: 0.75rem;
        padding: 8px 12px;
    }
}

/* ===== HOME SERVICE USP ===== */
.home-service-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.home-service-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.home-service-float-card {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--purple-700);
    box-shadow: var(--shadow-lg);
}

.home-service-float-card i {
    color: var(--purple-500);
    font-size: 1.5rem;
}

.home-service-content {
    padding: 20px 0 20px 40px;
    direction: rtl;
    text-align: right;
}

.usp-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.usp-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #f3e8ff;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.08);
    transition: all 0.3s ease;
}

.usp-item:hover {
    border-color: #e9d5ff;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.12);
    transform: translateY(-2px);
}



.usp-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--purple-500);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.usp-item h5 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--purple-800);
}

.usp-item p {
    color: #333;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* ===== MODERN COMPARISON SECTION ===== */
.comparison-mega-section {
    background: linear-gradient(145deg, var(--purple-900) 0%, #2e1260 40%, var(--purple-800) 70%, #1e0c42 100%);
    position: relative;
    overflow: hidden;
}

.comparison-mega-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 10% 30%, rgba(224, 168, 32, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 70%, rgba(124, 77, 204, 0.22) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.comparison-mega-section .container {
    position: relative;
    z-index: 1;
}

.comparison-modern-wrap {
    background: rgba(20, 5, 40, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 32px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.07);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.comp-row {
    display: grid;
    grid-template-columns: 1.2fr 1.6fr 1fr;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition);
    position: relative;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row:hover:not(.comp-header) {
    background: rgba(255, 255, 255, 0.02);
}

.comp-cell {
    padding: 24px 20px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.comp-header {
    border-bottom: none;
}

.comp-header .comp-cell {
    padding-bottom: 30px;
    padding-top: 10px;
}

.criteria-cell {
    justify-content: flex-start;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    gap: 16px;
    font-size: 1.15rem;
}

.criteria-icon {
    color: var(--gold-400);
    font-size: 1.4rem;
    background: rgba(234, 179, 8, 0.1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px rgba(234, 179, 8, 0.2);
}

.mc-cell {
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.20) 0%, rgba(94, 40, 147, 0.18) 100%);
    color: white;
    margin: 0;
    border-left: 1px solid rgba(124, 58, 237, 0.20);
    border-right: 1px solid rgba(124, 58, 237, 0.20);
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 2;
}

.comp-row:last-child .mc-cell {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

.comp-row:hover .mc-cell:not(.highlight-header) {
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.25) 0%, rgba(94, 40, 147, 0.25) 100%);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
    transform: scale(1.02);
    z-index: 3;
    border-radius: 12px;
}

.mc-cell.highlight-header {
    background: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-800) 100%);
    color: white;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 30px 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 -10px 40px rgba(124, 58, 237, 0.4);
    border: 1px solid rgba(124, 58, 237, 0.5);
    border-bottom: none;
}

.mc-cell.highlight-header .th-brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.brand-badge {
    background: linear-gradient(90deg, #facc15, #eab308);
    color: #4c1d7a;
    font-size: 0.9rem;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.4);
    display: inline-block;
    letter-spacing: 0.5px;
}

.other-cell {
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.75);
    padding-right: 30px;
}

.comp-value.success {
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.comp-value.muted {
    font-weight: 600;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
}

.icon-success {
    color: var(--gold-400);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(234, 179, 8, 0.5));
}

.icon-danger {
    color: #ef4444;
    font-size: 1.5rem;
    opacity: 0.7;
}

@media (max-width: 991px) {
    .comp-row {
        grid-template-columns: 1fr 1fr;
        padding: 16px 0;
    }

    .comp-header {
        display: flex;
        flex-direction: column;
        border-bottom: none;
    }

    .comp-header .criteria-cell,
    .comp-header .other-cell {
        display: none;
    }

    .comp-header .mc-cell {
        width: 100%;
        margin: 0;
        border-radius: 20px;
        border: 1px solid rgba(124, 58, 237, 0.5);
    }

    .comp-row .criteria-cell {
        grid-column: 1 / 3;
        justify-content: center;
        padding: 8px 16px 16px;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        margin-bottom: 8px;
    }

    .comp-row .mc-cell,
    .comp-row .other-cell {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 12px;
        padding: 24px 16px;
    }

    .comp-row .mc-cell {
        margin: 0;
        border-radius: 16px;
        border: 1px solid rgba(124, 58, 237, 0.3);
    }

    .comp-row:last-child .mc-cell {
        border-radius: 16px;
    }
}

@media (max-width: 575px) {
    .comp-value.success {
        font-size: 0.95rem;
    }

    .comp-value.muted {
        font-size: 0.9rem;
    }
}

/* ===== BEFORE / AFTER SECTION (DARK PURPLE) ===== */
.before-after-section {
    background: linear-gradient(145deg, var(--purple-900) 0%, #2e1260 40%, var(--purple-800) 70%, #1e0c42 100%);
    position: relative;
    overflow: hidden;
}

.before-after-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 15% 40%, rgba(224, 168, 32, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 60%, rgba(124, 77, 204, 0.22) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.before-after-section .container {
    position: relative;
    z-index: 1;
}

/* Nav buttons on dark bg */
.before-after-section .reviews-nav-btn {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.before-after-section .reviews-nav-btn:hover {
    background: var(--gold-500);
    color: var(--purple-900);
    border-color: var(--gold-500);
}

/* ===== VIDEO CARDS ===== */
.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.video-placeholder {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.video-card:hover .video-placeholder img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--purple-600);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.video-card:hover .video-play-btn {
    background: var(--purple-500);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* ===== WHATSAPP CARDS ===== */
.whatsapp-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.whatsapp-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.wa-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.wa-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--purple-500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.wa-header strong {
    font-size: 0.95rem;
}

.wa-message {
    background: #dcf8c6;
    padding: 14px 18px;
    border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
    position: relative;
    margin-bottom: 12px;
}

.wa-message p {
    margin: 0 0 8px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #303030;
}

.wa-time {
    font-size: 0.75rem;
    color: #999;
    display: block;
    text-align: left;
}

.wa-stars {
    display: flex;
    gap: 3px;
    color: var(--gold-500);
    font-size: 0.85rem;
}

/* ===== COUNTER SECTION ===== */
.counter-section {
    background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-600) 100%);
    padding: 60px 0;
}

.counter-item {
    color: white;
}

.counter-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold-400);
    display: block;
    line-height: 1.2;
}

.counter-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 8px 0 0;
}

/* ===== FAQ ACCORDION — PREMIUM ===== */
.mc-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mc-accordion .accordion-item {
    border: none !important;
    border-radius: 16px !important;
    background: #fff;
    box-shadow: 0 4px 20px rgba(100, 60, 200, 0.08);
    transition: box-shadow 0.3s ease;
    position: relative;
    will-change: box-shadow;
}


.mc-accordion .accordion-item:hover {
    box-shadow: 0 8px 32px rgba(100, 60, 200, 0.14);
}

/* Open state */
.mc-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    box-shadow: 0 10px 40px rgba(100, 60, 200, 0.18);
}

.mc-accordion .accordion-button {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-dark);
    padding: 22px 56px 22px 24px;
    background: #fff;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: right;
    transition: background 0.3s, color 0.3s;
    position: relative;
    z-index: 3;
    border-radius: 16px !important;
}

/* Question number badge */
.mc-accordion .accordion-button::before {
    content: attr(data-faq-num);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--purple-100);
    color: var(--purple-700);
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
    position: relative;
    z-index: 2;
}

.mc-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #f5f0ff 0%, #ede5ff 100%);
    color: var(--purple-800);
    border-radius: 16px 16px 0 0 !important;
}

.mc-accordion .accordion-button:not(.collapsed)::before {
    background: var(--purple-600);
    color: white;
}

/* Chevron RTL */
.mc-accordion .accordion-button::after {
    margin-right: auto;
    margin-left: 0;
    position: absolute;
    left: 20px;
    filter: invert(30%) sepia(80%) saturate(500%) hue-rotate(240deg);
    z-index: 1;
    transition: transform 0.3s ease;
}

.mc-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(25%) sepia(90%) saturate(600%) hue-rotate(245deg);
}

/* Smooth collapse transition */
.mc-accordion .accordion-collapse {
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: height;
    overflow: hidden;
}

.mc-accordion .accordion-body {
    padding: 0 24px 22px 24px;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.95;
    background: linear-gradient(135deg, #f5f0ff 0%, #ede5ff 100%);
    border-top: 1px solid rgba(124, 58, 237, 0.08);
    border-radius: 0 0 16px 16px;
}



/* ===== PRE-FOOTER CTA ===== */
.pre-footer-cta {
    padding: 40px 0;
    background: linear-gradient(145deg, var(--purple-900) 0%, #2e1260 50%, var(--purple-800) 100%);
    position: relative;
    overflow: hidden;
}

.pre-footer-cta-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 50%, rgba(234, 179, 8, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 30%, rgba(124, 77, 204, 0.25) 0%, transparent 55%);
    pointer-events: none;
}

.cta-inner {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 40px 32px;
    text-align: right;
    position: relative;
    overflow: hidden;
}

.cta-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-deco-1 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 70%);
    top: -120px;
    right: -80px;
}

.cta-deco-2 {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.12) 0%, transparent 70%);
    bottom: -80px;
    left: -60px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.cta-badge i {
    font-size: 1.1rem;
}

.cta-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 16px;
    line-height: 1.4;
}

.cta-highlight {
    display: inline-block;
    animation: ctaFloat 2.5s ease-in-out infinite;
}

@keyframes ctaFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.cta-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-wa-btn i {
    font-size: 1.5rem;
}

.cta-wa-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
    color: white;
}

.cta-phone {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.85;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 14px;
    border-radius: 50px;
}

@media (max-width: 767px) {
    .cta-inner {
        text-align: center;
        padding: 32px 20px;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-desc {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .cta-wa-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        gap: 8px;
        border-radius: 16px;
        width: auto;
        display: inline-flex;
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    }

    .cta-wa-btn i {
        font-size: 1.2rem;
    }

    .cta-phone {
        padding: 3px 10px;
        font-size: 0.78rem;
    }

    .cta-product-img {
        max-height: 180px;
    }
}

.cta-product-img {
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: floatProduct 4s ease-in-out infinite;
}

@keyframes floatProduct {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    background: linear-gradient(145deg, var(--purple-900) 0%, #2e1260 40%, var(--purple-800) 70%, #1e0c42 100%);
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.booking-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    position: relative;
}

.booking-header {
    margin-bottom: 36px;
}

.booking-header .section-title {
    color: white;
    font-size: 1.8rem;
}

.booking-form .form-control,
.booking-form .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    height: 60px;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.15);
    color: white;
}

.booking-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.booking-form .form-floating label {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Cairo', sans-serif;
}

.booking-form .form-floating>.form-control:focus~label,
.booking-form .form-floating>.form-control:not(:placeholder-shown)~label,
.booking-form .form-floating>.form-select~label {
    color: var(--gold-400);
}

.booking-form .form-select option {
    background: var(--purple-800);
    color: white;
}

.submit-btn {
    font-size: 1.2rem;
    padding: 18px 36px;
    margin-top: 8px;
}

/* Form Validation */
.booking-form .form-control.is-invalid,
.booking-form .form-select.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.6s ease;
}

.success-icon {
    font-size: 4rem;
    color: #22c55e;
    margin-bottom: 20px;
    animation: bounceIn 0.8s ease;
}

.success-message h3 {
    color: white;
    font-weight: 700;
    margin-bottom: 12px;
}

.success-message p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* ===== FOOTER — CLEAN LIGHT ===== */
.mc-footer {
    background: #fff;
    border-top: 3px solid #ede8fa;
    display: block;
    position: relative;
    clear: both;
    overflow: hidden;
    isolation: isolate;
    box-shadow: 0 -8px 40px rgba(100, 60, 180, 0.08);
}

/* Footer Main */
.footer-main {
    padding: 50px 0 36px;
}

/* Top row: social icons on the left, logo on the right */
.footer-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

/* Logo */
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-logo:hover {
    transform: translateY(-2px);
}

.footer-logo-icon {
    font-size: 1.6rem;
    color: var(--purple-600);
}

.footer-logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--purple-800);
    letter-spacing: -0.5px;
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #f4f0fb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn.linkedin:hover {
    background: #0a66c2;
    color: white;
}

.social-btn.pinterest:hover {
    background: #e60023;
    color: white;
}

.social-btn.twitter-x:hover {
    background: #000;
    color: white;
}

.social-btn.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-btn.whatsapp-social:hover {
    background: #25d366;
    color: white;
}

.social-btn.tiktok:hover {
    background: #010101;
    color: #fe2c55;
}

/* Divider */
.footer-divider {
    border: none;
    border-top: 1px solid #f0eaf9;
    margin: 0 0 36px;
}

/* Column headings */
.footer-heading {
    color: #1a1a2e;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 3px;
    background: var(--purple-500);
    border-radius: 50px;
}

/* Description text */
.footer-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.85;
    margin: 0;
}

/* Contact items */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

a.footer-contact-item:hover {
    color: var(--purple-600);
}

.footer-contact-item i {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: #f4f0fb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--purple-600);
}

/* Hours table */
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

.footer-hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: #faf8ff;
    border-radius: 8px;
    border: 1px solid #ece6fa;
}

.footer-hour-day {
    color: #555;
    font-size: 0.88rem;
}

.footer-hour-time {
    color: var(--purple-700);
    font-weight: 700;
    font-size: 0.88rem;
}

/* Book button */
.footer-book-btn {
    display: inline-block;
    color: var(--purple-600);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 2px solid var(--purple-400);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.footer-book-btn:hover {
    color: var(--purple-800);
    border-color: var(--purple-700);
}

/* Footer Bottom bar */
.footer-bottom {
    background: #f8f6ff;
    border-top: 1px solid #ece6fa;
    padding: 16px 0;
}

.footer-copyright {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

.footer-copyright strong {

    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .footer-cta-text {
        justify-content: center;
    }

    .footer-cta-btn {
        width: 100%;
    }

    .footer-heading::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .footer-links a:hover {
        transform: none;
    }
}

/* ===== STICKY CTA (Mobile) ===== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    padding: 12px 16px;
    background: rgba(58, 26, 110, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: var(--transition);
    display: none;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-btn {
    border-radius: var(--radius-md);
    font-size: 1rem;
    padding: 14px 24px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1039;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-product-img {
        max-height: 350px;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .home-service-content {
        padding: 30px 0;
    }

    .home-service-img {
        height: 350px;
    }

    .booking-card {
        padding: 32px 24px;
    }

    .sticky-cta {
        display: block;
    }
}

@media (max-width: 767px) {
    .hero-section .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-section {
        padding-top: 100px;
    }

    .hero-section>.container-fluid>.row {
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .hero-section>.container-fluid>.row>[class*="col-"] {
        padding: 20px 16px;
    }

    .hero-section>.container-fluid>.row>[class*="col-"]:first-child {
        border-inline-end: 0;
        border-bottom: 1px solid rgba(124, 58, 237, 0.06);
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 24px;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .hero-btn {
        font-size: 0.95rem;
        padding: 14px 24px;
    }

    .hero-image-wrapper {
        padding: 20px;
    }

    .hero-product-img {
        max-height: 280px;
    }

    .floating-badge {
        font-size: 0.75rem;
        padding: 8px 12px;
    }

    .badge-1 {
        right: 0;
    }

    .badge-2 {
        left: 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .counter-number {
        font-size: 2rem;
    }

    .counter-item p {
        font-size: 0.8rem;
    }

    .home-service-dark .usp-list {
        gap: 14px;
    }

    .home-service-dark .usp-item {
        gap: 14px;
    }

    .home-service-dark .usp-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .home-service-dark .usp-item h5 {
        font-size: 1rem;
        margin-bottom: 4px;
    }

    .home-service-dark .usp-item p {
        font-size: 0.88rem;
        line-height: 1.65;
    }

    .booking-header .section-title {
        font-size: 1.4rem;
    }

    .sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    .whatsapp-float {
        bottom: 80px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.45rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .comparison-table thead th {
        font-size: 0.85rem;
        padding: 14px 10px;
    }

    .comparison-table tbody td {
        font-size: 0.82rem;
        padding: 12px 10px;
    }

    .comparison-table i {
        font-size: 1rem;
    }

    .ingredient-card {
        padding: 28px 20px;
    }
}

/* ===== LOADING ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2e1260;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--gold-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== BEFORE & AFTER ====== */
.before-after-section {
    position: relative;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.03) 0%, rgba(255, 255, 255, 1) 100%);
}

.ba-slide-item {
    flex: 0 0 400px;
    min-width: 0;
}

/* Before-after slider overrides — fits inside col-lg-7 */
#before-after .reviews-slider-container {
    max-width: 100%;
    padding: 0 52px;
}

#before-after .before-after-card img,
#before-after .before-after-card video {
    height: 650px;
}


.before-after-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    border: 3px solid white;
    background: white;
}

.before-after-card::after {
    content: '\f52a';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--purple-700);
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.before-after-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(124, 58, 237, 0.1);
}

.before-after-card:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.before-after-card img,
.before-after-card video {
    width: 100%;
    height: 550px;
    aspect-ratio: 9 / 16;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
    background: #000;
}

.before-after-card video {
    background: #000;
}

.before-after-card:hover img,
.before-after-card:hover video {
    transform: scale(1.02);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--purple-700);
    pointer-events: none;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.before-after-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.before-after-card.video-card::after {
    display: none;
    /* Hide the magnifying glass for videos */
}

/* Lightbox Media */
.lightbox-media-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lightboxImg,
#lightboxVideo {
    max-height: 90vh;
    max-width: 90vw;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* ===== REVIEWS MULTI-IMAGE SLIDER ===== */

.reviews-section {
    background: #fff;
    overflow: hidden;
    box-shadow:
        0 -20px 60px rgba(100, 60, 200, 0.10),
        0 20px 60px rgba(100, 60, 200, 0.10);
    margin: 8px 0;
    border-top: 1px solid rgba(124, 58, 237, 0.08);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

/* --- Slider Container --- */
.reviews-slider-section {
    padding: 0 0 30px;
}

.reviews-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* --- Navigation Buttons --- */
.reviews-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 0 16px;
    gap: 6px;
    height: 52px;
    border-radius: 50px;
    background: #fff;
    border: 2px solid rgba(124, 58, 237, 0.15);
    color: var(--purple-700);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.reviews-nav-btn:hover {
    background: var(--purple-600);
    color: white;
    border-color: var(--purple-600);
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35);
}

.reviews-nav-btn.disabled {
    background: #ffffff;
    color: #cbd5e1;
    border-color: #f1f5f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.reviews-nav-prev {
    right: -10px;
}

.reviews-nav-next {
    left: -10px;
}

/* --- Scrollable Viewport --- */
.reviews-scroll-viewport {
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: grab;
}

.reviews-scroll-viewport:active {
    cursor: grabbing;
}

/* --- Track (flexbox row of items) --- */
.reviews-scroll-track {
    display: flex;
    direction: rtl;
    gap: 18px;
    transition: transform 0.45s ease-out;
    will-change: transform;
}

/* --- Individual Review Item --- */
.review-slide-item {
    flex: 0 0 calc(33.333% - 12px);
    min-width: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 16px rgba(45, 10, 78, 0.08);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.review-slide-item::after {
    content: '\f52a';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--purple-600);
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.review-slide-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.18);
}

.review-slide-item:hover::after {
    opacity: 1;
    transform: scale(1);
}

.review-slide-item img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    display: block;
    transition: var(--transition);
    background: #f8f6ff;
}

.review-slide-item:hover img {
    transform: scale(1.02);
}

/* --- Trust Strip --- */
.reviews-trust-strip {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
    margin-bottom: 8px;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--purple-700);
    box-shadow: 0 2px 10px rgba(124, 58, 237, 0.06);
    transition: var(--transition);
}

.trust-chip i {
    color: var(--gold-500);
    font-size: 1.05rem;
}

.trust-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.12);
    border-color: var(--purple-300);
}

/* --- Review Lightbox --- */
.review-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: fadeIn 0.3s ease;
}

.review-lightbox.active {
    display: flex;
}

.review-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightbox-zoom 0.3s ease;
}

@keyframes lightbox-zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    right: 20px;
}

.lightbox-next {
    left: 20px;
}

/* --- Responsive Slider --- */
@media (max-width: 991.98px) {
    .review-slide-item {
        flex: 0 0 calc(50% - 9px);
    }

    .reviews-slider-container {
        padding: 0 50px;
    }

    .reviews-nav-btn {
        height: 44px;
        font-size: 0.9rem;
        padding: 0 12px;
    }
}

@media (max-width: 767.98px) {
    .review-slide-item {
        flex: 0 0 calc(50% - 9px);
    }

    .reviews-slider-container {
        padding: 0 40px;
    }

    .reviews-nav-btn {
        height: 38px;
        font-size: 0.85rem;
        padding: 0 10px;
    }

    .reviews-scroll-track {
        gap: 12px;
    }

    .review-slide-item img {
        max-height: 380px;
    }

    .trust-chip {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .ba-slide-item {
        flex: 0 0 88%;
    }

    .review-lightbox {
        padding: 20px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 575.98px) {
    .review-slide-item {
        flex: 0 0 80%;
    }

    .review-slide-item img {
        max-height: 320px;
    }

    .reviews-slider-container {
        padding: 0 24px;
    }

    .ba-slide-item {
        flex: 0 0 100%;
    }

    .before-after-card img,
    .before-after-card video {
        height: 450px !important;
    }

    .reviews-nav-btn {
        height: 34px;
        font-size: 0.8rem;
        padding: 0 8px;
    }

    .reviews-scroll-track {
        gap: 10px;
    }

    .reviews-trust-strip {
        gap: 8px;
    }

    .trust-chip {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}


/* =============================================
   ANIKA CAFFEINE — MEGA SECTION (REDESIGN)
   ============================================= */
.anika-mega-section {
    position: relative;
    background: linear-gradient(145deg, var(--purple-900) 0%, #2e1260 40%, var(--purple-800) 70%, #1e0c42 100%);
    padding: 100px 0 120px;
    overflow: hidden;
}

/* Animated background blobs */
.anika-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    animation: blob-drift 10s ease-in-out infinite;
}

.anika-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #7c3aed 0%, transparent 70%);
    top: -100px;
    right: -150px;
    animation-delay: 0s;
}

.anika-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #eab308 0%, transparent 70%);
    bottom: -80px;
    left: -100px;
    animation-delay: 3s;
}

.anika-blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: 6s;
}

@keyframes blob-drift {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

/* Section heading */
.anika-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: rgba(234, 179, 8, 0.15);
    border: 1px solid rgba(234, 179, 8, 0.35);
    border-radius: 50px;
    color: var(--gold-300);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.anika-mega-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: white;
    line-height: 1.3;
    margin-bottom: 16px;
}

.anika-brand-highlight {
    background: linear-gradient(135deg, #f6d365, #eab308, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.anika-mega-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Product Visual Wrap */
.anika-visual-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.anika-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: ring-spin 8s linear infinite;
}

.anika-ring-1 {
    width: 320px;
    height: 320px;
    border-color: rgba(124, 58, 237, 0.4);
    border-top-color: rgba(234, 179, 8, 0.7);
    animation-duration: 8s;
}

.anika-ring-2 {
    width: 400px;
    height: 400px;
    border-color: rgba(236, 72, 153, 0.25);
    border-bottom-color: rgba(124, 58, 237, 0.5);
    animation-duration: 14s;
    animation-direction: reverse;
}

@keyframes ring-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.anika-img-container {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.anika-product-img-new {
    width: 300px;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.anika-visual-wrap:hover .anika-product-img-new {
    transform: scale(1.04);
}

/* Price Bubble */
.anika-price-bubble {
    position: absolute;
    bottom: 30px;
    left: 10px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(234, 179, 8, 0.5);
    z-index: 4;
    animation: badge-float 3s ease-in-out infinite;
}

.apb-label {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    line-height: 1;
}

.apb-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.apb-currency {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    line-height: 1;
}

/* Floating Tags */
.anika-float-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 8px 16px;
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.at-1 {
    top: 20px;
    right: 0;
    animation: badge-float 3.5s ease-in-out infinite;
    color: var(--gold-300);
}

.at-1 i {
    color: var(--gold-400);
}

.at-2 {
    top: 60%;
    right: -10px;
    animation: badge-float 4s ease-in-out infinite;
    animation-delay: 1.5s;
    color: #86efac;
}

.at-2 i {
    color: #4ade80;
}

/* Glass Card for Ingredients */
.anika-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.anika-glass-card:hover {
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.2);
}

.agc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.agc-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
}

.agc-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
    margin: 0 0 4px;
}

.agc-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Ingredients Grid */
.anika-ing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.aig-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: var(--transition);
}

.aig-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.aig-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(var(--c, 124, 58, 237), 0.15);
    border: 1px solid color-mix(in srgb, var(--c, #7c3aed) 40%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--c, #7c3aed);
    flex-shrink: 0;
}

.aig-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.aig-item span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

/* Notes Pills Row */
.anika-notes-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.anr-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.35);
    border-radius: 50px;
    color: var(--purple-200);
    font-size: 0.83rem;
    font-weight: 600;
    transition: var(--transition);
}

.anr-pill:hover {
    background: rgba(124, 58, 237, 0.35);
    transform: translateY(-2px);
}

.anr-pill i {
    color: var(--gold-400);
    font-size: 1rem;
}

/* CTA Wrap */
.anika-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.anika-main-cta {
    width: 100%;
    font-size: 1.05rem;
    padding: 16px 32px;
}

.anika-cta-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.anika-cta-note i {
    color: var(--gold-400);
}

/* Responsive Anika */
@media (max-width: 991px) {
    .anika-mega-title {
        font-size: 2rem;
    }

    .anika-visual-wrap {
        padding: 40px 20px;
    }

    .anika-product-img-new {
        width: 240px;
        height: 240px;
    }

    .anika-ring-1 {
        width: 260px;
        height: 260px;
    }

    .anika-ring-2 {
        width: 320px;
        height: 320px;
    }

    .anika-ing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .anika-mega-section {
        padding: 70px 0 90px;
    }

    .anika-mega-title {
        font-size: 1.7rem;
    }

    .anika-notes-row {
        gap: 8px;
    }

    .anr-pill {
        font-size: 0.78rem;
        padding: 8px 14px;
    }

    .anika-ing-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .anika-ing-grid {
        grid-template-columns: 1fr;
    }

    .anika-product-img-new {
        width: 200px;
        height: 200px;
    }
}




/* =============================================
   HOW TO USE — PREMIUM WHITE SECTION
   ============================================= */
.htu-section {
    background: #ffffff;
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 -20px 60px rgba(100, 60, 200, 0.10),
        0 20px 60px rgba(100, 60, 200, 0.10);
    margin: 8px 0;
    border-top: 1px solid rgba(124, 58, 237, 0.08);
    border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

/* Subtle decorative pattern */
.htu-section::before {
    display: none;
}

/* Section header */
.htu-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
    color: white;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
    letter-spacing: 0.3px;
}

.htu-main-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.htu-title-accent {
    background: linear-gradient(135deg, var(--purple-600), #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.htu-title-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-500), #ec4899, var(--gold-400));
    border-radius: 4px;
}

.htu-main-sub {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.85;
}

/* ─── Steps Grid ─── */
.htu-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
    margin: 56px 0 64px;
    align-items: stretch;
}

/* Horizontal connecting line behind all cards */
.htu-steps-grid::before {
    display: none;
}

/* ─── Individual Card ─── */
.htu-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 16px 28px;
    background: white;
    border: 1.5px solid var(--step-border, rgba(124, 58, 237, 0.2));
    border-radius: var(--radius-xl);
    margin: 0 6px;
    transition: var(--transition-slow);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.04);
    cursor: default;
    overflow: hidden;
    z-index: 1;
}

/* Gradient top bar */
.htu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--step-color, #7c3aed), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.htu-card:hover::before {
    opacity: 1;
}

/* Bottom fill on hover */
.htu-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: var(--step-light, rgba(124, 58, 237, 0.06));
    transition: height 0.4s ease;
    z-index: -1;
}

.htu-card:hover::after {
    height: 100%;
}

.htu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 0 1.5px var(--step-color, #7c3aed);
    border-color: var(--step-color, #7c3aed);
}

/* Decorative large number */
.htu-card-num {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--step-color, #7c3aed);
    opacity: 0.07;
    line-height: 1;
    user-select: none;
    pointer-events: none;
    font-family: 'Cairo', sans-serif;
    transition: opacity 0.4s;
}

.htu-card:hover .htu-card-num {
    opacity: 0.14;
}

/* Icon wrapper with animated ring */
.htu-card-icon-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    z-index: 2;
}

.htu-card-icon-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed var(--step-border, rgba(124, 58, 237, 0.3));
    animation: icon-spin 12s linear infinite;
}

@keyframes icon-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.htu-card:hover .htu-card-icon-wrap::before {
    animation-duration: 4s;
    border-style: solid;
    border-color: var(--step-color, #7c3aed);
}

.htu-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--step-light, rgba(124, 58, 237, 0.08));
    border: 2px solid var(--step-border, rgba(124, 58, 237, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--step-color, #7c3aed);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.htu-card:hover .htu-card-icon {
    background: var(--step-color, #7c3aed);
    color: white;
    border-color: var(--step-color, #7c3aed);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.1);
}

/* Step number badge (small) */
.htu-card-icon::after {
    content: attr(data-step);
    position: absolute;
    bottom: -4px;
    left: -4px;
    width: 20px;
    height: 20px;
    background: var(--step-color, #7c3aed);
    color: white;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Card body */
.htu-card-body {
    flex: 1;
    z-index: 2;
}

.htu-card-body h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s;
}

.htu-card:hover .htu-card-body h4 {
    color: var(--step-color, #7c3aed);
}

.htu-card-body p {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}

/* Arrow connector between cards */
.htu-card-connector {
    position: absolute;
    top: 66px;
    left: -17px;
    width: 34px;
    height: 34px;
    background: white;
    border: 1.5px solid var(--step-border, rgba(124, 58, 237, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--step-color, #7c3aed);
    z-index: 3;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.htu-card:hover+.htu-card .htu-card-connector,
.htu-card-connector:hover {
    background: var(--step-color, #7c3aed);
    color: white;
    border-color: var(--step-color, #7c3aed);
    transform: scale(1.1);
}

.htu-card-last .htu-card-connector {
    display: none;
}

/* ─── Result Banner ─── */
.htu-result-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(145deg, var(--purple-900) 0%, #2e1260 40%, var(--purple-800) 70%, #1e0c42 100%);
    box-shadow: 0 24px 60px rgba(124, 58, 237, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hrb-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(234, 179, 8, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hrb-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 36px 44px;
    position: relative;
}

.hrb-trophy {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(234, 179, 8, 0.12);
    border: 2px solid rgba(234, 179, 8, 0.25);
}

.hrb-trophy i {
    font-size: 2.2rem;
    color: var(--gold-400);
    position: relative;
    z-index: 2;
    animation: glow-pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(234, 179, 8, 0.3));
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hrb-trophy-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(234, 179, 8, 0.2);
    animation: ring-spin 6s linear infinite;
}

.hrb-content {
    flex: 1;
}

.hrb-stat-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.hrb-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hrb-stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold-300);
    line-height: 1;
}

.hrb-stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    white-space: nowrap;
}

.hrb-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.hrb-content h4 {
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 6px;
    line-height: 1.4;
}

.hrb-content p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.6;
}

.hrb-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.hrb-btn {
    white-space: nowrap;
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.hrb-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hrb-note i {
    color: var(--gold-500);
}

/* ─── Responsive ─── */
@media (max-width: 1199px) {
    .htu-steps-grid {
        gap: 0;
    }

    .htu-card {
        padding: 24px 12px 24px;
        margin: 0 4px;
    }

    .htu-card-body h4 {
        font-size: 0.88rem;
    }

    .htu-card-body p {
        font-size: 0.78rem;
    }
}

@media (max-width: 991px) {
    .htu-section {
        padding: 70px 0 80px;
    }

    .htu-main-title {
        font-size: 2rem;
    }

    .htu-steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .htu-steps-grid::before {
        display: none;
    }

    .htu-card {
        margin: 0;
    }

    .htu-card-connector {
        display: none;
    }

    .hrb-inner {
        gap: 24px;
        padding: 28px 30px;
    }
}

@media (max-width: 767px) {
    .htu-main-title {
        font-size: 1.7rem;
    }

    .htu-steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .hrb-inner {
        flex-direction: column;
        text-align: center;
        padding: 28px 20px;
        gap: 20px;
    }

    .hrb-stat-row {
        justify-content: center;
    }

    .hrb-btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .htu-steps-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .htu-card {
        flex-direction: row;
        text-align: right;
        padding: 18px 20px;
        align-items: center;
        gap: 16px;
    }

    .htu-card-icon-wrap {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .htu-card-num {
        top: 6px;
        right: 8px;
        font-size: 2.5rem;
    }

    .htu-card-body h4 {
        font-size: 0.92rem;
    }
}




.htu-top-wave svg,
.htu-bottom-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.htu-top-wave {
    margin-bottom: -2px;
}

.htu-bottom-wave {
    margin-top: 60px;
}

/* Section header */
.htu-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
    color: white;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.35);
}

.htu-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--purple-900);
    margin-bottom: 16px;
    line-height: 1.35;
}

.htu-highlight {
    color: var(--purple-500);
    position: relative;
}

.htu-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-500), var(--gold-500));
    border-radius: 4px;
}

.htu-subtitle {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Timeline container */
.htu-timeline {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Each step row */
.htu-step {
    display: flex;
    align-items: stretch;
    gap: 0;
}

/* Number column */
.htu-step-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 60px;
    margin-left: 24px;
}

.htu-step-num {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.htu-step:hover .htu-step-num {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.55);
}

.htu-step-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.5), rgba(124, 58, 237, 0.1));
    margin: 6px auto;
    min-height: 30px;
    border-radius: 2px;
}

/* Step card */
.htu-step-card {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: white;
    border-radius: var(--radius-xl);
    padding: 24px 28px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(124, 58, 237, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.htu-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--htu-color, var(--purple-500)), transparent);
    border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
    opacity: 0;
    transition: opacity 0.3s;
}

.htu-step-card:hover::before {
    opacity: 1;
}

.htu-step-card:hover {
    transform: translateX(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(124, 58, 237, 0.2);
}

.htu-step-last {
    margin-bottom: 0;
}

/* Step icon */
.htu-step-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--htu-color, #7c3aed) 12%, white);
    border: 1px solid color-mix(in srgb, var(--htu-color, #7c3aed) 25%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--htu-color, #7c3aed);
    flex-shrink: 0;
    transition: var(--transition);
}

.htu-step-card:hover .htu-step-icon {
    background: color-mix(in srgb, var(--htu-color, #7c3aed) 22%, white);
    transform: rotate(-5deg) scale(1.05);
}

/* Step body */
.htu-step-body {
    flex: 1;
}

.htu-step-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.htu-step-desc {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.75;
    margin: 0;
}

/* Step badge */
.htu-step-badge {
    position: absolute;
    top: 18px;
    left: 22px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--purple-600);
    white-space: nowrap;
}

.htu-badge-2 {
    background: rgba(236, 72, 153, 0.1);
    color: #db2777;
}

.htu-badge-3 {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.htu-badge-4 {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.htu-badge-5 {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

/* Result Banner */
.htu-result-banner {
    margin: 50px auto 0;
    max-width: 860px;
    background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-600) 60%, var(--purple-500) 100%);
    border-radius: var(--radius-xl);
    padding: 4px;
    box-shadow: 0 16px 50px rgba(124, 58, 237, 0.35);
}

.hrb-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    background: linear-gradient(145deg, var(--purple-900) 0%, #2e1260 40%, var(--purple-800) 70%, #1e0c42 100%);
    border-radius: calc(var(--radius-xl) - 4px);
    padding: 28px 36px;
}

.hrb-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(234, 179, 8, 0.4);
    animation: glow-pulse 3s ease-in-out infinite;
}

.hrb-text {
    flex: 1;
}

.hrb-text h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
}

.hrb-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.6;
}

.hrb-inner .btn-gold {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 12px 24px;
    font-size: 0.95rem;
}

/* How To Use Responsive */
@media (max-width: 991px) {
    .htu-title {
        font-size: 2rem;
    }

    .htu-step-card {
        padding: 20px 22px;
    }

    .htu-step-num-wrap {
        width: 50px;
        margin-left: 16px;
    }
}

@media (max-width: 767px) {
    .how-to-use-section {
        padding-bottom: 60px;
    }

    .htu-title {
        font-size: 1.7rem;
    }

    .htu-step-badge {
        display: none;
    }

    .htu-step-card {
        padding: 18px 18px;
        gap: 14px;
    }

    .htu-step-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .hrb-inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }

    .hrb-inner .btn-gold {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .htu-step {
        gap: 0;
    }

    .htu-step-num-wrap {
        width: 40px;
        margin-left: 10px;
    }

    .htu-step-num {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .htu-step-title {
        font-size: 0.97rem;
    }

    .htu-step-desc {
        font-size: 0.86rem;
    }
}

/* ===== CART SYSTEM ===== */

/* Cart Button in Navbar */
.cart-btn {
    position: relative;
    border: 2px solid var(--gold-500) !important;
    color: var(--gold-600) !important;
    padding: 8px 16px !important;
    font-weight: 700;
    transition: var(--transition);
}

.cart-btn:hover {
    background: var(--gold-500) !important;
    color: white !important;
}

.cart-badge {
    position: absolute;
    top: -8px;
    left: -8px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.btn-outline-gold {
    border: 2px solid var(--gold-500);
    color: var(--gold-600);
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-modal.active {
    display: flex;
    opacity: 1;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.cart-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-modal.active .cart-content {
    transform: translateX(0);
}

.cart-header {
    padding: 20px 24px;
    border-bottom: 2px solid var(--purple-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--purple-50) 0%, white 100%);
}

.cart-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--purple-800);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
    border-radius: 8px;
}

.cart-close:hover {
    background: var(--purple-100);
    color: var(--purple-700);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE / Edge */
}

.cart-body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-cart i {
    font-size: 4rem;
    color: var(--purple-200);
    margin-bottom: 16px;
}

.empty-cart p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--purple-50);
    border-radius: 16px;
    margin-bottom: 12px;
    border: 1px solid var(--purple-100);
    transition: var(--transition);
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 12px;
    background: white;
    padding: 8px;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--purple-900);
    margin: 0;
}

.cart-item-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold-600);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--purple-600);
    color: white;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--purple-700);
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

.qty-display {
    font-size: 1rem;
    font-weight: 700;
    color: var(--purple-800);
    min-width: 30px;
    text-align: center;
}

.remove-btn {
    background: none;
    border: none;
    color: #ef4444;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    transition: var(--transition);
    border-radius: 8px;
}

.remove-btn:hover {
    background: #fee2e2;
    transform: scale(1.1);
}

/* Cart Footer */
.cart-footer {
    padding: 20px 24px;
    border-top: 2px solid var(--purple-100);
    background: var(--purple-50);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.2rem;
    font-weight: 700;
}

.cart-total span:first-child {
    color: var(--text-dark);
}

.total-price {
    color: var(--purple-800);
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 575px) {
    .cart-content {
        max-width: 100%;
    }

    .cart-item-img {
        width: 60px;
        height: 60px;
    }

    .cart-item-name {
        font-size: 0.9rem;
    }

    .cart-item-price {
        font-size: 1rem;
    }
}


/* Toast Notification */
.cart-toast {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.cart-toast.show {
    transform: translateX(0);
}

.cart-toast i {
    font-size: 1.3rem;
}

@media (max-width: 575px) {
    .cart-toast {
        right: 10px;
        left: 10px;
        font-size: 0.9rem;
        padding: 14px 20px;
    }
}


/* ===== CHECKOUT FORM MODAL ===== */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.checkout-modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.checkout-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
}

.checkout-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    margin: 20px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.checkout-modal.active .checkout-content {
    transform: scale(1);
}

.checkout-header {
    padding: 24px 28px;
    border-bottom: 2px solid var(--purple-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--purple-50) 0%, white 100%);
    border-radius: 24px 24px 0 0;
}

.checkout-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--purple-800);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
    border-radius: 8px;
}

.checkout-close:hover {
    background: var(--purple-100);
    color: var(--purple-700);
}

.checkout-body {
    flex: 1;
    overflow-y: auto;
    padding: 28px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.checkout-body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--purple-800);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--gold-500);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--purple-100);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: var(--transition);
    background: var(--purple-50);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple-500);
    background: white;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select {
    cursor: pointer;
}

/* Order Summary */
.order-summary {
    background: linear-gradient(135deg, var(--purple-50) 0%, var(--gold-50) 100%);
    border: 2px solid var(--purple-100);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.order-summary h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--purple-800);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    font-size: 0.9rem;
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-item-name {
    font-weight: 600;
    color: var(--text-dark);
}

.summary-item-qty {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.summary-item-price {
    font-weight: 700;
    color: var(--purple-700);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 2px solid var(--purple-200);
    font-size: 1.3rem;
    font-weight: 800;
}

.summary-total span:first-child {
    color: var(--text-dark);
}

.summary-total span:last-child {
    color: var(--gold-600);
}

/* Responsive */
@media (max-width: 767px) {
    .checkout-content {
        max-width: 100%;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }

    .checkout-header {
        border-radius: 0;
        padding: 20px;
    }

    .checkout-header h3 {
        font-size: 1.2rem;
    }

    .checkout-body {
        padding: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .order-summary {
        padding: 16px;
    }

    .order-summary h4 {
        font-size: 1rem;
    }

    .summary-total {
        font-size: 1.1rem;
    }
}

/* Responsive Pricing Actions */
@media (max-width: 767px) {
    .pricing-card {
        margin-bottom: 16px;
    }

    .pricing-body {
        padding: 16px 14px;
    }

    .pricing-img-wrap {
        padding: 16px;
        min-height: 140px;
    }

    .pricing-img-wrap img {
        max-height: 120px;
    }

    .pricing-title {
        font-size: 1.05rem;
    }

    .pricing-desc {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .pricing-price {
        font-size: 1.9rem;
    }

    .pricing-price-box {
        margin-bottom: 14px;
        padding: 10px 0;
    }

    .pricing-actions {
        gap: 8px;
        flex-direction: row;
        width: 100%;
    }

    .btn-cart {
        flex: 1;
        font-size: 0.85rem;
        height: 44px;
        padding: 0 12px;
        min-width: 0;
    }

    .btn-whatsapp {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
        font-size: 1.2rem;
    }
}

@media (max-width: 575px) {
    .pricing-body {
        padding: 14px 12px;
    }

    .pricing-title {
        font-size: 1rem;
    }

    .pricing-price {
        font-size: 1.75rem;
    }

    .pricing-actions {
        gap: 6px;
    }

    .btn-cart {
        font-size: 0.8rem;
        height: 42px;
        padding: 0 10px;
    }

    .btn-whatsapp {
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
    }
}

@media (max-width: 400px) {
    .pricing-body {
        padding: 12px 10px;
    }

    .pricing-title {
        font-size: 0.95rem;
    }

    .pricing-desc {
        font-size: 0.75rem;
    }

    .pricing-price {
        font-size: 1.6rem;
    }

    .btn-cart {
        font-size: 0.75rem;
        padding: 0 8px;
    }

    .btn-cart i {
        font-size: 0.9rem;
    }

    .btn-whatsapp {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}


/* ===== INGREDIENTS SWIPE CONTAINER ===== */
.ingredients-swipe-container {
    overflow: hidden;
    width: 100%;
}

.ingredients-swipe-track {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease;
}

.ingredients-swipe-item {
    flex: 0 0 auto;
    width: 100%;
}

/* Desktop - Show all cards in grid */
@media (min-width: 768px) {
    .ingredients-swipe-container {
        overflow: visible;
    }

    .ingredients-swipe-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .ingredients-swipe-item {
        width: auto;
    }
}

/* Mobile - Swipeable with 1.5 cards visible */
@media (max-width: 767px) {
    .ingredients-swipe-container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 20px;
        margin: 0 -20px;
    }

    .ingredients-swipe-container::-webkit-scrollbar {
        display: none;
    }

    .ingredients-swipe-track {
        padding: 0 0 20px 0;
    }

    .ingredients-swipe-item {
        width: calc(100vw - 80px);
        max-width: 400px;
    }
}

@media (max-width: 575px) {
    .ingredients-swipe-item {
        width: calc(100vw - 60px);
    }
}


/* ============ HOW TO USE — PRODUCT SECTION ============ */
.htu-img-wrap img {
    width: 100%;
    object-fit: cover;
    max-height: 520px;
}

.htu-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.htu-step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #faf8ff;
    border: 1px solid rgba(168, 85, 247, 0.12);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    transition: box-shadow 0.2s;
}

.htu-step-item:hover {
    box-shadow: 0 4px 18px rgba(168, 85, 247, 0.1);
}

.htu-step-num {
    min-width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.htu-step-body h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 0.25rem;
}

.htu-step-body p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}