:root {
    /* Wix-Inspired Minimalist Palette */
    --primary-blue: #1A73E8;
    --primary-blue-hover: #1557b0;
    --bg-gradient: linear-gradient(135deg, #fce4ec 0%, #e1f5fe 50%, #fff9c4 100%);
    --bg-soft: #f8f9fa;
    --surface-white: #ffffff;
    --surface-glass: rgba(255, 255, 255, 0.7);
    --surface-border: rgba(0, 0, 0, 0.05);
    
    --text-primary: #1A1A1A;
    --text-secondary: #424242;
    --text-muted: #616161;
    
    --footer-bg: #F3E5F5; /* Light Lavender */
    --footer-text: #1A1A1A;
    
    --radius-xl: 40px;
    --radius-lg: 24px;
    --radius-pill: 50px;
}

html, body {
    background: var(--bg-gradient) !important;
    background-attachment: fixed;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background: var(--bg-gradient) !important;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

/* Glassmorphism utility - Updated for Wix */
.glass {
    background: var(--surface-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent !important;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-content {
    text-align: left;
    z-index: 10;
}

.hero-visual-container {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hero-card {
    background: var(--surface-white);
    padding: 80px 40px;
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: calc(var(--radius-xl) + 20px);
    pointer-events: none;
    z-index: -1;
}

.gradient-text {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tech-orbit-container {
    position: absolute;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.tech-sphere {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, #1A237E, #1565C0, #000);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(26, 115, 232, 0.5), inset -20px -20px 60px rgba(0,0,0,0.6);
    position: relative;
    z-index: 2;
    animation: floatingSphere 6s infinite ease-in-out, spherePulse 4s infinite alternate ease-in-out;
}

@keyframes spherePulse {
    0% { filter: brightness(1) drop-shadow(0 0 20px rgba(26, 115, 232, 0.3)); }
    100% { filter: brightness(1.2) drop-shadow(0 0 40px rgba(26, 115, 232, 0.5)); }
}

@keyframes floatingSphere {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.orbit-ring {
    position: absolute;
    border: 3px solid rgba(26, 115, 232, 0.7);
    border-radius: 50%;
    animation: rotateOrbit linear infinite;
    backdrop-filter: blur(4px);
}

.orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #4CC9FE;
    border-radius: 50%;
    box-shadow: 0 0 20px #4CC9FE, 0 0 40px #4CC9FE;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-1 { width: 320px; height: 130px; animation-duration: 8s; transform: rotateX(70deg) rotateY(15deg); border-color: rgba(26, 115, 232, 0.7); }
.orbit-2 { width: 380px; height: 180px; animation-duration: 12s; transform: rotateX(60deg) rotateY(-25deg); animation-direction: reverse; border-color: rgba(255, 64, 129, 0.6); }
.orbit-3 { width: 440px; height: 160px; animation-duration: 18s; transform: rotateX(80deg) rotateY(35deg); border-color: rgba(63, 81, 181, 0.7); }
.orbit-4 { width: 300px; height: 300px; animation-duration: 10s; transform: rotateX(45deg); border-style: solid; border-width: 1px; border-color: rgba(76, 201, 254, 0.5); }

@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    text-decoration: none;
    gap: 10px;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(17, 110, 227, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: rgba(0,0,0,0.05);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    margin-top: 20px;
}

.btn-whatsapp i {
    margin-right: 12px;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Product Cards */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

/* Section titles on dark */
.section-title h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary) !important;
    letter-spacing: -1px;
}
.section-title .underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-blue);
    margin: 20px auto 0;
}

.card {
    background: var(--surface-white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

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

.gallery-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
    pointer-events: none;
    z-index: 5;
}

.nav-arrow {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s;
    opacity: 0;
    font-size: 0.8rem;
}

.gallery-wrapper:hover .nav-arrow {
    opacity: 1;
}

.nav-arrow:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: scale(1.1);
}

.gallery-container {
    width: 100%;
    height: 300px;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0;
    margin-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    border-radius: 15px;
}

.gallery-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.gallery-container img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    scroll-snap-align: center;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: zoom-in;
}

.gallery-container img:hover {
    transform: scale(1.15); /* Zoom in as requested */
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-blue);
    width: 20px;
    border-radius: 10px;
}

.card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 15px 0 10px;
}

.card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Responsive Grid */
.grid {
    display: grid;
    gap: 50px;
}
@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Feature Section & Reviews */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 70px;
}

.feature-box {
    background: var(--surface-white);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.feature-box h3 {
    color: var(--text-primary) !important;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-box p {
    color: var(--text-secondary) !important;
    font-size: 1rem;
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.review-card {
    background: var(--surface-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.review-card p {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary) !important;
    margin: 0;
    font-weight: 500;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card .stars {
    color: #ffcc00;
    font-size: 0.9rem;
    display: flex;
    gap: 3px;
}

.review-card p {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
    font-weight: 500;
}

.review-card .user {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card .avatar {
    font-size: 2.5rem;
    color: var(--text-muted);
    display: flex;
}

.review-card .user-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-card .name {
    font-weight: 700;
    font-size: 1rem;
}

.review-card .badge-verified {
    font-size: 0.75rem;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 100px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 80px;
}

.footer-links h4 {
    margin-bottom: 30px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 20px;
}

.footer-links ul li a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    display: inline-block;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 100px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.95rem;
}
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 76%;
    height: 100vh;
    background: white;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: -10px 0 50px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    padding: 10px 0;
    display: block;
}

.mobile-nav a:active {
    color: var(--primary-blue);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .container {
        padding: 0 25px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
    color: var(--text-primary);
    }
    
    .grid-3, .grid-4 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Small Device Polish (Phones) */
@media (max-width: 480px) {
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .tech-sphere {
        width: 150px;
        height: 150px;
    }
}

/* Large Device Polish (Ultra-wide) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .gradient-text {
        font-size: 4.5rem;
    }
}

/* Contact Section Styles */
#contact {
    background: transparent;
}

.contact-info, .contact-form {
    height: 100%;
}

.contact-info p {
    color: var(--text-secondary) !important;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    font-size: 1.4rem;
    width: 25px;
    color: var(--primary-blue);
}

.contact-form form input, 
.contact-form form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--surface-white);
    color: var(--text-primary);
    margin-bottom: 20px;
    outline: none;
    transition: all 0.3s;
}

.contact-form form input:focus, 
.contact-form form textarea:focus {
    border-color: var(--primary-blue);
    background: var(--surface-white);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-orange);
    color: white;
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-ai {
    background: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ai-spec {
    font-size: 0.8rem;
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary-blue);
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
    font-weight: 600;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

/* Neural Background Overlay */
.neural-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(0, 210, 255, 0.05) 0%, transparent 10%),
        radial-gradient(circle at 90% 90%, rgba(0, 122, 255, 0.05) 0%, transparent 10%),
        radial-gradient(circle at 50% 10%, rgba(0, 210, 255, 0.03) 0%, transparent 15%);
    background-size: 100px 100px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
    animation: neuralPulse 10s infinite alternate ease-in-out;
}

@keyframes neuralPulse {
    0% { opacity: 0.2; transform: scale(1); }
    100% { opacity: 0.5; transform: scale(1.05); }
}


/* Section Specific Backgrounds */
.features-section {
    background: transparent; /* Remove specific background */
}

.reviews-section {
    background: transparent; /* Remove specific background */
}

/* Adjusting padding and contrast for section-specific themes */
.features-section .section-title h2 { color: var(--text-primary) !important; }
.features-section .underline { background: var(--gradient-blue) !important; }
/* Vibrant Text Styles */
.vibrant-text {
    color: var(--primary-blue);
    font-weight: 500;
    line-height: 1.8;
}

/* Contact Section Fixes */
.contact-info {
    padding: 60px !important; /* De-congesting */
}

.contact-item {
    margin-bottom: 40px; /* Better spacing */
}

/* FAQ Section */
.faq-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contact-info {
        padding: 30px !important;
    }
}

/* Abstract Tech Orbits */
.tech-orbit-container {
    position: absolute;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.orbit-core {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.6), transparent);
    border-radius: 50%;
    filter: blur(10px);
    box-shadow: 0 0 30px rgba(26, 115, 232, 0.3);
}

.orbit-ring {
    position: absolute;
    border: 1.5px solid rgba(0, 210, 255, 0.3);
    border-radius: 50%;
    animation: rotateOrbit linear infinite;
}

.orbit-ring::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-blue);
}

@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Orbit Variations */
.orbit-1 { width: 150px; height: 80px; animation-duration: 8s; color: #007aff; border-color: rgba(0, 122, 255, 0.1); transform: rotate(45deg); }
.orbit-2 { width: 220px; height: 120px; animation-duration: 12s; color: #0051ff; border-color: rgba(0, 81, 255, 0.1); transform: rotate(-30deg); animation-direction: reverse; }
.orbit-3 { width: 280px; height: 160px; animation-duration: 15s; color: #00c6ff; border-color: rgba(0, 198, 255, 0.1); transform: rotate(15deg); }

/* Placement Modifiers */
.pos-hero { top: 10%; right: 5%; transform: scale(1.2); }
.pos-faq { top: 20%; left: -50px; transform: scale(0.8) rotate(90deg); }
.pos-contact { bottom: 5%; right: 2%; transform: scale(0.9); }
.pos-footer { top: -100px; right: 10%; opacity: 0.3; }

@media (max-width: 991px) {
    .tech-orbit-container { display: none; } /* Hide decorative orbits on small screens */
    section { padding: 80px 0; }
    .hero { padding-top: 120px; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; gap: 30px; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-btns { justify-content: center; }
}

@media (max-width: 768px) {
    .gradient-text { font-size: 2.8rem; }
    .section-title h2 { font-size: 2.2rem; }
    .card { padding: 20px; }
    .gallery-nav { display: flex !important; opacity: 1 !important; } /* Always show arrows on mobile */
    .nav-arrow { width: 35px; height: 35px; font-size: 0.9rem; }
    .contact-info { padding: 30px !important; }
}

@media (max-width: 480px) {
    .gradient-text { font-size: 2.2rem; }
    .section-title h2 { font-size: 1.8rem; }
    .btn { padding: 12px 25px; width: 100%; text-align: center; }
    .hero-btns { flex-direction: column; gap: 15px; }
}

/* ==========================================
   E-COMMERCE & RAZORPAY PAYMENT STYLES
   ========================================== */

/* Product Card Pricing & Buttons */
.card-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.card-price .original-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 500;
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 15px;
}

@media (min-width: 481px) {
    .card-actions {
        grid-template-columns: 1fr 1fr;
    }
}

.card-actions .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    width: 100%;
}

.btn-buy-now {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0051ff 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.2);
}

.btn-buy-now:hover {
    background: linear-gradient(135deg, var(--primary-blue-hover) 0%, #0040cc 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.35);
}

.btn-add-to-cart {
    background: rgba(26, 115, 232, 0.08);
    color: var(--primary-blue);
    border: 1.5px solid rgba(26, 115, 232, 0.2);
}

.btn-add-to-cart:hover {
    background: rgba(26, 115, 232, 0.15);
    border-color: rgba(26, 115, 232, 0.4);
    transform: translateY(-2px);
}

.btn-whatsapp-outline {
    background: transparent;
    color: #25d366;
    border: 1.5px solid rgba(37, 211, 102, 0.3);
    margin-top: 5px;
}

.btn-whatsapp-outline:hover {
    background: rgba(37, 211, 102, 0.08);
    border-color: #25d366;
    transform: translateY(-2px);
}

/* Floating Cart Trigger & Navigation Cart Icon */
.header-cart-btn {
    position: relative;
    background: rgba(26, 115, 232, 0.1);
    border: none;
    color: var(--primary-blue);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    margin-left: 15px;
}

.header-cart-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff3366;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid white;
    box-shadow: 0 3px 10px rgba(255, 51, 102, 0.3);
    animation: cartPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.5);
}

@keyframes cartPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.floating-cart-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0051ff 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.4);
    z-index: 998;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.4rem;
}

.floating-cart-trigger:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.5);
}

.floating-cart-trigger.hidden {
    transform: scale(0) translateY(100px);
    opacity: 0;
    pointer-events: none;
}

/* Modal Drawer Overlay Backdrops */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Shopping Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--surface-white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 1003;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-soft);
}

.cart-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cart-close-btn {
    background: transparent;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.cart-close-btn:hover {
    color: var(--primary-blue);
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-empty-state {
    text-align: center;
    margin: auto;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cart-empty-state i {
    font-size: 3.5rem;
    color: rgba(26, 115, 232, 0.2);
}

.cart-empty-state p {
    font-size: 1rem;
    font-weight: 500;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    align-items: center;
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: contain;
    background: var(--bg-soft);
    padding: 5px;
    border: 1px solid rgba(0,0,0,0.03);
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cart-item-price {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.08);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.qty-val {
    font-weight: 700;
    font-size: 0.9rem;
    min-width: 15px;
    text-align: center;
}

.cart-item-remove {
    background: transparent;
    border: none;
    color: rgba(255, 51, 102, 0.6);
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 5px;
}

.cart-item-remove:hover {
    color: #ff3366;
}

.cart-footer {
    padding: 25px;
    background: var(--bg-soft);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cart-summary-line.total {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.cart-checkout-btn {
    width: 100%;
    margin-top: 15px;
    padding: 16px;
    font-size: 1.05rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0051ff 100%);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
}

/* Billing & Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 500px;
    background: var(--surface-white);
    border-radius: var(--radius-lg);
    z-index: 1004;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.checkout-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.checkout-header {
    padding: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-soft);
}

.checkout-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
}

.checkout-close-btn {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.checkout-body {
    padding: 25px;
}

.checkout-form-group {
    margin-bottom: 18px;
}

.checkout-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-form-group input,
.checkout-form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    background: var(--bg-soft);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

.checkout-form-group input:focus,
.checkout-form-group textarea:focus {
    background: white;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(26, 115, 232, 0.1);
}

.checkout-order-summary {
    background: var(--bg-soft);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(0,0,0,0.03);
}

.checkout-order-summary h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.checkout-pay-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0051ff 100%);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
    position: relative;
    overflow: hidden;
}

.checkout-pay-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success Receipt Overlay */
.receipt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    z-index: 1005;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 20px;
}

.receipt-overlay.active {
    opacity: 1;
    visibility: visible;
}

.receipt-card {
    background: white;
    width: 100%;
    max-width: 650px;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    padding: 45px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    margin: auto;
    animation: receiptSlideUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes receiptSlideUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.receipt-success-icon {
    width: 80px;
    height: 80px;
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 25px;
    border: 2px solid rgba(37, 211, 102, 0.2);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
}

.receipt-success-icon svg {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: drawCheck 0.8s ease-in-out forwards 0.3s;
}

@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

.receipt-header {
    text-align: center;
    margin-bottom: 40px;
}

.receipt-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.receipt-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.receipt-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding-bottom: 30px;
    border-bottom: 1.5px dashed rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.receipt-info-block span {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.receipt-info-block strong {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.receipt-items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 30px;
    border-bottom: 1.5px dashed rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.receipt-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.receipt-item-row.head {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    padding-bottom: 5px;
}

.receipt-item-name {
    color: var(--text-primary);
    font-weight: 600;
}

.receipt-item-qty {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 8px;
}

.receipt-totals {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 35px;
}

.receipt-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.receipt-total-row.grand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.receipt-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 480px) {
    .receipt-actions {
        grid-template-columns: 1fr 1fr;
    }
}

.receipt-actions .btn {
    padding: 15px;
    font-size: 1rem;
    border-radius: var(--radius-pill);
}

.btn-whatsapp-verify {
    background: #25d366;
    color: white;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-verify:hover {
    background: #20ba56;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-print-receipt {
    background: var(--bg-soft);
    color: var(--text-primary);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
}

.btn-print-receipt:hover {
    background: rgba(0,0,0,0.03);
}

.btn-continue-shopping {
    grid-column: 1 / -1;
    background: transparent;
    color: var(--primary-blue);
    font-size: 0.95rem;
    padding: 10px;
    margin-top: 10px;
}

.btn-continue-shopping:hover {
    color: var(--primary-blue-hover);
    text-decoration: underline;
    transform: none;
    box-shadow: none;
}

/* Confetti Container */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1006;
}

/* Print Invoice Styling */
@media print {
    body * {
        visibility: hidden;
    }
    .receipt-overlay, .receipt-overlay *, .receipt-card, .receipt-card * {
        visibility: visible;
    }
    .receipt-overlay {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: white !important;
        padding: 0 !important;
        overflow: visible;
    }
    .receipt-card {
        box-shadow: none !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
        max-width: 100% !important;
    }
    .receipt-actions, .btn-continue-shopping, #confetti-canvas {
        display: none !important;
    }
}

