/* ═══════════════════════════════════════════════════════════════
   VAMSI CRACKERS — Premium Design System
   Frontend-only. No backend changes.
   ═══════════════════════════════════════════════════════════════ */

/* ─── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
    /* Brand Colors */
    --v-primary: #FF6B35;
    --v-primary-dark: #E55A25;
    --v-primary-light: #FF8E5E;
    --v-primary-glow: rgba(255, 107, 53, 0.2);
    --v-accent: #1B1464;
    --v-accent-light: #2D2480;
    --v-indigo: #6366F1;
    --v-indigo-light: #818CF8;

    /* Semantic Colors */
    --v-success: #10B981;
    --v-warning: #F59E0B;
    --v-error: #EF4444;
    --v-info: #3B82F6;
    --v-whatsapp: #25D366;

    /* Neutrals */
    --v-white: #FFFFFF;
    --v-bg: #F8FAFC;
    --v-bg-alt: #F1F5F9;
    --v-surface: #FFFFFF;
    --v-surface-hover: #FAFBFC;
    --v-border: #E2E8F0;
    --v-border-light: #F1F5F9;
    --v-text: #1E293B;
    --v-text-secondary: #475569;
    --v-text-muted: #94A3B8;
    --v-dark: #0F172A;
    --v-dark-surface: #1E293B;

    /* Typography */
    --v-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --v-font-size-xs: 0.75rem;
    --v-font-size-sm: 0.875rem;
    --v-font-size-base: 1rem;
    --v-font-size-lg: 1.125rem;
    --v-font-size-xl: 1.25rem;
    --v-font-size-2xl: 1.5rem;
    --v-font-size-3xl: 1.875rem;
    --v-font-size-4xl: 2.25rem;
    --v-font-size-5xl: 3rem;
    --v-font-size-6xl: 3.75rem;

    /* Spacing */
    --v-space-1: 4px;
    --v-space-2: 8px;
    --v-space-3: 12px;
    --v-space-4: 16px;
    --v-space-5: 20px;
    --v-space-6: 24px;
    --v-space-8: 32px;
    --v-space-10: 40px;
    --v-space-12: 48px;
    --v-space-16: 64px;
    --v-space-20: 80px;
    --v-space-24: 96px;

    /* Border Radius */
    --v-radius-sm: 6px;
    --v-radius: 10px;
    --v-radius-md: 12px;
    --v-radius-lg: 16px;
    --v-radius-xl: 20px;
    --v-radius-2xl: 24px;
    --v-radius-full: 9999px;

    /* Shadows */
    --v-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --v-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --v-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --v-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --v-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --v-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --v-shadow-glow: 0 0 20px var(--v-primary-glow);

    /* Transitions */
    --v-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --v-ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --v-duration: 0.3s;
    --v-duration-fast: 0.15s;
    --v-duration-slow: 0.5s;

    /* Layout */
    --v-max-width: 1280px;
    --v-header-height: 72px;
    --v-trust-bar-height: 40px;
}

/* ─── Global Reset Overrides ────────────────────────────────── */
html,
body,
.v-redesign,
.v-redesign *,
.v-redesign *::before,
.v-redesign *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* The shared trust bar / navbar / footer / mobile nav are used on pages that
   DON'T carry the .v-redesign body class (cart, track-order). Force border-box
   on them everywhere so .v-container never overflows the screen. */
.v-trust-bar, .v-trust-bar *,
.v-navbar, .v-navbar *,
.v-mobile-nav, .v-mobile-nav *,
.v-mobile-bottom-nav, .v-mobile-bottom-nav *,
.v-footer, .v-footer *,
.v-container {
    box-sizing: border-box;
}

/* Same reason: links in the shared header/footer must never show the default
   underline on pages without .v-redesign (cart, track-order, etc.). */
.v-trust-bar a,
.v-navbar a,
.v-mobile-nav a,
.v-mobile-bottom-nav a,
.v-footer a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    overflow-x: hidden !important;
    max-width: 100vw;
}

.v-redesign {
    font-family: var(--v-font);
    color: var(--v-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--v-bg);
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

.v-redesign img {
    max-width: 100%;
    height: auto;
    display: block;
}

.v-redesign a {
    color: inherit;
    text-decoration: none;
}

/* ─── Container ─────────────────────────────────────────────── */
.v-container {
    width: 100%;
    max-width: var(--v-max-width);
    margin: 0 auto;
    padding: 0 var(--v-space-6);
}

/* ─── Section Spacing ───────────────────────────────────────── */
.v-section {
    padding: var(--v-space-20) 0;
    position: relative;
}

.v-section-sm {
    padding: var(--v-space-12) 0;
}

.v-section-lg {
    padding: var(--v-space-24) 0;
}

.v-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--v-space-12);
}

.v-section-kicker {
    display: inline-block;
    font-size: var(--v-font-size-sm);
    font-weight: 700;
    color: var(--v-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--v-space-3);
}

.v-section-title {
    font-size: var(--v-font-size-4xl);
    font-weight: 800;
    color: var(--v-text);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: var(--v-space-4);
}

.v-section-subtitle {
    font-size: var(--v-font-size-lg);
    color: var(--v-text-secondary);
    line-height: 1.6;
}

/* ─── Typography ────────────────────────────────────────────── */
.v-redesign h1,
.v-redesign h2,
.v-redesign h3,
.v-redesign h4,
.v-redesign h5,
.v-redesign h6 {
    font-family: var(--v-font);
    font-weight: 700;
    line-height: 1.2;
    color: inherit;
    /* Allow sections to control heading color */
}

/* Default color for light surfaces */
.v-section:not(.v-hero):not(.v-stats-section):not(.v-page-banner) h1,
.v-section:not(.v-hero):not(.v-stats-section):not(.v-page-banner) h2 {
    color: var(--v-text);
}

/* ─── Buttons ───────────────────────────────────────────────── */
.v-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--v-space-2);
    padding: 12px 28px;
    border: none;
    border-radius: var(--v-radius);
    font-family: var(--v-font);
    font-size: var(--v-font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--v-duration) var(--v-ease);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
}

.v-btn:hover {
    transform: translateY(-2px);
}

.v-btn:active {
    transform: translateY(0);
}

.v-btn-primary {
    background: linear-gradient(135deg, var(--v-primary), var(--v-primary-dark));
    color: var(--v-white) !important;
    box-shadow: 0 4px 14px rgba(255, 107, 107, 0.3);
}

.v-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.v-btn-accent {
    background: linear-gradient(135deg, var(--v-accent), var(--v-accent-light));
    color: var(--v-white) !important;
    box-shadow: 0 4px 14px rgba(27, 20, 100, 0.3);
}

.v-btn-accent:hover {
    box-shadow: 0 6px 20px rgba(27, 20, 100, 0.4);
}

.v-btn-whatsapp {
    background: linear-gradient(135deg, var(--v-whatsapp), #20BD5A);
    color: var(--v-white) !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.v-btn-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.v-btn-outline {
    background: transparent;
    color: var(--v-text);
    border: 2px solid var(--v-border);
}

.v-btn-outline:hover {
    border-color: var(--v-primary);
    color: var(--v-primary);
    background: var(--v-primary-glow);
}

.v-btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--v-white);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.v-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
}

.v-btn-lg {
    padding: 16px 36px;
    font-size: var(--v-font-size-base);
    border-radius: var(--v-radius-md);
}

.v-btn-sm {
    padding: 8px 18px;
    font-size: var(--v-font-size-xs);
}

.v-btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--v-radius-full);
}

/* ═══════════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════════ */
.v-trust-bar {
    background: var(--v-accent);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--v-font-size-xs);
    height: var(--v-trust-bar-height);
    display: flex;
    align-items: center;
    z-index: 1001;
    position: relative;
}

.v-trust-bar .v-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v-trust-bar-left {
    display: flex;
    align-items: center;
    gap: var(--v-space-6);
}

.v-trust-bar-left a,
.v-trust-bar-left span {
    display: flex;
    align-items: center;
    gap: var(--v-space-2);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    transition: color var(--v-duration-fast);
}

.v-trust-bar-left a:hover {
    color: var(--v-white);
}

.v-trust-bar-left i {
    font-size: 0.7rem;
    color: var(--v-primary-light);
}

.v-trust-bar-right {
    display: flex;
    align-items: center;
    gap: var(--v-space-6);
}

.v-trust-bar-right .v-trust-label {
    display: flex;
    align-items: center;
    gap: var(--v-space-2);
    font-weight: 600;
    color: var(--v-primary-light);
}

.v-trust-bar-right .v-trust-label .pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--v-success);
    border-radius: 50%;
    animation: vPulse 2s ease infinite;
}

@keyframes vPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

/* ═══════════════════════════════════════════════════════════════
   STICKY NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.v-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--v-white);
    height: var(--v-header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--v-border);
    transition: box-shadow var(--v-duration) var(--v-ease);
}

.v-navbar.scrolled {
    box-shadow: var(--v-shadow-md);
}

.v-navbar .v-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1440px;
    flex-wrap: nowrap;
}

.v-navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--v-space-3);
    text-decoration: none;
    flex-shrink: 0;
    margin-right: var(--v-space-4);
}

.v-navbar-brand img {
    height: 42px;
    width: auto;
    border-radius: var(--v-radius-sm);
}

.v-navbar-brand-text {
    display: flex;
    flex-direction: column;
}

.v-navbar-brand-name {
    font-size: var(--v-font-size-lg);
    font-weight: 800;
    color: var(--v-text);
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.v-navbar-brand-tagline {
    font-size: 0.65rem;
    color: var(--v-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.v-navbar-nav {
    display: flex;
    align-items: center;
    gap: var(--v-space-1);
    list-style: none;
    margin-left: auto;
    /* Push navigation and actions to the right */
    margin-right: var(--v-space-4);
    /* Add space between nav and action buttons */
}

.v-navbar-nav a {
    padding: 8px 12px;
    font-size: var(--v-font-size-sm);
    font-weight: 500;
    color: var(--v-text-secondary);
    border-radius: var(--v-radius);
    transition: all var(--v-duration-fast) var(--v-ease);
    display: flex;
    align-items: center;
    gap: 6px;
}

.v-navbar-nav a:hover,
.v-navbar-nav a.active {
    color: var(--v-primary);
    background: var(--v-primary-glow);
}

.v-navbar-actions {
    display: flex;
    align-items: center;
    gap: var(--v-space-2);
    flex-shrink: 0;
}

/* Navbar Search Support — only shown on large desktops (>=1200px) so the
   nav links + Track Order + WhatsApp button always fit without overflowing. */
.v-navbar-search {
    position: relative;
    display: none;
}

@media (min-width: 1200px) {
    .v-navbar-search {
        display: block;
    }
}

.v-navbar-search input {
    padding: 8px 16px 8px 36px;
    border-radius: var(--v-radius-full);
    border: 1px solid var(--v-border);
    background: var(--v-bg);
    font-size: var(--v-font-size-sm);
    color: var(--v-text);
    transition: all var(--v-duration) var(--v-ease);
    width: 170px;
}

.v-navbar-search input:focus {
    width: 200px;
    outline: none;
    border-color: var(--v-primary-light);
    box-shadow: 0 0 0 3px var(--v-primary-glow);
    background: var(--v-white);
}

.v-navbar-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--v-text-muted);
    pointer-events: none;
}

/* Hamburger */
.v-hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1002;
}

.v-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--v-text);
    border-radius: 2px;
    transition: all var(--v-duration) var(--v-ease);
}

.v-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.v-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.v-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Drawer */
.v-mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--v-duration) var(--v-ease);
}

.v-mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.v-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--v-white);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--v-duration) var(--v-ease);
    box-shadow: var(--v-shadow-xl);
    overflow-y: auto;
    visibility: hidden;
}

.v-mobile-nav.open {
    transform: translateX(0);
    visibility: visible;
}

.v-mobile-nav-header {
    padding: var(--v-space-6);
    border-bottom: 1px solid var(--v-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v-mobile-nav-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--v-bg);
    border-radius: var(--v-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--v-text);
}

.v-mobile-nav-links {
    padding: var(--v-space-4);
    list-style: none;
}

.v-mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: var(--v-space-3);
    padding: 14px 16px;
    font-size: var(--v-font-size-base);
    font-weight: 500;
    color: var(--v-text);
    border-radius: var(--v-radius);
    transition: all var(--v-duration-fast);
}

.v-mobile-nav-links a:hover,
.v-mobile-nav-links a.active {
    background: var(--v-primary-glow);
    color: var(--v-primary);
}

.v-mobile-nav-links a i {
    width: 20px;
    text-align: center;
    color: var(--v-text-muted);
}

.v-mobile-nav-links a:hover i,
.v-mobile-nav-links a.active i {
    color: var(--v-primary);
}

.v-mobile-nav-footer {
    padding: var(--v-space-6);
    margin-top: auto;
    border-top: 1px solid var(--v-border);
    display: flex;
    flex-direction: column;
    gap: var(--v-space-3);
}

.v-mobile-bottom-nav {
    display: none;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.v-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--v-accent) 0%, #2D1B69 50%, #1B1464 100%);
    overflow: hidden;
}

.v-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    /* Keep under content */
}

.v-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.v-hero .v-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--v-space-16);
    align-items: center;
    padding-top: var(--v-space-16);
    padding-bottom: var(--v-space-16);
}

/* ─── Slideshow Backgrounds ─── */
.v-hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.v-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.v-hero-slide.active {
    opacity: 0.35;
    /* Blend with gradient background */
}

.v-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(27, 20, 100, 0.7) 0%, rgba(15, 23, 42, 0.6) 100%);
}

/* ─── Hero Dots Navigation ─── */
.v-hero-dots {
    position: absolute;
    bottom: var(--v-space-6);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--v-space-2);
    z-index: 3;
}

.v-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--v-duration) var(--v-ease);
    padding: 0;
}

.v-hero-dot:hover,
.v-hero-dot.active {
    background: var(--v-primary);
    border-color: var(--v-primary);
    transform: scale(1.2);
}

.v-hero-content {
    color: var(--v-white);
}

.v-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--v-space-2);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: var(--v-radius-full);
    font-size: var(--v-font-size-xs);
    font-weight: 600;
    color: var(--v-primary-light);
    margin-bottom: var(--v-space-6);
    backdrop-filter: blur(8px);
}

.v-hero-title {
    font-size: var(--v-font-size-5xl);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: var(--v-space-5);
    color: var(--v-white) !important;
    /* Force white for clarity */
}

.v-hero-title .highlight {
    background: linear-gradient(135deg, var(--v-primary), var(--v-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v-hero-description {
    font-size: var(--v-font-size-lg);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: var(--v-space-8);
    max-width: 500px;
}

.v-hero-actions {
    display: flex;
    gap: var(--v-space-4);
    flex-wrap: wrap;
    margin-bottom: var(--v-space-8);
}

.v-hero-trust {
    display: flex;
    gap: var(--v-space-6);
    flex-wrap: wrap;
}

.v-hero-trust-item {
    display: flex;
    align-items: center;
    gap: var(--v-space-2);
    font-size: var(--v-font-size-sm);
    color: rgba(255, 255, 255, 0.7);
}

.v-hero-trust-item i {
    color: var(--v-primary-light);
    font-size: 0.8rem;
}

.v-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.v-hero-visual-box {
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(99, 102, 241, 0.15));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: vBlobFloat 8s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v-hero-visual-box i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}

.v-hero-visual-box img {
    width: 85%;
    height: 85%;
    object-fit: cover;
    border-radius: inherit;
}

.v-showcase-section {
    position: relative;
    background: #ffffff;
    padding: var(--v-space-20) 0;
    overflow: hidden;
}

.v-showcase-watermark {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: auto;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.v-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

@keyframes vBlobFloat {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }

    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

/* ═══════════════════════════════════════════════════════════════
   WELCOME / INTRO SECTION
   ═══════════════════════════════════════════════════════════════ */
.v-intro {
    background: var(--v-white);
}

.v-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--v-space-16);
    align-items: center;
}

.v-intro-text h2 {
    font-size: var(--v-font-size-3xl);
    font-weight: 800;
    margin-bottom: var(--v-space-4);
}

.v-intro-text p {
    color: var(--v-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--v-space-4);
}

.v-intro-image {
    background: var(--v-bg-alt);
    border-radius: var(--v-radius-xl);
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--v-border);
}

.v-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v-intro-image i {
    font-size: 4rem;
    color: var(--v-text-muted);
    opacity: 0.3;
}

/* ═══════════════════════════════════════════════════════════════
   WHY CHOOSE US — ICON CARDS (PARALLAX ENHANCED)
   ═══════════════════════════════════════════════════════════════ */
.v-parallax-section {
    position: relative;
    overflow: hidden;
    padding: var(--v-space-24) 0;
    background: #0f172a;
    /* Fallback dark color */
}

.v-parallax-bg {
    position: absolute;
    top: -20%;
    /* Extra height for scroll movement */
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    will-change: transform;
    opacity: 0.6;
    /* Soften the image contrast */
    pointer-events: none;
    /* Never block clicks */
}

.v-parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(15, 23, 42, 0.8) 0%,
            rgba(15, 23, 42, 0.6) 50%,
            rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.v-parallax-section .v-container {
    position: relative;
    z-index: 2;
}

.v-parallax-section .v-section-title {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.v-parallax-section .v-section-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.v-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--v-space-6);
}

.v-why-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--v-radius-lg);
    padding: var(--v-space-8) var(--v-space-6);
    text-align: center;
    transition: all var(--v-duration) var(--v-ease);
    position: relative;
    overflow: hidden;
}

.v-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--v-primary), var(--v-indigo));
    transform: scaleX(0);
    transition: transform var(--v-duration) var(--v-ease);
}

.v-why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--v-shadow-lg);
    border-color: transparent;
}

.v-why-card:hover::before {
    transform: scaleX(1);
}

.v-why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(99, 102, 241, 0.2));
    border-radius: var(--v-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--v-primary-light);
    margin: 0 auto var(--v-space-5);
    transition: all var(--v-duration) var(--v-ease);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.v-why-card:hover .v-why-icon {
    background: linear-gradient(135deg, var(--v-primary), var(--v-primary-dark));
    color: var(--v-white);
    transform: scale(1.1);
}

.v-why-card h3 {
    font-size: var(--v-font-size-base);
    font-weight: 700;
    margin-bottom: var(--v-space-2);
    color: var(--v-white);
}

.v-why-card p {
    font-size: var(--v-font-size-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   CATEGORY CARDS
   ═══════════════════════════════════════════════════════════════ */
.v-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--v-space-6);
}

.v-category-card {
    position: relative;
    border-radius: var(--v-radius-lg);
    overflow: hidden;
    background: var(--v-white);
    border: 1px solid var(--v-border);
    transition: all var(--v-duration) var(--v-ease);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.v-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--v-shadow-lg);
    border-color: transparent;
}

.v-category-card-image {
    height: 160px;
    background: linear-gradient(135deg, var(--v-bg-alt), var(--v-border));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.v-category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--v-duration-slow) var(--v-ease);
}

.v-category-card:hover .v-category-card-image img {
    transform: scale(1.08);
}

.v-category-card-image i {
    font-size: 2.5rem;
    color: var(--v-text-muted);
    opacity: 0.4;
}

.v-category-card-body {
    padding: var(--v-space-5);
}

.v-category-card-body h3 {
    font-size: var(--v-font-size-base);
    font-weight: 700;
    margin-bottom: var(--v-space-1);
}

.v-category-card-body p {
    font-size: var(--v-font-size-sm);
    color: var(--v-text-muted);
    margin-bottom: var(--v-space-3);
}

.v-category-card-link {
    font-size: var(--v-font-size-sm);
    font-weight: 600;
    color: var(--v-primary);
    display: flex;
    align-items: center;
    gap: var(--v-space-2);
    transition: gap var(--v-duration) var(--v-ease);
}

.v-category-card:hover .v-category-card-link {
    gap: var(--v-space-3);
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════════════════════ */
.v-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--v-space-6);
}

.v-product-card {
    background: var(--v-white);
    border-radius: var(--v-radius-lg);
    border: 1px solid var(--v-border);
    overflow: hidden;
    transition: all var(--v-duration) var(--v-ease);
    display: flex;
    flex-direction: column;
}

.v-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--v-shadow-lg);
    border-color: transparent;
}

.v-product-card-image {
    position: relative;
    height: 200px;
    background: var(--v-bg-alt);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--v-duration-slow);
}

.v-product-card:hover .v-product-card-image img {
    transform: scale(1.06);
}

.v-product-card-image i {
    font-size: 2.5rem;
    color: var(--v-text-muted);
    opacity: 0.3;
}

.v-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--v-error);
    color: var(--v-white);
    font-size: var(--v-font-size-xs);
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--v-radius-full);
}

.v-product-card-body {
    padding: var(--v-space-5);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.v-product-card-cat {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--v-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--v-space-1);
}

.v-product-card-body h3 {
    font-size: var(--v-font-size-base);
    font-weight: 600;
    margin-bottom: var(--v-space-1);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.v-product-card-desc {
    font-size: var(--v-font-size-sm);
    color: var(--v-text-muted);
    margin-bottom: var(--v-space-3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.v-product-pricing {
    display: flex;
    align-items: baseline;
    gap: var(--v-space-2);
    margin-bottom: var(--v-space-4);
    margin-top: auto;
}

.v-product-price-current {
    font-size: var(--v-font-size-xl);
    font-weight: 800;
    color: var(--v-text);
}

.v-product-price-original {
    font-size: var(--v-font-size-sm);
    color: var(--v-text-muted);
    text-decoration: line-through;
}

.v-product-card-actions {
    display: flex;
    gap: var(--v-space-2);
}

.v-product-card-actions .v-btn {
    flex: 1;
    font-size: var(--v-font-size-xs);
    padding: 10px 12px;
}

/* ═══════════════════════════════════════════════════════════════
   CTA / PRICELIST DOWNLOAD SECTION
   ═══════════════════════════════════════════════════════════════ */
.v-cta-banner {
    background: linear-gradient(135deg, var(--v-primary), var(--v-primary-dark));
    color: var(--v-white);
    border-radius: var(--v-radius-xl);
    padding: var(--v-space-12) var(--v-space-10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--v-space-8);
    position: relative;
    overflow: hidden;
}

.v-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.v-cta-banner-content {
    position: relative;
    z-index: 2;
}

.v-cta-banner-content h2 {
    font-size: var(--v-font-size-2xl);
    font-weight: 800;
    margin-bottom: var(--v-space-2);
    color: var(--v-white);
}

.v-cta-banner-content p {
    font-size: var(--v-font-size-base);
    opacity: 0.9;
}

.v-cta-banner-actions {
    position: relative;
    z-index: 2;
    display: flex;
    gap: var(--v-space-3);
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS — STEPS
   ═══════════════════════════════════════════════════════════════ */
.v-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--v-space-6);
    position: relative;
}

.v-steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--v-border);
    z-index: 0;
}

.v-step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.v-step-number {
    width: 56px;
    height: 56px;
    background: var(--v-white);
    border: 3px solid var(--v-primary);
    border-radius: var(--v-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--v-space-4);
    font-size: var(--v-font-size-lg);
    font-weight: 800;
    color: var(--v-primary);
    transition: all var(--v-duration) var(--v-ease);
}

.v-step-card:hover .v-step-number {
    background: var(--v-primary);
    color: var(--v-white);
    transform: scale(1.1);
}

.v-step-card h4 {
    font-size: var(--v-font-size-sm);
    font-weight: 700;
    margin-bottom: var(--v-space-1);
}

.v-step-card p {
    font-size: var(--v-font-size-xs);
    color: var(--v-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   SPECIALS / OFFERS CARDS
   ═══════════════════════════════════════════════════════════════ */
.v-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--v-space-6);
}

.v-offer-card {
    border-radius: var(--v-radius-lg);
    overflow: hidden;
    border: 1px solid var(--v-border);
    background: var(--v-white);
    transition: all var(--v-duration) var(--v-ease);
}

.v-offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--v-shadow-lg);
}

.v-offer-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--v-accent), var(--v-accent-light));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.v-offer-card-image i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.v-offer-card-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--v-primary);
    color: var(--v-white);
    font-size: var(--v-font-size-xs);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--v-radius-full);
}

.v-offer-card-body {
    padding: var(--v-space-5);
}

.v-offer-card-body h3 {
    font-size: var(--v-font-size-lg);
    font-weight: 700;
    margin-bottom: var(--v-space-2);
}

.v-offer-card-body p {
    font-size: var(--v-font-size-sm);
    color: var(--v-text-secondary);
    margin-bottom: var(--v-space-4);
    line-height: 1.5;
}

.v-offer-card-price {
    font-size: var(--v-font-size-lg);
    font-weight: 800;
    color: var(--v-primary);
    margin-bottom: var(--v-space-3);
}

/* ═══════════════════════════════════════════════════════════════
   TRUST STATS
   ═══════════════════════════════════════════════════════════════ */
.v-stats-section {
    background: var(--v-accent);
    color: var(--v-white);
}

.v-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--v-space-8);
    text-align: center;
}

.v-stat-item h3 {
    font-size: var(--v-font-size-4xl);
    font-weight: 900;
    color: var(--v-primary-light) !important;
    margin-bottom: var(--v-space-2);
}

.v-stat-item p {
    font-size: var(--v-font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PREVIEW
   ═══════════════════════════════════════════════════════════════ */
.v-contact-preview {
    background: var(--v-white);
    border: 1px solid var(--v-border);
    border-radius: var(--v-radius-xl);
    padding: var(--v-space-10);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: var(--v-space-8);
    align-items: center;
}

.v-contact-preview-item {
    display: flex;
    align-items: center;
    gap: var(--v-space-4);
}

.v-contact-preview-icon {
    width: 48px;
    height: 48px;
    background: var(--v-primary-glow);
    border-radius: var(--v-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--v-primary);
    flex-shrink: 0;
}

.v-contact-preview-item h4 {
    font-size: var(--v-font-size-sm);
    font-weight: 700;
    margin-bottom: 2px;
}

.v-contact-preview-item p {
    font-size: var(--v-font-size-sm);
    color: var(--v-text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.v-footer {
    background: var(--v-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--v-space-16) 0 0;
}

.v-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--v-space-10);
    padding-bottom: var(--v-space-12);
}

.v-footer-brand p {
    line-height: 1.7;
    margin-bottom: var(--v-space-5);
    font-size: var(--v-font-size-sm);
}

.v-footer-brand h3 {
    font-size: var(--v-font-size-xl);
    font-weight: 800;
    color: var(--v-white);
    margin-bottom: var(--v-space-4);
    display: flex;
    align-items: center;
    gap: var(--v-space-3);
}

.v-footer-brand h3 i {
    color: var(--v-primary);
}

.v-footer-social {
    display: flex;
    gap: var(--v-space-3);
}

.v-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--v-radius-full);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--v-duration-fast);
    font-size: 0.9rem;
}

.v-footer-social a:hover {
    background: var(--v-primary);
    color: var(--v-white);
    transform: translateY(-2px);
}

.v-footer-col h4 {
    font-size: var(--v-font-size-sm);
    font-weight: 700;
    color: var(--v-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--v-space-5);
}

.v-footer-col ul {
    list-style: none;
}

.v-footer-col ul li {
    margin-bottom: var(--v-space-3);
}

.v-footer-col ul a {
    font-size: var(--v-font-size-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--v-duration-fast);
    display: flex;
    align-items: center;
    gap: var(--v-space-2);
}

.v-footer-col ul a:hover {
    color: var(--v-primary-light);
    padding-left: 4px;
}

.v-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--v-space-3);
    margin-bottom: var(--v-space-4);
    font-size: var(--v-font-size-sm);
}

.v-footer-contact-item i {
    color: var(--v-primary-light);
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.v-footer-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--v-duration-fast);
}

.v-footer-contact-item a:hover {
    color: var(--v-primary-light);
}

.v-footer-disclaimer {
    margin-top: 28px;
    padding: 22px 26px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 122, 69, 0.22);
    border-left: 3px solid #ff7a45;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    line-height: 1.65;
}
.v-footer-disclaimer-head {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ff7a45;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.v-footer-disclaimer-head i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 122, 69, 0.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.v-footer-disclaimer p { margin: 0 0 10px; }
.v-footer-disclaimer p:last-child { margin-bottom: 0; }
.v-footer-disclaimer strong { color: #fff; font-weight: 700; }

.v-footer-disclaimer { overflow-wrap: anywhere; }

@media (max-width: 1024px) {
    /* Legal notice fits the screen neatly on tablet & phone */
    .v-footer-disclaimer-head { flex-wrap: wrap; line-height: 1.3; }
}
@media (max-width: 640px) {
    .v-footer-disclaimer {
        margin-top: 22px;
        padding: 16px 15px;
        font-size: 0.82rem;
        line-height: 1.6;
    }
    .v-footer-disclaimer-head { font-size: 0.72rem; gap: 8px; }
    /* Footer bottom (copyright + links) stacks and centers */
    .v-footer-bottom { text-align: center; justify-content: center; }
    .v-footer-bottom-links { justify-content: center; flex-wrap: wrap; gap: 14px; }
}

.v-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--v-space-6) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--v-space-4);
    margin-top: 22px;
}

.v-footer-bottom p {
    font-size: var(--v-font-size-xs);
    color: rgba(255, 255, 255, 0.4);
}

.v-footer-bottom-links {
    display: flex;
    gap: var(--v-space-5);
}

.v-footer-bottom-links a {
    font-size: var(--v-font-size-xs);
    color: rgba(255, 255, 255, 0.4);
    transition: color var(--v-duration-fast);
}

.v-footer-bottom-links a:hover {
    color: var(--v-primary-light);
}

/* ═══════════════════════════════════════════════════════════════
   PAGE BANNER (Subpages)
   ═══════════════════════════════════════════════════════════════ */
.v-page-banner {
    background: linear-gradient(135deg, var(--v-accent) 0%, #2D1B69 100%);
    padding: var(--v-space-12) 0;
    text-align: center;
    color: var(--v-white);
    position: relative;
    overflow: hidden;
}

.v-page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.v-page-banner h1 {
    font-size: var(--v-font-size-3xl);
    font-weight: 800;
    color: var(--v-white) !important;
    margin-bottom: var(--v-space-3);
    position: relative;
    z-index: 1;
}

.v-page-banner p {
    font-size: var(--v-font-size-base);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
    margin-bottom: var(--v-space-4);
}

.v-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--v-space-2);
    font-size: var(--v-font-size-sm);
    position: relative;
    z-index: 1;
}

.v-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--v-duration-fast);
}

.v-breadcrumb a:hover {
    color: var(--v-white);
}

.v-breadcrumb span {
    color: var(--v-primary-light);
}

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════════════════ */
.v-whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: auto;
    z-index: 9998;
}

/* ═══════════════════════════════════════════════════════════════
   ORDER NOW FLOATING CTA (bottom-right, blinking)
   ═══════════════════════════════════════════════════════════════ */
.v-ordernow-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    display: inline-block;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    cursor: pointer;
    text-decoration: none;
    animation: vOrderBlink 1.4s ease-in-out infinite;
    transition: transform 0.2s ease;
    filter: drop-shadow(0 8px 22px rgba(255, 90, 31, 0.45));
}
.v-ordernow-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 50%;
    pointer-events: none;
}
.v-ordernow-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 90, 31, 0.35);
    z-index: -1;
    animation: vOrderRipple 1.6s ease-out infinite;
}
.v-ordernow-float:hover {
    animation-play-state: paused;
    transform: scale(1.06);
    filter: drop-shadow(0 12px 28px rgba(255, 90, 31, 0.6));
}
@keyframes vOrderBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.85; transform: scale(0.96); }
}
@keyframes vOrderRipple {
    0%   { transform: scale(1); opacity: 0.55; }
    100% { transform: scale(1.55); opacity: 0; }
}

@media (max-width: 480px) {
    .v-ordernow-float {
        width: 64px;
        height: 64px;
        bottom: calc(82px + env(safe-area-inset-bottom));
        right: 14px;
    }
}

.v-whatsapp-float a {
    width: 56px;
    height: 56px;
    background: var(--v-whatsapp);
    border-radius: var(--v-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--v-white);
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--v-duration) var(--v-ease);
}

.v-whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════════════════ */
.v-back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 9996;
    width: 44px;
    height: 44px;
    background: var(--v-white);
    border: 1px solid var(--v-border);
    border-radius: var(--v-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--v-duration) var(--v-ease);
    box-shadow: var(--v-shadow-sm);
    color: var(--v-text);
    font-size: 0.9rem;
}

.v-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.v-back-to-top:hover {
    background: var(--v-primary);
    color: var(--v-white);
    border-color: transparent;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.v-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--v-ease), transform 0.6s var(--v-ease);
}

.v-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.v-reveal-delay-1 {
    transition-delay: 0.1s;
}

.v-reveal-delay-2 {
    transition-delay: 0.2s;
}

.v-reveal-delay-3 {
    transition-delay: 0.3s;
}

.v-reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --v-font-size-5xl: 2.5rem;
        --v-font-size-4xl: 2rem;
        --v-font-size-3xl: 1.5rem;
    }

    .v-navbar-nav {
        display: none;
    }

    .v-hamburger {
        display: flex;
    }

    .v-navbar-actions .v-btn-whatsapp {
        display: none !important;
        /* Strip out redundant WhatsApp button from header area */
    }

    .v-hero .v-container {
        grid-template-columns: 1fr;
    }

    .v-hero-visual {
        display: none;
    }

    .v-hero {
        min-height: 420px;
    }

    .v-intro-grid {
        grid-template-columns: 1fr;
    }

    .v-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v-offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .v-steps-grid::before {
        display: none;
    }

    .v-contact-preview {
        grid-template-columns: 1fr 1fr;
        gap: var(--v-space-5);
    }

    .v-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .v-cta-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 640px) {
    :root {
        --v-font-size-5xl: 2rem;
        --v-font-size-4xl: 1.75rem;
        --v-font-size-3xl: 1.375rem;
        --v-space-20: 56px;
        --v-space-24: 72px;
    }

    .v-container {
        padding: 0 var(--v-space-4);
    }

    .v-hamburger {
        display: none !important;
    }

    .v-mobile-nav,
    .v-mobile-nav-overlay {
        display: none !important;
    }

    /* Clear the fixed mobile bottom nav on EVERY storefront page (cart, checkout,
       track, etc.) so the footer never sits behind it.
       !important is required: `.v-redesign` (line ~153) sets `padding: 0
       !important` and also matches <body>, so without it this rule is silently
       dropped and the footer renders underneath the nav. */
    body.v-redesign,
    body.cart-page,
    body.track-page,
    body.aa-page,
    body.coupons-page {
        padding-bottom: calc(68px + env(safe-area-inset-bottom)) !important;
    }

    .v-mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10000;
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        min-height: calc(64px + env(safe-area-inset-bottom));
        padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
        gap: 4px;
        background: linear-gradient(180deg, rgba(32, 22, 99, 0.97), rgba(15, 11, 64, 0.99));
        -webkit-backdrop-filter: saturate(160%) blur(12px);
        backdrop-filter: saturate(160%) blur(12px);
        border-top: 1px solid rgba(255, 122, 69, 0.32);
        box-shadow: 0 -12px 32px rgba(15, 23, 42, 0.32);
    }

    .v-mobile-bottom-nav a {
        position: relative;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        color: rgba(255, 255, 255, 0.68);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        line-height: 1.05;
        text-align: center;
        text-decoration: none;
        border-radius: 12px;
        padding: 6px 4px;
        transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
    }

    .v-mobile-bottom-nav a i {
        font-size: 1.15rem;
        line-height: 1;
        transition: transform 0.25s cubic-bezier(0.32, 0.72, 0, 1);
    }

    .v-mobile-bottom-nav a:hover {
        color: rgba(255, 255, 255, 0.92);
    }

    .v-mobile-bottom-nav a.active {
        color: #fff;
        background: linear-gradient(135deg, rgba(255, 122, 69, 0.22), rgba(255, 90, 31, 0.12));
    }

    .v-mobile-bottom-nav a.active i {
        color: #ff7a45;
        transform: translateY(-2px) scale(1.08);
        filter: drop-shadow(0 6px 10px rgba(255, 122, 69, 0.45));
    }

    .v-mobile-bottom-nav a span {
        overflow: hidden;
        max-width: 100%;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-weight: 600;
    }
    .v-mobile-bottom-nav a.active span { font-weight: 800; }

    .v-trust-bar {
        font-size: 0.65rem;
    }

    .v-trust-bar-right {
        display: none !important;
    }

    .v-trust-bar-left a:nth-child(2),
    .v-trust-bar-left span {
        display: none !important;
        /* Hide WhatsApp and Dealer text in trust bar on mobile */
    }

    .v-navbar-brand-tagline {
        display: none;
    }

    .v-navbar-actions .v-btn-whatsapp,
    .v-navbar-actions .v-btn-outline {
        /* Hide WhatsApp in header, keep Enquiry as icon only or smaller */
    }

    .v-navbar-actions .v-btn-whatsapp {
        display: none !important;
        /* Hide WhatsApp button in header on mobile */
    }

    .v-navbar-actions .v-btn-outline {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    /* Force strict overflow-x bounds on mobile */
    html,
    body,
    .v-redesign {
        overflow-x: hidden !important;
        max-width: 100vw;
    }

    .v-hero {
        min-height: 380px;
    }

    .v-hero-actions {
        flex-direction: column;
    }

    .v-hero-actions .v-btn {
        width: 100%;
    }

    .v-why-grid {
        grid-template-columns: 1fr;
    }

    .v-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .v-offers-grid {
        grid-template-columns: 1fr;
    }

    .v-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--v-space-6);
    }

    .v-steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .v-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--v-space-4);
    }

    .v-contact-preview {
        grid-template-columns: 1fr;
        padding: var(--v-space-6);
    }

    .v-footer-grid {
        grid-template-columns: 1fr;
        gap: var(--v-space-8);
    }

    .v-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .v-section-title {
        font-size: var(--v-font-size-2xl);
    }

    .v-product-card-image {
        height: 140px;
    }

    .v-whatsapp-float {
        bottom: calc(88px + env(safe-area-inset-bottom));
        left: 16px;
        right: auto;
    }

    .v-whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .v-ordernow-float {
        bottom: calc(88px + env(safe-area-inset-bottom));
        right: 16px;
        width: 72px;
        height: 72px;
    }

    .v-back-to-top {
        bottom: calc(150px + env(safe-area-inset-bottom));
        right: 16px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 380px) {
    .v-products-grid {
        grid-template-columns: 1fr;
    }

    .v-categories-grid {
        grid-template-columns: 1fr;
    }
}
/* REFINED SHOWCASE STYLES */
.v-showcase-section { position: relative; padding: 100px 0; background: #fff; text-align: center; }
.v-showcase-watermark { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 700px; opacity: 0.1; pointer-events: none; }
.v-showcase-section .v-section-title { color: #004ac9 !important; font-size: 3rem; margin-bottom: 40px; position: relative; display: inline-block; }
.v-showcase-section .v-section-title::after { content: ''; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: #ff0000; }
.v-showcase-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px 30px; margin-top: 60px; text-align: left; }
.v-showcase-card { display: flex; align-items: center; gap: 20px; text-decoration: none; color: inherit; }
.v-showcase-image-wrap { position: relative; width: 130px; height: 130px; background: #fff; border: 1px solid #eee; display: flex; align-items: center; justify-content: center; padding: 15px; flex-shrink: 0; }
.v-showcase-image-wrap::before { content: ''; position: absolute; bottom: -8px; left: -8px; width: 40px; height: 40px; border-left: 2px solid #ff0000; border-bottom: 2px solid #ff0000; z-index: -1; }
.v-showcase-content h3 { color: #ff0000 !important; font-size: 1.4rem; margin-bottom: 5px; font-weight: 700; }
.v-showcase-content p { font-size: 0.9rem; color: #666; line-height: 1.5; }
.v-btn-showcase-shop { background: #ff0000; color: #fff !important; padding: 18px 60px; font-size: 1.2rem; font-weight: 800; text-transform: uppercase; clip-path: polygon(15% 0, 100% 0, 85% 100%, 0% 100%); margin-top: 60px; display: inline-block; transition: 0.3s; }
@media (max-width: 992px) { .v-showcase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .v-showcase-grid { grid-template-columns: 1fr; } .v-showcase-card { flex-direction: column; text-align: center; } .v-showcase-watermark { width: 350px; } }

/* Accessibility: visually-hidden but available to screen readers (form labels). */
.v-visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
