/* 
    Neelam Natural Care – Luxury Design System
    Colors: #F8EDEB, #FCD5CE, #D63384, #B02A6A
    Fonts: Playfair Display (Heading), Outfit (Body)
*/

/* 
   MASTER STYLESHEET
   PROJECT: Neelam Natural Care
   YEAR: 2026
*/
:root {
    /* 🎨 BRAND PALETTE (Refined Luxury) */
    --color-primary: #B22259;
    --color-primary-dark: #8E1B47;
    --color-bg-light: #FDF4F2;
    --color-bg-alt: #FBDBD4;
    --color-accent: #C5A059;
    --color-text-dark: #1F1F1F;
    --color-text-light: #5A5A5A;
    --color-white: #FFFFFF;

    /* 💎 PREMIUM SHADOWS */
    --color-shadow: rgba(178, 34, 89, 0.08);
    --shadow-soft: 0 10px 40px rgba(178, 34, 89, 0.08);
    --shadow-strong: 0 20px 60px rgba(178, 34, 89, 0.15);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.05);

    /* ✨ MODERN GRADIENTS */
    --gradient-soft: linear-gradient(135deg, #FDF4F2 0%, #FBDBD4 100%);
    --gradient-premium: linear-gradient(135deg, #B22259 0%, #8E1B47 100%);
    --gradient-gold: linear-gradient(135deg, #C5A059 0%, #A6803F 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);

    /* 🖋️ TYPOGRAPHY */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* 📐 LAYOUT & SPACING */
    --container-width: 1200px;
    --section-padding: 30px;
    --section-padding-mobile: 15px;
    --header-height: 85px;
    --header-height-mobile: 70px;
    --ticker-height: 40px;
    --ticker-height-mobile: 35px;
    --radius-lg: 30px;
    --radius-lg: 30px;
    --radius-sm: 12px;

    /* 🚀 PERFORMANCE & UTILS */
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --transition-quick: all 0.3s ease;
    --color-jain-green: #006633;
    --color-lavender: #E8EAF6;
    --safe-area-top: env(safe-area-inset-top, 0px);
}

/* Base Styles */
html {
    -webkit-text-size-adjust: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* GPU Acceleration for Ultra-Smooth UI */
header,
section,
footer,
.back-to-top,
.cart-drawer,
.welcome-modal,
.reveal,
.product-card,
.ticker-content {
    will-change: transform, opacity;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* 🚀 RENDERING OPTIMIZATION */
section, .products, .reels-section, .testimonials, .transformation-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

@media (max-width: 600px) {
    html {
        scroll-padding-top: calc(var(--header-height-mobile) + 20px);
    }
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    line-height: 1.6;
    background-color: var(--color-bg-light);
    padding-top: calc(var(--ticker-height) + var(--header-height) + var(--safe-area-top));
}

@media (max-width: 600px) {
    body {
        padding-top: calc(var(--ticker-height-mobile) + var(--header-height-mobile) + var(--safe-area-top));
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback if JS fails */
.no-js .reveal {
    opacity: 1 !important;
    transform: none !important;
}

@media print {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Subtle floating animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

/* Typing animation */
.typing {
    display: inline-block;
    padding: 10px 15px;
    background: #f1f1f1;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

.typing span {
    animation: typing-dots 1.5s infinite;
    display: inline-block;
    margin-left: 1px;
}

.typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing-dots {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
}

.section-title span {
    color: var(--color-primary);
    font-style: italic;
    position: relative;
    white-space: nowrap;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(178, 34, 89, 0.1);
    z-index: -1;
}

/* Layout */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    section {
        padding: var(--section-padding-mobile) 0;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
    font-size: 1rem;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.btn:active {
    transform: scale(0.95);
    opacity: 0.9;
}


.btn-primary {
    background: var(--gradient-premium);
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.btn.lg {
    padding: 1rem 3.5rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Header */
#header {
    height: var(--header-height);
    background: rgba(253, 244, 242, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    top: calc(var(--ticker-height) + var(--safe-area-top));
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(178, 34, 89, 0.05);
    transition: var(--transition-smooth);
}

#header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    height: 75px;
    box-shadow: var(--shadow-soft);
}

@media (max-width: 768px) {
    #header.scrolled {
        height: 65px;
    }
}

#header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
}

.brand-logo {
    font-size: 1.7rem;
    line-height: 1;
}

.brand-logo span {
    color: var(--color-primary);
}

.doctor-subtext {
    font-size: 0.85rem;
    display: block;
    color: var(--color-text-dark);
    margin-top: 2px;
    font-weight: 500;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Centered Information Hero */
.hero {
    min-height: 90vh;
    padding: 120px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-center-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.hero-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-info-card .badge {
    background: rgba(178, 34, 89, 0.05);
    border: 1px solid rgba(178, 34, 89, 0.1);
    color: var(--color-primary);
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 100px;
    margin-bottom: 2.5rem;
    letter-spacing: 2px;
}

.hero-info-card h2 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    color: var(--color-text-dark);
}

.hero-info-card h2 span {
    color: var(--color-primary);
    font-style: italic;
}

.hero-info-card p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0 auto 3.5rem;
    max-width: 750px;
    font-weight: 300;
}

.hero-btns-center {
    display: flex;
    gap: 2rem;
    margin-bottom: 5rem;
}

.hero-stats-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(178, 34, 89, 0.1);
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-tag {
    font-size: 0.9rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.stat-sep {
    width: 1px;
    height: 60px;
    background: rgba(178, 34, 89, 0.1);
}

/* Top Announcement Bar */
.top-bar {
    background: #1a1a1a;
    color: var(--color-white);
    padding: 10px 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ticker-text {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(50%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Trust Badges Hero */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

.badge-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(255, 255, 255, 0.5);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    border: 1px solid rgba(178, 34, 89, 0.1);
}

/* Floating Blobs Background */
.hero-bg-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: blob-float 20s infinite alternate ease-in-out;
}

.blob-red {
    width: 500px;
    height: 500px;
    background: var(--color-bg-alt);
    top: -100px;
    left: -100px;
}

.blob-gold {
    width: 400px;
    height: 400px;
    background: rgba(197, 160, 89, 0.2);
    bottom: -50px;
    right: -50px;
    animation-duration: 25s;
}

.blob-pink {
    width: 300px;
    height: 300px;
    background: rgba(178, 34, 89, 0.1);
    top: 50%;
    left: 20%;
    animation-duration: 30s;
}

@keyframes blob-float {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* Mobile Bottom Navigation (Exclusive to Mobile) */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(178, 34, 89, 0.1);
    z-index: 1001;
    padding: 0.8rem 1rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

.mobile-bottom-nav .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-item-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-light);
    text-transform: uppercase;
}

.nav-item-btn.active,
.nav-item-btn:hover {
    color: var(--color-primary);
}

.nav-item-btn .icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }

    :root {
        --header-height: var(--header-height-mobile);
    }

    #header.scrolled {
        height: 65px;
    }

    body {
        padding-top: calc(var(--ticker-height-mobile) + 70px);
    }

    body.scrolled-padding {
        padding-top: calc(var(--ticker-height-mobile) + 65px + var(--safe-area-top));
    }

    .hero {
        padding: 80px 0 100px;
        min-height: 80vh;
    }

    .hero-info-card {
        width: 100%;
        padding: 40px 20px;
        border-radius: 24px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
        margin: 0 auto;
    }

    .hero-info-card h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-info-card p {
        font-size: 1rem;
        color: #666;
    }

    .hero-btns-center {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .hero-btns-center .btn {
        width: 100%;
        padding: 15px !important;
    }

    .hero-stats-row {
        gap: 1rem;
        margin-top: 2rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .product-card {
        border-radius: 1.5rem;
    }

    .product-img {
        height: 160px;
        padding: 1rem;
    }

    .product-info {
        padding: 1rem;
    }

    .product-info h3 {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 5px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 2.6em;
    }

    .product-info p {
        display: none;
    }

    .product-info .price {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .product-info div[style*="display:grid"] {
        gap: 6px !important;
    }

    .product-info .btn {
        padding: 5px 2px !important;
        font-size: 0.72rem !important;
        border-radius: 10px !important;
        height: 38px !important;
        /* Forced compact height */
        letter-spacing: 0;
        white-space: nowrap;
    }

    .product-info .btn-outline {
        padding: 4px 2px !important;
    }

    .prod-rating {
        font-size: 0.65rem !important;
        margin-bottom: 2px !important;
    }

    .product-img .tag {
        top: 8px;
        right: 8px;
        padding: 4px 10px;
        font-size: 0.65rem;
    }

    .prod-rating span {
        display: inline-block;
        margin-left: 5px;
    }

    .footer-grid {
        padding-bottom: 60px;
    }

    /* Space for bottom nav */

    .floating-cta {
        bottom: 85px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-info-card h2 {
        font-size: 2.2rem;
    }

    .hero-btns-center {
        width: 100%;
        gap: 1rem;
    }

    .hero-info-card p {
        font-size: 1rem;
    }
}

/* 🌿 PROPER BRANDING SECTION STYLES */
.brand-manifesto-proper {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(178, 34, 89, 0.05);
}

.manifesto-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
}

.manifesto-pill {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(0, 102, 51, 0.05);
    color: var(--color-jain-green);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.manifesto-heading {
    font-family: var(--font-body);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--color-jain-green);
    line-height: 1.1;
    margin-bottom: 25px;
}

.manifesto-heading span {
    display: block;
    font-family: var(--font-body);
    font-style: italic;
    font-weight: 400;
}

.manifesto-sub-bar {
    background: var(--color-lavender);
    display: inline-flex;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.manifesto-desc {
    max-width: 500px;
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.manifesto-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.manifesto-logo-circle {
    width: clamp(280px, 40vw, 450px);
    height: clamp(280px, 40vw, 450px);
    background: #fff;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.manifesto-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.experience-tag {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: var(--gradient-premium);
    color: white;
    padding: 8px 15px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 30px var(--color-shadow);
    z-index: 3;
}

.experience-tag strong {
    display: block;
    font-size: 1.1rem;
    font-family: var(--font-body);
    line-height: 1;
}

.experience-tag span {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .manifesto-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .manifesto-desc {
        margin: 0 auto;
    }

    .experience-tag {
        right: 0px;
        bottom: 20px;
        padding: 5px 12px;
    }
    
    .experience-tag strong {
        font-size: 1rem;
    }

    .manifesto-logo-circle {
        width: 250px;
        height: 250px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .brand-manifesto-proper {
        padding: 60px 0;
    }

    .manifesto-sub-bar {
        padding: 10px 20px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: var(--color-bg-alt);
}

.benefit-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

/* Aesthetic Manifesto Section */
.about {
    position: relative;
    background: var(--color-bg-light);
    overflow: hidden;
    padding: var(--section-padding) 0;
}

.manifesto-wrapper {
    position: relative;
    z-index: 5;
    text-align: center;
}

.manifesto-badge {
    color: var(--color-primary);
    font-weight: 800;
    letter-spacing: 5px;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.manifesto-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(178, 34, 89, 0.1);
    transition: var(--transition-smooth);
    text-align: center;
}

.manifesto-card.active {
    background: var(--color-white);
    box-shadow: 0 30px 60px rgba(178, 34, 89, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.manifesto-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.manifesto-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
}

.manifesto-card p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.manifesto-quote {
    max-width: 800px;
    margin: 6rem auto 4rem;
    position: relative;
}

.manifesto-quote p {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--color-text-dark);
    line-height: 1.4;
    position: relative;
}

.manifesto-quote p::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: rgba(178, 34, 89, 0.05);
    font-family: serif;
}

.signature {
    display: block;
    margin-top: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 2px;
    font-size: 3.5rem;
    /* Significantly larger */
    font-family: var(--font-heading);
}

/* Background Aesthetic Elements */
.aesthetic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.aesthetic-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.blob-left {
    width: 400px;
    height: 400px;
    background: var(--color-bg-alt);
    top: 20%;
    left: -100px;
}

.blob-right {
    width: 300px;
    height: 300px;
    background: rgba(197, 160, 89, 0.2);
    bottom: 10%;
    right: -50px;
}

@media (max-width: 991px) {
    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .manifesto-card.active {
        transform: none;
    }
}

@media (max-width: 768px) {
    .manifesto-quote p {
        font-size: 1.6rem;
    }

    .signature {
        font-size: 2rem;
        white-space: nowrap;
    }

    /* Single line mobile */
    .about {
        padding: 80px 0;
    }
}

/* Instagram Reel Section */
.insta-reel {
    background: var(--color-bg-light);
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.reel-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.reel-content {
    text-align: left;
}

.reel-content .badge {
    display: inline-block;
    background: rgba(178, 34, 89, 0.08);
    color: var(--color-primary);
    padding: 0.6rem 1.8rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(178, 34, 89, 0.05);
}

.reel-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.reel-content p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    max-width: 550px;
    line-height: 1.8;
}

.insta-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 100px;
}

.reel-video-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 320px;
    height: 580px;
    background: #000;
    border-radius: 45px;
    border: 12px solid #1a1a1a;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(255, 255, 255, 0.1);
    z-index: 2;
    transform: rotate(2deg);
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

.reel-controls {
    position: absolute;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.play-icon,
.pause-icon,
.mute-icon,
.unmute-icon {
    display: none;
}

/* Toggle States */
#reel-play-toggle:not(.paused) .pause-icon {
    display: block;
}

#reel-play-toggle.paused .play-icon {
    display: block;
}

#reel-mute-toggle.muted .mute-icon {
    display: block;
}

#reel-mute-toggle:not(.muted) .unmute-icon {
    display: block;
}


.reel-blur-bg {
    position: absolute;
    width: 140%;
    height: 90%;
    background: var(--color-primary);
    filter: blur(120px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 991px) {
    .reel-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .reel-content {
        text-align: center;
        order: 1;
    }

    .reel-content .section-title {
        text-align: center;
    }

    .reel-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .reel-video-wrapper {
        order: 2;
    }

    .phone-mockup {
        width: 280px;
        height: 500px;
        transform: rotate(0deg);
    }
}


/* Global Excellence Section */
.global-reach {
    background: var(--color-white);
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(178, 34, 89, 0.05);
}

.global-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.global-info .badge {
    display: inline-block;
    background: rgba(178, 34, 89, 0.05);
    color: var(--color-primary);
    padding: 0.6rem 2rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.global-info .section-title {
    text-align: left;
    font-size: 3.5rem;
}

.global-info p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 3.5rem;
    max-width: 580px;
}

.export-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(178, 34, 89, 0.1);
}

.export-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.export-stat strong {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-accent);
}

.export-stat span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-light);
    letter-spacing: 1px;
}

.presence-card {
    background: var(--color-bg-light);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 80px rgba(178, 34, 89, 0.08);
    position: relative;
    z-index: 5;
    border: 1px solid var(--color-white);
}

.presence-card h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.country-item {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-white);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.presence-tag {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.global-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.global-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(197, 160, 89, 0.1);
    filter: blur(100px);
    border-radius: 50%;
    bottom: -10%;
    right: -10%;
}

@media (max-width: 991px) {
    .global-reach {
        padding: 80px 0;
    }

    .global-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .global-info .section-title {
        text-align: center;
        font-size: 2.5rem;
    }

    .global-info p {
        margin-left: auto;
        margin-right: auto;
    }

    .export-stats {
        justify-content: center;
    }

    .presence-card {
        padding: 2rem;
    }

    .country-grid {
        grid-template-columns: 1fr;
    }
}

/* Products Section */
.products {
    background: var(--color-bg-light);
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.product-filters {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-filters li {
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    border-radius: 100px;
    transition: var(--transition-smooth);
    border: 1px solid var(--color-primary);
}


.product-filters li.active,
.product-filters li:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    will-change: transform, opacity;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(214, 51, 132, 0.15);
}

.product-img {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--color-bg-light);
    /* Soft background for PNGs */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Full image without cropping */
    transition: transform 0.6s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-img .tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.3rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.product-info p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    height: 3em;
    overflow: hidden;
}

.product-info .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.product-info .btn {
    width: 100%;
}

/* 🌿 PREMIUM REVIEWS MASONRY */
.testimonials {
    background: linear-gradient(180deg, #FFFFFF 0%, #FDF4F2 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.reviews-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.review-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.review-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(178, 34, 89, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(178, 34, 89, 0.1);
    border-color: rgba(178, 34, 89, 0.15);
}

.review-card.premium-card {
    background: linear-gradient(165deg, #ffffff 0%, #fff8f8 100%);
}

.review-card.reveal-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, transparent, rgba(178, 34, 89, 0.1), transparent);
    border-radius: 26px;
    z-index: -1;
    animation: borderGlow 4s infinite linear;
}

@keyframes borderGlow {
    0% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.3;
    }
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verified-badge {
    font-size: 0.7rem;
    font-weight: 800;
    color: #006633;
    background: rgba(0, 102, 51, 0.05);
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    position: relative;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.reviewer-avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-premium);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(178, 34, 89, 0.2);
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
}

.reviewer-meta .name {
    font-weight: 700;
    font-size: 1rem;
    color: #1F1F1F;
}

.reviewer-meta .loc,
.reviewer-meta .product-tag {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 600;
    opacity: 0.8;
}

.trust-extra-card {
    background: var(--gradient-premium);
    padding: 40px;
    border-radius: 24px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    justify-content: center;
    height: 100%;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.trust-extra-card h4 {
    font-size: 1.4rem;
    margin: 0;
}

.trust-extra-card p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-extra-card .btn {
    background: white;
    color: var(--color-primary);
    margin-top: 10px;
}

/* Mobile Responsiveness for Masonry */
@media (max-width: 992px) {
    .reviews-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        /* Reduced gap for smaller screens */
    }

    .desktop-only {
        display: none !important;
        /* Keep 2 clean columns */
    }
}

@media (max-width: 768px) {
    .reviews-masonry {
        grid-template-columns: repeat(2, 1fr);
        /* 2 per row as requested */
        gap: 12px;
        /* Tight gap for mobile */
    }

    .review-card {
        padding: 20px 15px;
        /* Compact padding */
    }

    .quote-text {
        font-size: 0.85rem;
        /* Slightly smaller font for mobile columns */
        line-height: 1.5;
    }

    .reviewer-info {
        padding-top: 15px;
        gap: 10px;
    }

    .reviewer-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .reviewer-meta .name {
        font-size: 0.85rem;
    }

    .reviewer-meta .loc,
    .reviewer-meta .product-tag {
        font-size: 0.65rem;
    }

    .mobile-slider-cta {
        display: block !important;
    }

    .verified-badge {
        padding: 3px 8px;
        font-size: 0.6rem;
    }

    .stars {
        font-size: 0.8rem;
    }
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(214, 51, 132, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 10px;
}

/* FAQ Section for SEO & AEO */
.faq {
    background: var(--color-white);
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.faq-item {
    padding: 2.5rem;
    background: var(--color-bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(178, 34, 89, 0.05);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(178, 34, 89, 0.08);
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-item p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-img {
        height: 180px;
        padding: 10px;
    }

    .product-info {
        padding: 15px;
    }

    .product-info h3 {
        font-size: 0.95rem;
        height: 2.8em;
        overflow: hidden;
    }

    .product-info p {
        display: none;
        /* Hide long desc on mobile grid to save space */
    }

    .product-info .price {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .product-card .btn {
        padding: 10px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-item {
        padding: 2rem;
    }

    .whatsapp-widget {
        bottom: 30px;
        right: 20px;
    }

    .chat-bubble {
        width: 280px;
        bottom: 75px;
        right: -10px;
    }

    .modal-content.glass {
        padding: 3rem 2rem;
        border-radius: 20px;
    }

    .modal-body h2 {
        font-size: 1.8rem;
    }

    .social-proof {
        bottom: 85px;
        left: 10px;
        right: 10px;
        width: auto;
        max-width: 320px;
        padding: 0.6rem 1rem;
        gap: 10px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }

    .proof-img {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }

    .proof-text p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .proof-text small {
        font-size: 0.6rem;
    }

    .trust-badges {
        gap: 1rem;
        margin-top: 2rem;
        justify-content: center;
    }

    .badge-icon {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .hero-stats-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .stat-sep {
        display: none;
    }

    header {
        height: 70px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        gap: 0.8rem;
    }

    .badge-icon span {
        display: none;
    }

    /* Show icons only for space on ultra-small screens */
    .badge-icon::after {
        content: attr(data-label);
    }

    .top-bar {
        font-size: 0.7rem;
        padding: 8px 0;
    }

    .social-proof {
        max-width: 260px;
        padding: 0.5rem 0.8rem;
        bottom: 80px;
    }

    .proof-img {
        display: none;
    }

    /* Hide icon to save more space on tiny screens */
}

/* Contact Section */
.contact {
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.info-items {
    margin: 3rem 0;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--color-bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-box {
    background: var(--color-bg-light);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(214, 51, 132, 0.1);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(214, 51, 132, 0.1);
}

.full-width {
    width: 100%;
}

/* Google Reviews Card Styling */
.google-reviews-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(178, 34, 89, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2.5rem;
    transition: var(--transition-smooth);
}

.google-reviews-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 30px rgba(178, 34, 89, 0.08);
}

.g-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.g-logo svg {
    color: #4285F4;
    /* Google Blue */
}

.g-stats {
    display: flex;
    flex-direction: column;
}

.g-stats strong {
    font-size: 1.2rem;
    color: var(--color-text-dark);
}

.g-stats span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.g-stars {
    color: #FBBC05;
    /* Google Yellow */
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.g-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--color-text-dark);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.g-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
}

.g-link:hover {
    border-color: var(--color-primary);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: var(--color-white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-brand h2 span {
    color: var(--color-primary);
}

.footer-brand p {
    color: #999;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-5px);
}

.footer-links h3,
.footer-newsletter h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #999;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-newsletter p {
    color: #999;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    border: 1px solid #333;
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
}

.btn.sm {
    padding: 0.6rem 1.5rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 30px 0;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Interactive WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}

.whatsapp-trigger {
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    position: relative;
}

.whatsapp-trigger:hover {
    transform: scale(1.1) rotate(5deg);
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 22px;
    background: #FF3B30;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.chat-bubble {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: translateY(20px) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    transform-origin: bottom right;
}

.whatsapp-widget.active .chat-bubble {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.chat-header {
    background: #075E54;
    color: white;
    padding: 1.5rem;
    position: relative;
}

.chat-header strong {
    display: block;
    font-size: 1.1rem;
}

.chat-header p {
    font-size: 0.8rem;
    opacity: 0.8;
}

.status-dot {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 10px;
    height: 10px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
}

.chat-body {
    padding: 2rem;
    background: #E5DDD5;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-blend-mode: overlay;
}

.chat-body p {
    background: white;
    padding: 1rem;
    border-radius: 12px 12px 12px 0;
    font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.chat-btn {
    display: block;
    background: #25D366;
    color: white;
    text-align: center;
    padding: 1rem;
    margin: 0 1.5rem 1.5rem;
    border-radius: 100px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.chat-btn:hover {
    background: #128C7E;
}

/* Mobile Responsive */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 3100;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero-content {
        gap: 2rem;
    }
}

@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-flex {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.99);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.8rem;
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        box-shadow: -15px 0 45px rgba(0, 0, 0, 0.1);
        z-index: 2000;
        padding: 40px 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(15px);
        transition: all 0.4s ease;
        width: 100%;
        text-align: center;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered Delay */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links.active li:nth-child(7) {
        transition-delay: 0.4s;
    }

    .nav-links a {
        font-size: 1.15rem;
        font-weight: 600;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: var(--color-primary);
        padding: 10px;
        display: block;
        width: 100%;
        position: relative;
    }

    .nav-links a::after {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-cta .btn {
        display: none;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .footer-brand p {
        max-width: 300px;
        margin: 1.5rem auto 2rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
    }

    .footer-links li {
        width: 100%;
        margin-bottom: 0;
    }

    .footer-newsletter p {
        margin: 0 auto 1.5rem;
    }

    .newsletter-form {
        max-width: 350px;
        margin: 0 auto;
    }

    .footer-bottom {
        padding-top: 50px;
    }

    .export-info {
        text-align: center;
        width: 100%;
        margin-top: 25px !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        gap: 0.5rem;
    }

    .product-filters {
        flex-wrap: wrap;
        justify-content: center;
        transform: scale(0.9);
    }

    .contact-form-box {
        padding: 2rem;
    }

    .floating-badge {
        padding: 1rem;
        bottom: -20px;
        left: -10px;
    }

    .floating-badge .count {
        font-size: 1.8rem;
    }
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4rem 3rem;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-light);
}

.modal-badge {
    color: var(--color-primary);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    display: block;
}

.modal-body h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-white);
    color: var(--color-primary);
    border: 1px solid rgba(178, 34, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-10px);
}

.back-to-top:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-15px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

.modal-body p {
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.modal-body form input {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(178, 34, 89, 0.1);
}

.expiry {
    font-size: 0.85rem;
    margin-top: 2rem;
    font-weight: 700;
    color: #FF3B30 !important;
}

/* Social Proof Notification */
.social-proof {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 2500;
    transform: translateY(150px);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 4px solid var(--color-primary);
}

.social-proof.active {
    transform: translateY(0);
}

.proof-img {
    font-size: 1.5rem;
    background: var(--color-bg-light);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.proof-text p {
    font-size: 0.85rem;
    color: var(--color-text-dark);
}

.proof-text small {
    font-size: 0.7rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 700;
}

/* WhatsApp Online Pulse */
.online-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: #27ae60;
    border-radius: 50%;
    border: 2px solid white;
    z-index: 10;
}

.online-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #27ae60;
    border-radius: 50%;
    animation: whatsappPulse 2s infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

/* Welcome Gold Modal */
.welcome-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.welcome-modal-content {
    background: #fff;
    max-width: 450px;
    width: 100%;
    border-radius: 40px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: luxuryShow 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

@keyframes luxuryShow {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(40px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.welcome-header {
    margin-bottom: 25px;
}

.gold-badge {
    background: linear-gradient(135deg, #C5A059, #E1C18D);
    color: #fff;
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.welcome-modal h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--color-primary);
    line-height: 1.1;
}

.discount-value {
    font-size: 4.5rem;
    font-weight: 900;
    color: #C5A059;
    letter-spacing: -2px;
    line-height: 1;
    margin: 20px 0;
}

.promo-code {
    background: #f8f8f8;
    border: 1.5px dashed #ccc;
    padding: 10px 20px;
    border-radius: 12px;
    display: inline-block;
    margin: 15px 0;
    font-size: 0.9rem;
}

.promo-code strong {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.terms {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-top: 10px;
}

.close-welcome {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #ccc;
}

.welcome-btn {
    width: 100%;
    margin-top: 25px;
    padding: 20px !important;
}

@keyframes shimmer {
    to {
        background-position-x: -200%;
    }
}

.skeleton-card {
    height: 450px;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 24px;
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}

/* ABSOLUTE MOBILE OVERRIDES - FORCED 2 COLUMNS */
@media (max-width: 768px) {
    .product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }

    .product-card {
        border-radius: 1.5rem !important;
    }

    .product-img {
        height: 160px !important;
        padding: 1rem !important;
    }

    .product-info {
        padding: 1rem !important;
    }

    .product-info h3 {
        font-size: 0.95rem !important;
        line-height: 1.3 !important;
        height: 2.6em !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .product-info p {
        display: none !important;
    }

    .product-info .price {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
    }

    .product-info .btn {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.8rem !important;
        border-radius: 10px !important;
    }

    .prod-rating {
        font-size: 0.65rem !important;
        margin-bottom: 2px !important;
    }

    .prod-rating span {
        display: inline-block !important;
        margin-left: 5px !important;
    }
}

/* TAG ADJUSTMENTS FOR MOBILE */
@media (max-width: 768px) {
    .product-img .tag {
        top: 10px !important;
        right: 10px !important;
        font-size: 0.6rem !important;
        padding: 0.2rem 0.6rem !important;
    }
}

/* Product Detail Modal Specifics */
.product-modal-content {
    max-width: 900px !important;
    padding: 0 !important;
    overflow: hidden;
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    /* Enable scroll for long content */
    max-height: 90vh;
    /* Don't exceed screen height */
}

/* Enhanced Close Button for Product Modal */
.product-modal-content .close-welcome {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
    z-index: 100;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.product-modal-content .close-welcome:hover {
    background: var(--color-primary);
    color: white;
    transform: rotate(90deg);
}

.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.product-modal-img {
    background: #f9f9f9;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.product-modal-img img {
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: all 0.4s ease;
}

.product-modal-img:hover img {
    transform: scale(1.05);
}

.product-modal-info {
    padding: 50px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.product-modal-info h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-text-dark);
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.modal-price-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.modal-price-row .new-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
}

.modal-price-row .old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.modal-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.modal-rating-row .stars {
    color: #f1c40f;
    font-size: 1rem;
}

.modal-rating-row .review-count {
    font-size: 0.9rem;
    color: #666;
}

.product-description-container {
    margin-bottom: 35px;
    flex-grow: 1;
}

.product-description-container h3 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.product-description-container p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

.modal-actions .btn {
    width: 100%;
    padding: 1.2rem !important;
    font-size: 1.1rem;
}

/* Mobile Adjustments for Product Modal */
@media (max-width: 768px) {
    .product-modal-body {
        grid-template-columns: 1fr;
    }

    .product-modal-img {
        padding: 30px;
        min-height: 300px;
    }

    .product-modal-img img {
        max-height: 250px;
    }

    .product-modal-info {
        padding: 40px 25px;
    }

    .product-modal-info h1 {
        font-size: 1.8rem;
    }

    .modal-price-row .new-price {
        font-size: 1.6rem;
    }

    /* Forced visibility for Mobile Close Button */
    .product-modal-content .close-welcome {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        background: var(--color-white);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--color-bg-alt);
    }
}

/* --- CART & CHECKOUT SYSTEMS --- */

/* --- NEW CART IN HEADER --- */
.header-cta {
    display: flex !important;
    align-items: center;
    gap: 20px;
}

.header-cart {
    position: relative;
    cursor: pointer;
    background: #fdfaf9;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1.5px solid rgba(178, 34, 89, 0.1);
}

.header-cart:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 4px 15px rgba(178, 34, 89, 0.15);
}

.header-cart svg {
    color: var(--color-primary);
    width: 24px;
    height: 24px;
}

.header-cart .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-primary);
    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;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Floating Animation Item */
.flying-product {
    position: fixed;
    z-index: 10001;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
}

/* Hide original floating cart if still present */
.floating-cart {
    display: none !important;
}

/* Checkout Page Styles (Standalone) */
/* Standalone Premium Checkout UI */
.checkout-page {
    background: #fcf9f7;
    min-height: 100vh;
    font-family: 'Outfit', sans-serif;
}

.checkout-page-container {
    padding: 40px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Steps Indicator */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.checkout-steps .step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #999;
    font-size: 0.95rem;
}

.checkout-steps .step.active {
    color: var(--color-primary);
}

.checkout-steps .step span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #777;
}

.checkout-steps .step.active span {
    background: var(--color-primary);
    color: white;
}

.checkout-steps .step-line {
    width: 40px;
    height: 2px;
    background: #eee;
}

/* Grid Layout */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.checkout-card {
    background: white;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.secure-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.secure-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin: 0;
    color: var(--color-text-dark);
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    color: #166534;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Form Styles */
.form-section {
    position: relative;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(178, 34, 89, 0.08);
    color: var(--color-primary);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.section-desc {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group.full-col {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-style: normal;
    color: #aaa;
}

.input-with-icon input {
    padding-left: 45px !important;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.form-group input:focus {
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(178, 34, 89, 0.05);
    outline: none;
}

.readonly-input {
    background: #f5f5f5 !important;
    color: #777;
    cursor: not-allowed;
}

/* Pincode & Status */
.pincode-wrapper {
    display: flex;
    align-items: center;
}

.pincode-status {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    pointer-events: none;
}

.pincode-status.verified {
    color: #10b981;
}

.pincode-status.loading {
    color: #6366f1;
}

/* Trust Bar */
.checkout-trust-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 40px 0;
    padding: 25px;
    background: #fdfaf9;
    border-radius: 20px;
    border: 1px dashed rgba(178, 34, 89, 0.2);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    font-size: 1.5rem;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 0.85rem;
    color: #333;
}

.trust-text span {
    font-size: 0.75rem;
    color: #888;
}

/* QR Payment Box */
.qr-payment-box {
    display: flex;
    gap: 30px;
    background: white;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.qr-vignette {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.qr-container {
    width: 180px;
    height: 180px;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: white;
}

.qr-container img {
    width: 100%;
    height: 100%;
}

.qr-verify-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 700;
}

.qr-instructions {
    flex: 1;
}

.qr-instructions ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.qr-instructions li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.4;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: var(--color-primary);
    color: white;
}

/* Upload Area */
.upload-area {
    border: 2px dashed #ddd;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.upload-area:hover {
    border-color: var(--color-primary);
    background: rgba(178, 34, 89, 0.02);
}

.upload-icon-circle {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.upload-area input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.screenshot-preview-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 5;
}

.screenshot-preview-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.remove-upload {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    font-size: 1.2rem;
}

/* Confirm Button */
.btn-confirm-order {
    width: 100%;
    padding: 20px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 40px;
    box-shadow: 0 10px 25px rgba(178, 34, 89, 0.2);
}

.btn-confirm-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(178, 34, 89, 0.3);
    background: var(--color-accent);
}

.doctor-guarantee {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    margin-top: 25px;
    line-height: 1.6;
}

/* Sidebar Summary */
.summary-card-modern {
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.summary-card-modern h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--color-text-dark);
}

.summary-items-list {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #555;
}

.summary-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 20px 0;
}

.summary-prices .sub-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #888;
}

.summary-prices .sub-row.discount {
    color: #10b981;
    font-weight: 600;
}

.grand-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-top: 15px;
}

.doctor-stamp {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 12px;
}

.stamp-icon {
    font-size: 1.5rem;
}

.stamp-text {
    display: flex;
    flex-direction: column;
}

.stamp-text strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
}

.stamp-text span {
    font-size: 0.7rem;
    color: #999;
}

.help-card {
    margin-top: 25px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.help-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.help-card p {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 15px;
    line-height: 1.5;
}

.wa-help-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #25d366;
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.wa-help-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.checkout-footer {
    background: white;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-links {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #aaa;
}

/* -------------------------------------------------------------------------- */
/* THE PROFESSIONAL CHECKOUT UI (MODERN & CLINICAL)                           */
/* -------------------------------------------------------------------------- */

.checkout-page {
    background: #fdfdfd;
    font-family: 'Outfit', sans-serif;
    color: #2d2d2d;
}

.checkout-page-container {
    padding: 100px 20px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Steps Bar */
.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 60px;
}

.checkout-steps .step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-steps .step.active {
    color: var(--color-primary);
}

.checkout-steps .step span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #888;
}

.checkout-steps .step.active span {
    background: var(--color-primary);
    color: #fff;
}

.checkout-steps .step-line {
    width: 40px;
    height: 1px;
    background: #eee;
}

/* Main Grid */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Cards */
.checkout-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.secure-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f9f9f9;
}

.secure-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin: 0;
}

.secure-badge {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 12px;
    background: #f1fdf4;
    color: #166534;
    border-radius: 6px;
}

/* Form Sections */
.form-section {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.form-section h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-desc {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Form Styles */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Strict Line by Line */
    gap: 25px;
}

.form-group.full-col {
    grid-column: 1;
    /* Standardize */
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ececec;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus {
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 5px 20px rgba(178, 34, 89, 0.05);
    outline: none;
}

.readonly-input {
    background: #f7f7f7 !important;
    color: #999;
    cursor: not-allowed;
}

/* Pincode & Info */
.pincode-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.pincode-status {
    position: absolute;
    right: 15px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Payment Tabs */
.payment-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 5px;
    border-radius: 12px;
}

.tab-btn {
    flex: 1;
    border: none;
    background: none;
    padding: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #888;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #fff;
    color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Payment Panels */
.payment-panel {
    display: none;
    animation: fadeInTab 0.4s ease forwards;
}

.payment-panel.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* QR Layout (Focused and Centered) */
.qr-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
}

.qr-image-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-image-card img {
    width: 200px;
    height: 200px;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.verified-tag {
    font-size: 0.7rem;
    margin-top: 15px;
    color: #10b981;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.qr-text h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.clean-list {
    list-style-position: inside;
    padding: 0;
    margin-bottom: 25px;
    text-align: center;
}

.clean-list li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 12px;
}

.btn-minimal {
    display: inline-block;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 20px;
    border-radius: 100px;
    background: #fdf2f6;
    transition: all 0.3s ease;
}

.btn-minimal:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Manual Intent */
.intent-card-premium {
    text-align: center;
    background: #fdfaf9;
    padding: 40px 20px;
    border-radius: 16px;
    border: 1px solid rgba(178, 34, 89, 0.05);
}

.intent-btn-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 40px;
    background: #fff;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.intent-btn-box span {
    font-weight: 800;
    color: #333;
    font-size: 1rem;
}

.intent-btn-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(178, 34, 89, 0.1);
}

.intent-tip {
    font-size: 0.8rem;
    color: #999;
    margin-top: 15px;
}

.copy-id-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-top: 10px;
}

.copy-id-field span {
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Upload Section */
.upload-section-box {
    margin-top: 40px;
}

.upload-area {
    border: 1px dashed #ddd;
    background: #fafafa;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.upload-icon-alt {
    font-size: 2rem;
    margin-bottom: 12px;
}

.upload-placeholder p {
    font-size: 1rem;
    margin-bottom: 5px;
}

.upload-placeholder span {
    font-size: 0.85rem;
    color: #aaa;
}

#screenshot-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.remove-upload {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Action Buttons */
.btn-place-order {
    width: 100%;
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 22px;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 40px;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(178, 34, 89, 0.2);
    transition: all 0.3s ease;
}

.btn-place-order:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(178, 34, 89, 0.3);
}

.clinical-trust {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: #aaa;
    letter-spacing: 0.5px;
}

/* Sidebar Styles */
.checkout-sidebar {
    position: sticky;
    top: 120px;
}

.summary-card-modern {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.summary-card-modern h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #666;
}

.grand-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-top: 20px;
}

.doctor-guarantee-card {
    margin-top: 35px;
    padding: 20px;
    background: #fdfdfd;
    border: 1px solid #f5f5f5;
    border-radius: 12px;
    text-align: center;
}

.doctor-stamp-alt {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid #f1c40f;
    color: #bfa50b;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.doctor-guarantee-card p {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.6;
}

.whatsapp-support-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.whatsapp-support-card h4 {
    margin-bottom: 10px;
}

.whatsapp-support-card p {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 20px;
}

.btn-wa {
    display: inline-block;
    padding: 12px 25px;
    background: #25d366;
    color: #fff;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Mobile Action Bar */
.mobile-checkout-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.06);
    z-index: 2000;
}

.mb-price-info small {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    text-transform: uppercase;
}

.mb-price-info strong {
    font-size: 1.3rem;
    color: var(--color-primary);
}

.mb-pay-action {
    background: var(--color-primary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
}

/* Mobile Media Queries */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-sidebar {
        order: -1;
        position: static;
        margin-bottom: 30px;
    }

    .checkout-card {
        padding: 40px 25px;
    }

    .checkout-steps {
        display: none;
        /* Hide complex steps on smaller mobile */
    }
}

@media (max-width: 600px) {
    .checkout-page-container {
        padding-top: 80px;
        padding-bottom: 100px;
    }

    .secure-header h2 {
        font-size: 1.8rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .qr-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .qr-text ol {
        text-align: left;
    }

    .btn-place-order {
        padding: 18px;
        font-size: 1.1rem;
    }

    /* Force Payment Elements to 1 per row for small mobiles */
    .payment-tabs {
        flex-direction: column;
        gap: 8px;
    }

    .tab-btn {
        width: 100%;
        padding: 15px;
        font-size: 0.9rem;
    }

    /* Force Order Summary elements to 1 per row */
    .summary-item,
    .sub-row,
    .grand-total-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px;
        text-align: left;
    }

    .item-total,
    .sub-row span:last-child,
    .grand-total-row span:last-child {
        font-weight: 800;
    }
}

@media (min-width: 993px) {
    .mobile-checkout-bar {
        display: none;
    }
}


.summary-card h3 {
    margin-bottom: 20px;
    color: var(--color-primary);
}

.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: var(--color-bg-light);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 3000; /* Higher than top-ticker */
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    padding-top: env(safe-area-inset-top);
}

.cart-drawer.active {
    right: 0;
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}

.cart-header {
    padding: 25px;
    padding-top: calc(15px + env(safe-area-inset-top));
    border-bottom: 1px solid rgba(178, 34, 89, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-white);
}

.cart-header h2 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--color-text-dark);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-dark);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 15px;
    margin-bottom: 20px;
    background: var(--color-white);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(178, 34, 89, 0.05);
    align-items: center;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.item-price {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.item-qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.remove-item {
    color: #ff4d4d;
    cursor: pointer;
    font-size: 1.1rem;
    background: none;
    border: none;
}

/* 🛍️ Cart Upsell Section */
.cart-upsell-section {
    margin-top: 25px;
    padding: 20px;
    background: #fffafa;
    border-top: 2px dashed rgba(178, 34, 89, 0.1);
}

.cart-upsell-section h4 {
    font-size: 0.85rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.upsell-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.upsell-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid rgba(178, 34, 89, 0.05);
}

.u-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.u-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.u-info {
    flex-grow: 1;
}

.u-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.u-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.u-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
}

.u-add-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.u-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(178, 34, 89, 0.2);
}

.cart-footer {
    padding: 25px;
    border-top: 1px solid rgba(178, 34, 89, 0.1);
    background: var(--color-white);
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 700;
}

.checkout-btn {
    width: 100%;
}

/* Floating Cart Button */
.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--gradient-premium);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px var(--color-shadow);
    cursor: pointer;
    z-index: 999;
    transition: var(--transition-smooth);
}

.floating-cart:hover {
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -2px;
    background: var(--color-accent);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Checkout Modal */
.checkout-modal-content {
    max-width: 900px !important;
    padding: 0 !important;
    overflow: hidden;
    background: #fff !important;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    height: 90vh;
}

.checkout-form-side {
    padding: 30px;
    overflow-y: auto;
}

.checkout-summary-side {
    padding: 30px;
    background: #fdfaf9;
    border-left: 1px solid rgba(178, 34, 89, 0.1);
    overflow-y: auto;
}

@media (max-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        height: auto;
        max-height: 90vh;
    }

    .checkout-summary-side {
        border-left: none;
        border-top: 1px solid rgba(178, 34, 89, 0.1);
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.full-col {
    grid-column: span 2;
}

.checkout-form-side h3 {
    margin-bottom: 25px;
    font-size: 1.4rem;
    color: var(--color-primary);
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #444;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: var(--font-body);
}

/* 📱 Final Mobile Optimization Override */
@media (max-width: 600px) {
    .checkout-page-container {
        padding: 70px 10px 70px !important;
    }

    .checkout-card {
        padding: 25px 15px !important;
        border-radius: 12px;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .form-group label {
        font-size: 0.75rem !important;
        margin-bottom: 2px !important;
    }

    .form-group input {
        padding: 10px !important;
        font-size: 0.9rem !important;
    }

    .form-group.full-col {
        grid-column: span 1 !important;
    }

    .secure-header {
        margin-bottom: 20px !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .secure-header h2 {
        font-size: 1.3rem !important;
    }

    .section-badge {
        font-size: 0.6rem !important;
        padding: 2px 8px !important;
    }

    .form-section h3 {
        font-size: 1.1rem !important;
        margin-bottom: 5px !important;
    }

    .section-desc {
        font-size: 0.75rem !important;
    }

    .payment-tabs {
        gap: 5px !important;
    }

    .tab-btn {
        padding: 8px 12px !important;
        font-size: 0.75rem !important;
    }

    .qr-layout {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .qr-image-card img {
        width: 150px !important;
        height: 150px !important;
    }

    .btn-place-order {
        padding: 15px !important;
        font-size: 0.95rem !important;
    }
}

.qr-section {
    background: #fff9fa;
    border: 2px dashed var(--color-primary);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    margin-top: 20px;
}

.qr-container {
    background: white;
    padding: 15px;
    border-radius: 15px;
    display: inline-block;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.qr-container img {
    width: 180px;
    height: 180px;
}

.qr-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.btn-sm {
    padding: 8px 15px !important;
    font-size: 0.8rem !important;
}

.upload-area {
    margin-top: 25px;
    border: 2px dashed #ddd;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.upload-area:hover {
    border-color: var(--color-primary);
    background: rgba(178, 34, 89, 0.02);
}

.upload-area input {
    display: none;
}

.upload-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.screenshot-preview-container {
    margin-top: 15px;
    position: relative;
    display: none;
}

.screenshot-preview-container img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 10px;
}

.remove-upload {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4d4d;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid white;
}

.summary-items {
    margin: 20px 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.summary-total {
    border-top: 2px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-primary);
}

/* Loader Spinner */
.loader {
    width: 18px;
    height: 18px;
    border: 2px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    animation: rotation 1s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.thank-you-card {
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    max-width: 600px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

/* Cart Promotions & Offers */
.cart-promo-area {
    padding: 15px;
    background: #fdfaf9;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(178, 34, 89, 0.05);
}

.shipping-tracker {
    margin-bottom: 10px;
}

.tracker-bar {
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.tracker-bar .progress {
    height: 100%;
    background: var(--gradient-premium);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.shipping-msg {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
}

.shipping-msg.success {
    color: #27ae60;
}

.offer-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    padding: 8px;
    background: rgba(178, 34, 89, 0.05);
    border-radius: 8px;
    text-align: center;
    border: 1px dashed var(--color-primary);
    animation: pulse 2s infinite;
}

.offer-tip {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    font-style: italic;
}

.price-breakdown {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-breakdown .strike {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.price-breakdown .final-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
}

.cart-items-scroll {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Scrollbar Style for Cart */
.cart-items-scroll::-webkit-scrollbar {
    width: 4px;
}

.cart-items-scroll::-webkit-scrollbar-thumb {
    background: #eee;
    border-radius: 10px;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Checkout Breakdown Styles */
.checkout-breakdown {
    text-align: right;
    padding-top: 15px;
}

.sub-row {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.sub-row.discount {
    color: #e74c3c;
    font-weight: 600;
}

.grand-total-row {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(178, 34, 89, 0.1);
    display: flex;
    justify-content: space-between;
}

.savings-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-flex;
    align-self: flex-end;
}

/* Top Ticker Banner */
.top-ticker {
    background: var(--gradient-premium);
    color: #fffdec;
    padding: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2200;
    padding-top: env(safe-area-inset-top);
    height: calc(42px + env(safe-area-inset-top));
    line-height: 42px;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.15);
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    display: -webkit-flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
    -webkit-animation: marquee-scroll 30s linear infinite;
    will-change: transform;
}

.ticker-content span {
    display: inline-block;
    flex-shrink: 0;
    padding-right: 100px;
    align-items: center;
    gap: 10px;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@-webkit-keyframes marquee-scroll {
    0% { -webkit-transform: translateX(0); }
    100% { -webkit-transform: translateX(-50%); }
}

@media (max-width: 600px) {
    .top-ticker {
        height: 38px;
        line-height: 38px;
        font-size: 0.68rem;
    }
}

@media (max-width: 600px) {
    .top-ticker {
        height: var(--ticker-height-mobile);
        line-height: var(--ticker-height-mobile);
        font-size: 0.7rem;
    }
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    white-space: nowrap;
    animation: marquee 35s linear infinite;
}

#flash-timer,
#flash-timer-clone {
    color: #f1c40f;
    font-family: monospace;
    font-size: 0.9rem;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

@media (max-width: 768px) {
    .ticker-content {
        animation: marquee 25s linear infinite;
    }
}

/* Urgency - Stock Alert */
.stock-alert {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #FF3B30;
    color: white;
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.4);
    animation: flashStock 1.5s infinite;
    pointer-events: none;
    z-index: 5;
    white-space: nowrap;
}

/* 📱 Mobile Specific Alert Adjustments */
@media (max-width: 600px) {
    .stock-alert {
        padding: 4px 8px;
        font-size: 0.58rem;
        bottom: 8px;
        left: 8px;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(255, 59, 48, 0.3);
    }
}

@keyframes flashStock {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Empty Cart Premium Styling */
.empty-cart-state {
    padding: 60px 40px;
    text-align: center;
    background: #fff;
    border-radius: 24px;
    margin-top: 20px;
    animation: fadeIn 0.8s ease;
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 10px 15px rgba(178, 34, 89, 0.1));
}

.empty-cart-state h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.empty-cart-state p {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cart-discount-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.c-badge {
    padding: 8px 15px;
    background: #fdfaf9;
    border: 1px solid rgba(178, 34, 89, 0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.c-badge span {
    color: #444;
    font-weight: 400;
}

.empty-cart-state .btn-primary {
    width: 100%;
    padding: 18px !important;
    font-size: 1rem;
}

/* Reels Section */
.reels-section {
    background: #fff;
    padding: 100px 0;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reel-card {
    position: relative;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.reel-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(178, 34, 89, 0.2);
}

.reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    z-index: 2;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
    color: white;
    transition: var(--transition-smooth);
    z-index: 3;
}

.reel-card:hover .play-icon {
    background: var(--color-primary);
    transform: translate(-50%, -50%) scale(1.1);
    border-color: transparent;
}

/* Modal for Video Playback */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal-content {
    background: black;
    max-width: 400px;
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    animation: luxuryShow 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-modal-content video {
    width: 100%;
    max-height: 85vh;
}

@media (max-width: 991px) {
    .reels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .reels-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 20px;
    }

    .reel-card {
        min-width: 85%;
        scroll-snap-align: center;
    }
}

/* The Neelam Code Section */
.neelam-code {
    padding: 100px 0;
    background: var(--color-white);
}

.code-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.code-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.code-icon {
    width: 110px;
    height: 110px;
    background: #fdfdfd;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
}

.code-item:hover .code-icon {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.2);
}

.code-item h4 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.code-item p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.promise-card {
    background: #fff;
    padding: 60px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 900px;
    margin: 100px auto 0;
    position: relative;
    border: 1px solid rgba(178, 34, 89, 0.1);
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: calc(var(--radius-lg) - 10px);
    pointer-events: none;
}

.promise-card h2 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 30px;
    font-size: 2.8rem;
    position: relative;
}

.promise-card p {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    font-family: var(--font-body);
    font-weight: 300;
}

.promise-card strong {
    color: var(--color-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .code-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .code-icon {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }

    .promise-card {
        padding: 40px 20px;
        margin-top: 60px;
    }

    .promise-card h2 {
        font-size: 2rem;
    }

    .promise-card p {
        font-size: 1.1rem;
    }
}

/* Payment Tabs Enhancement */
.payment-tabs {
    display: flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 12px;
    margin-bottom: 25px;
    gap: 6px;
}

.tab-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.payment-panel {
    display: none;
}

.payment-panel.active {
    display: block;
    animation: fadeInTab 0.4s ease;
}

.intent-action-card {
    text-align: center;
    background: #fdfaf9;
    padding: 25px;
    border-radius: 20px;
    border: 1px dashed rgba(178, 34, 89, 0.2);
    margin-bottom: 25px;
}

.btn-intent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.btn-intent:hover {
    transform: translateY(-3px);
    border-color: var(--color-primary);
}

.upi-id-section {
    background: #f8fafc;
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
}

.upi-id-copy-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 10px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.upi-id-copy-wrapper span {
    font-family: monospace;
    font-size: 1rem;
    font-weight: 600;
}

#copy-upi-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🌿 Trust & Support Footer (Bottom of Page) */
.trust-support-footer {
    background: #fdfaf9;
    padding: 80px 20px;
    border-top: 1px solid #f5f0ee;
    margin-top: 60px;
}

.trust-support-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.trust-card-full {
    display: flex;
    gap: 30px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.trust-seal {
    width: 60px;
    height: 60px;
    background: #f1fdf4;
    color: #166534;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.trust-info h4,
.support-info h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.trust-info p,
.support-info p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

.support-card-full {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn-wa-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-wa-modern:hover {
    background: #1ebc5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

@media (max-width: 992px) {
    .trust-support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-card-full,
    .support-card-full {
        padding: 30px 20px;
    }

    .trust-card-full {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

}

/* 💎 Smart & Premium Order Summary (SIDEBAR) */
.summary-card-modern {
    border-top: 5px solid var(--color-primary) !important;
    padding: 25px !important;
}

.summary-items-list {
    margin-bottom: 25px;
}

.summary-item {
    font-weight: 500;
    color: #333 !important;
    margin-bottom: 15px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-item .item-name {
    display: flex;
    align-items: center;
}

.summary-item small {
    display: inline-block;
    background: #f8f8f8;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
    font-size: 0.75rem;
    color: #777;
    font-weight: 700;
}

.item-total {
    font-weight: 800;
    color: #222;
}

.summary-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 20px 0;
}

.summary-divider.dark {
    background: #e5e5e5;
    height: 1px;
    margin: 10px 0;
}

.price-details-section .sub-row {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    justify-content: space-between;
}

.sub-row .value {
    font-weight: 600;
    color: #444;
}

.sub-row.discount .label,
.sub-row.discount .value {
    color: #10b981;
    font-weight: 700;
}

.free-badge {
    background: #f1fdf4;
    color: #166534;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: 1px solid rgba(22, 101, 52, 0.1);
}

.total-payable-section {
    background: #fdfaf9;
    padding: 20px;
    border-radius: 16px;
    margin-top: 15px;
}

.grand-total-row {
    font-size: 1.3rem !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grand-total-row .label {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: #222;
}

.grand-total-row .value {
    color: var(--color-primary);
    font-weight: 900;
}

.ayurvedic-tax-note {
    font-size: 0.7rem;
    color: #999;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
    font-weight: 500;
}

.tax-icon {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* 📱 Mobile Specific Adjustments for Summary (LUXURY OVERRIDE) */
@media (max-width: 600px) {
    .summary-card-modern {
        padding: 24px 20px !important;
        border: 1px solid #f0f0f0 !important;
        border-top: 5px solid var(--color-primary) !important;
        background: #ffffff !important;
        border-radius: 24px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    }

    .summary-card-modern h3 {
        font-size: 1.35rem;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }

    .summary-item {
        font-size: 0.95rem;
    }

    .total-payable-section {
        padding: 18px;
        background: #fffafa;
        border: 1px solid rgba(178, 34, 89, 0.05);
        margin-top: 25px;
    }

    .grand-total-row .label {
        font-size: 1.1rem;
    }

    .grand-total-row .value {
        font-size: 1.4rem;
    }

    .coupon-section-modern {
        border-top: 1px dashed #dcdcdc;
        padding-top: 25px;
        margin-top: 30px;
    }

    .coupon-input-group {
        border: 1px solid #e5e5e5;
        border-radius: 12px;
    }

    .coupon-input-group input {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .coupon-input-group button {
        padding: 0 20px;
        font-size: 0.8rem;
    }

    .coupon-message {
        margin-top: 10px;
        font-size: 0.8rem;
    }
}

/* 🎫 Premium Coupon Styling */
.quick-coupon-badges {
    margin-bottom: 12px;
}

.coupon-badge {
    background: #fff8f8;
    border: 1.5px solid rgba(178, 34, 89, 0.1);
    color: var(--color-primary);
    padding: 12px 18px;
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.coupon-badge strong {
    background: var(--color-primary);
    color: white;
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 800;
}

.coupon-badge:hover {
    background: #fdf2f2;
    transform: translateY(-2px);
    border-color: var(--color-primary);
}

.coupon-section-modern {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1.5px dashed #eee;
}

.coupon-input-group {
    display: flex;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.coupon-input-group:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(178, 34, 89, 0.08);
}

.coupon-input-group input {
    flex: 1;
    border: none;
    padding: 14px 18px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    color: var(--color-text-dark);
}

.coupon-input-group input::placeholder {
    color: #bbb;
    font-size: 0.85rem;
}

.coupon-input-group button {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0 25px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.coupon-input-group button:hover {
    background: var(--color-primary-dark);
    padding: 0 30px;
}

.coupon-input-group button:active {
    transform: scale(0.95);
}

.coupon-message {
    font-size: 0.75rem;
    margin-top: 12px;
    min-height: 1.2em;
    display: block;
    font-weight: 600;
    padding: 0 5px;
}

.coupon-message.error {
    color: #d63031;
}

.coupon-message.success {
    color: #00b894;
}

.coupon-message:empty {
    display: none;
}

/* 🌿 FAMILY LEGACY SECTION */
.legacy-section {
    background: #FFFBF7;
    /* Soft Heritage Cream */
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(178, 34, 89, 0.05);
}

.legacy-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.legacy-content-header {
    margin-bottom: 40px;
}

.legacy-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(178, 34, 89, 0.05);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.legacy-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    color: #1F1F1F;
    margin-bottom: 30px;
}

.legacy-title span {
    color: var(--color-primary);
    font-style: italic;
}

.legacy-story-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.legacy-story-body p {
    margin-bottom: 25px;
}

.legacy-visual {
    position: relative;
}

.legacy-main-img {
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.legacy-experience-tag {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-primary);
    color: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(178, 34, 89, 0.2);
    text-align: center;
}

.legacy-experience-tag .num {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.legacy-experience-tag .text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* 🌿 Legacy Blocks Styling */
.legacy-blocks {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.legacy-block {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.legacy-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(178, 34, 89, 0.08);
}

.legacy-block-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.legacy-block h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1F1F1F;
}

.legacy-block-list {
    list-style: none;
    padding: 0;
}

.legacy-block-list li {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legacy-block-list li::before {
    content: '•';
    color: var(--color-primary);
    font-weight: bold;
}

.legacy-final-signature {
    text-align: center;
    margin-top: 100px;
    border-top: 1px dashed rgba(178, 34, 89, 0.2);
    padding-top: 60px;
}

.legacy-final-signature h2 {
    font-size: 2.2rem;
    color: #1F1F1F;
    margin-bottom: 20px;
}

.signature-tagline {
    font-size: 1.2rem;
    letter-spacing: 5px;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.legacy-final-signature p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .legacy-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .legacy-blocks {
        grid-template-columns: 1fr;
    }

    .legacy-experience-tag {
        position: static;
        margin-top: 30px;
        width: fit-content;
    }
}

/* 🌿 MIRACULOUS TRANSFORMATIONS */
.transformations-section {
    padding: var(--section-padding) 0;
    background: #FFFFFF;
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.transformation-item {
    background: #FFFBF7;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(178, 34, 89, 0.05);
    transition: var(--transition-smooth);
    position: relative;
}

.transformation-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(178, 34, 89, 0.1);
}

.t-img-container {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.t-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.transformation-item:hover .t-img {
    transform: scale(1.05);
}

.t-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.t-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
}

.t-meta {
    padding: 25px;
}

.t-meta h4 {
    font-size: 1.25rem;
    color: #1F1F1F;
    margin-bottom: 10px;
}

.t-meta p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .transformation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .transformation-grid {
        grid-template-columns: 1fr;
    }

    .t-img-container {
        height: 300px;
    }
}

/* 🚀 HIGH-PERFORMANCE RENDERING */
/* 📱 Testimonial Slider System */
.testimonial-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    gap: 0;
    will-change: transform;
}

.testimonial-item {
    flex: 0 0 33.333%;
    padding: 0 15px;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .testimonial-item {
        flex: 0 0 50%;
    }
}

@media (max-width: 600px) {
    .testimonial-item {
        flex: 0 0 100%;
    }
}

.review-card {
    height: 100%;
    background: white;
    padding: 35px;
    border-radius: 28px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(178, 34, 89, 0.1);
}

/* Slider Navigation */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.slider-nav {
    background: white;
    border: 1.5px solid #eee;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #444;
}

.slider-nav:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    width: 30px;
    background: var(--color-primary);
    border-radius: 100px;
}

/* 🖼️ Product Gallery Styles */
.product-gallery-thumbnails {
    display: none !important;
    /* User requested to hide thumbnails */
    gap: 12px;
    margin-top: 15px;
    padding: 10px 5px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
}

.product-gallery-thumbnails::-webkit-scrollbar {
    display: none;
}

/* ⬅️➡️ Gallery Nav Buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.9;
    color: #333;
}

.gallery-nav:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.15);
    background: var(--color-primary);
    color: white;
}

.gallery-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-nav.prev {
    left: 15px;
}

.gallery-nav.next {
    right: 15px;
}

.gallery-nav svg {
    width: 20px;
    height: 20px;
}

.gallery-thumb {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    background: #f9f9f9;
}

.gallery-thumb.active {
    border-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(178, 34, 89, 0.15);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.1);
}

/* 📱 Mobile UI Premium Refinement - Global Scaling */
@media (max-width: 600px) {
    :root {
        --font-size-base: 13px;
        --ticker-height: 32px;
    }

    body {
        font-size: 13px;
        line-height: 1.5;
    }

    /* Hero Title Scaling */
    .hero-info-card h2 {
        font-size: 1.7rem !important;
        letter-spacing: -0.5px !important;
        line-height: 1.1 !important;
    }

    .hero-subtitle {
        font-size: 0.8rem !important;
    }

    /* Header Branding */
    .brand-logo {
        font-size: 1.4rem !important;
    }

    .doctor-subtext {
        font-size: 0.72rem !important;
    }

    /* Section Headers */
    .section-title,
    .manifesto-heading,
    .legacy-title {
        font-size: 1.6rem !important;
        margin-bottom: 6px !important;
        letter-spacing: -0.8px !important;
    }

    .section-desc,
    .manifesto-desc {
        font-size: 0.8rem !important;
        max-width: 95% !important;
        margin: 0 auto 20px !important;
    }

    /* Reviews */
    .quote-text {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }

    .signature {
        font-size: 1.3rem !important;
    }

    .legacy-story-body {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    /* Welcome Modal Compactness */
    .welcome-modal-content {
        padding: 30px 20px !important;
        border-radius: 25px !important;
        max-width: 88% !important;
    }

    .welcome-modal h2 {
        font-size: 1.4rem !important;
        margin-bottom: 10px !important;
    }

    .discount-value {
        font-size: 2.5rem !important;
        margin: 10px 0 !important;
        line-height: 1 !important;
    }

    .promo-code {
        padding: 10px !important;
        font-size: 0.9rem !important;
    }

    /* Product Detail Modal Mobile Flow */
    .product-modal-content {
        padding: 0 !important;
        max-width: 88% !important;
        border-radius: 20px !important;
        overflow: hidden;
    }

    .product-modal-body {
        display: flex !important;
        flex-direction: column !important;
        max-height: 85vh;
        overflow-y: auto;
        gap: 0 !important;
    }

    .product-modal-img {
        min-height: 250px !important;
        height: auto !important;
        width: 100% !important;
        border-radius: 0 !important;
        padding: 15px !important;
    }

    .product-modal-img img {
        max-height: 220px !important;
    }

    .product-modal-info {
        padding: 20px !important;
    }

    .product-modal-info h1 {
        font-size: 1.5rem !important;
        margin-top: 5px !important;
        margin-bottom: 12px !important;
        letter-spacing: -0.5px !important;
        line-height: 1.2 !important;
        color: var(--color-text-dark) !important;
    }

    .modal-price-row .new-price {
        font-size: 1.4rem !important;
    }

    .modal-rating-row .stars {
        font-size: 0.8rem !important;
    }

    .modal-rating-row .review-count {
        font-size: 0.75rem !important;
    }

    #modal-product-description {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        color: #666 !important;
    }

    /* Gallery Mobile Scaling */
    .product-gallery-thumbnails {
        display: none !important;
    }

    .gallery-nav {
        width: 30px;
        height: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .gallery-nav svg {
        width: 16px;
        height: 16px;
    }

    .gallery-nav.prev {
        left: 10px;
    }

    .gallery-nav.next {
        right: 10px;
    }

    /* Buttons Scaling */
    .btn {
        padding: 16px 24px !important;
        font-size: 0.9rem !important;
    }

    /* Compact Elements for Mobile Professionalism */
    .whatsapp-trigger {
        width: 50px !important;
        height: 50px !important;
    }

    .whatsapp-widget {
        bottom: 20px !important;
        right: 20px !important;
    }

    .top-ticker {
        font-size: 0.72rem !important;
        height: calc(var(--ticker-height-mobile, 35px) + var(--safe-area-top, 0px)) !important;
        line-height: var(--ticker-height-mobile, 35px) !important;
        padding-top: var(--safe-area-top, 0px) !important;
    }

    .back-to-top {
        width: 45px !important;
        height: 45px !important;
        bottom: 90px !important;
    }
}

/* Footer Payment Badges */
.pay-badge {
    padding: 8px 15px;
    background: #ffffff;
    border: 1px solid rgba(178, 34, 89, 0.1);
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 48px;
    box-shadow: 0 4px 15px rgba(178, 34, 89, 0.05);
}

.pay-badge svg {
    width: 38px;
    height: auto;
}

.pay-badge svg.paytm-icon {
    width: 55px;
}

.pay-icon-img {
    width: 32px;
    height: auto;
    border-radius: 6px;
}

@media (max-width: 600px) {
    .pay-badge-wrapper {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .pay-label {
        font-size: 0.6rem !important;
        text-align: center;
        width: 100%;
    }
}