/* -------------------------------------------------------------
   MobiShield Premium E-Commerce Stylesheet (Vanilla CSS)
   Theme: Apple-inspired Clean Dark + Glassmorphism
------------------------------------------------------------- */

:root {
    --bg-dark: #070913;
    --bg-darker: #030408;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 210, 255, 0.4);
    
    /* Neon gradients & glows */
    --primary: #00d2ff;
    --primary-gradient: linear-gradient(135deg, #00d2ff 0%, #0066ff 100%);
    --secondary: #7000ff;
    --secondary-gradient: linear-gradient(135deg, #7000ff 0%, #aa00ff 100%);
    --accent: #ff007f;
    --accent-gradient: linear-gradient(135deg, #ff007f 0%, #ff00ff 100%);
    
    /* Glow utilities */
    --primary-glow: rgba(0, 210, 255, 0.15);
    --secondary-glow: rgba(112, 0, 255, 0.15);
    --accent-glow: rgba(255, 0, 127, 0.15);
    
    /* Typography */
    --text-main: #f5f6f9;
    --text-muted: #8e9bb4;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Animations */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-glow: 0 0 25px var(--primary-glow);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

/* Background Glowing Orbs */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.35;
}
.orb-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary-glow);
    animation: pulse-glow 15s infinite alternate;
}
.orb-2 {
    top: 35%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: var(--secondary-glow);
    animation: pulse-glow 18s infinite alternate-reverse;
}
.orb-3 {
    bottom: -5%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: var(--accent-glow);
    animation: pulse-glow 12s infinite alternate;
}

@keyframes pulse-glow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.25; }
    50% { transform: scale(1.15) translate(40px, -40px); opacity: 0.45; }
    100% { transform: scale(0.9) translate(-40px, 40px); opacity: 0.25; }
}

/* Layout Utilities */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
}
.glass-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 8px 32px 0 rgba(0, 210, 255, 0.05);
}

/* Navigation Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 9, 19, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: var(--transition);
}
.navbar.scrolled {
    padding: 0.7rem 0;
    background: rgba(3, 4, 8, 0.9);
    border-bottom-color: rgba(0, 210, 255, 0.2);
}
.nav-container {
    max-width: 1800px;
    width: 96%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}
.logo svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}
.logo:hover {
    transform: scale(1.02);
}
.highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    box-shadow: 0 0 8px var(--primary);
}
.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nav-icon-btn {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}
.nav-icon-btn svg {
    filter: drop-shadow(0 0 2px rgba(0, 210, 255, 0.1));
    transition: var(--transition);
}
.nav-icon-btn:hover {
    background: rgba(0, 210, 255, 0.08);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.nav-icon-btn:hover svg {
    filter: drop-shadow(0 0 6px rgba(0, 210, 255, 0.5));
}
.badge-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 10px;
    border: 2px solid var(--bg-dark);
    min-width: 16px;
    text-align: center;
    box-shadow: 0 0 8px rgba(255, 0, 127, 0.4);
}

.user-profile-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
}
.user-profile-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.nav-cta-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 20px;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}
.mobile-menu-toggle:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* Button UI System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    gap: 0.5rem;
}
.btn-primary {
    background: var(--primary-gradient);
    color: var(--bg-darker);
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 210, 255, 0.35);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-main);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.btn-accent {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.2);
}
.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 127, 0.35);
}
.btn-block {
    display: flex;
    width: 100%;
}
.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 3rem;
    position: relative;
}
.hero-container {
    max-width: 1800px;
    width: 96%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-badge {
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.2);
    color: var(--primary);
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}
.hero-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 540px;
}

/* Checklist features */
.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 2.2rem;
    width: 100%;
}
.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}
.hero-feature-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Premium Phone Mockup in CSS */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-mockup {
    width: 100%;
    max-width: 310px;
    height: auto;
    aspect-ratio: 1 / 2;
    max-height: 75vh;
    background: #020306;
    border-radius: 44px;
    border: 9px solid #1c202e;
    position: relative;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 210, 255, 0.1);
    overflow: hidden;
}
.phone-speaker {
    width: 80px;
    height: 4px;
    background: #2b3043;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.phone-camera {
    width: 12px;
    height: 12px;
    background: #111422;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: inset 0 1px 3px rgba(255,255,255,0.2);
}
.phone-screen {
    width: 100%;
    height: 100%;
    position: relative;
    background: radial-gradient(circle at 50% 50%, #0c122c, #030409);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
.phone-glow-mesh {
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(0, 210, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(112, 0, 255, 0.15) 0%, transparent 40%);
    animation: rotate-mesh 20s linear infinite;
    pointer-events: none;
}
.phone-content-inner {
    text-align: center;
    z-index: 2;
}
.phone-shield-icon {
    width: 90px;
    height: 90px;
    background: rgba(0, 210, 255, 0.06);
    border: 1.5px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.25);
    animation: shield-pulse 3s infinite alternate;
}
.phone-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.phone-status-pill {
    background: rgba(0, 210, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 210, 255, 0.3);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    animation: pulse-border-glow 2s infinite;
}

/* Liquid bonding waves */
.liquid-wave {
    position: absolute;
    bottom: -10%;
    left: -20%;
    width: 140%;
    height: 50%;
    background: rgba(0, 210, 255, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 40% 45% 42% 40%;
    animation: wave-motion 8s linear infinite;
    z-index: 1;
}
.liquid-wave-2 {
    position: absolute;
    bottom: -15%;
    left: -15%;
    width: 130%;
    height: 50%;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 43% 38% 40% 45%;
    animation: wave-motion 12s linear infinite reverse;
    z-index: 1;
}

@keyframes rotate-mesh {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes shield-pulse {
    0% { transform: scale(1); box-shadow: 0 0 15px rgba(0, 210, 255, 0.2); }
    100% { transform: scale(1.08); box-shadow: 0 0 35px rgba(0, 210, 255, 0.4); }
}
@keyframes pulse-border-glow {
    0% { border-color: rgba(0, 210, 255, 0.3); box-shadow: 0 0 5px rgba(0, 210, 255, 0.1); }
    50% { border-color: var(--primary); box-shadow: 0 0 15px rgba(0, 210, 255, 0.3); }
    100% { border-color: rgba(0, 210, 255, 0.3); box-shadow: 0 0 5px rgba(0, 210, 255, 0.1); }
}
@keyframes wave-motion {
    0% { transform: rotate(0deg) translateY(0); }
    50% { transform: rotate(180deg) translateY(-10px); }
    100% { transform: rotate(360deg) translateY(0); }
}

/* Trust Badges Section */
.trust-badges {
    padding: 3rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.01);
}
.badges-container {
    max-width: 1800px;
    width: 96%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1 1 200px;
}
.badge-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(0, 210, 255, 0.03);
    border: 1.5px solid rgba(0, 210, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
    box-shadow: inset 0 0 12px rgba(0, 210, 255, 0.15);
    transition: var(--transition);
}
.badge-item:hover .badge-icon {
    background: rgba(0, 210, 255, 0.08);
    border-color: var(--primary);
    box-shadow: inset 0 0 16px rgba(0, 210, 255, 0.25), 0 0 15px rgba(0, 210, 255, 0.25);
    transform: translateY(-3px) rotate(5deg);
}
.badge-text h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}
.badge-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Product Section */
.shop {
    padding: 6rem 2rem;
    max-width: 1800px;
    width: 96%;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}
.section-header p {
    color: var(--text-muted);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.2rem;
    margin-bottom: 2.5rem;
}
.filter-categories {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.filter-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.5rem 1.2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: rgba(0, 210, 255, 0.08);
    border-color: var(--primary);
    color: var(--primary);
}

.search-sort-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-grow: 1;
    justify-content: flex-end;
}
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 260px;
    width: 100%;
}
.search-box svg {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    pointer-events: none;
}
.search-box input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0.5rem 1rem 0.5rem 2.2rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
}
.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.08);
}
.sort-box select {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}
.sort-box select:focus {
    border-color: var(--primary);
}

/* Product Grid & Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2rem;
}
.product-card {
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
    position: relative;
    overflow: hidden;
}
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gradient);
    color: var(--bg-darker);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    z-index: 5;
    text-transform: uppercase;
}
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
}
.wishlist-btn:hover {
    background: rgba(255, 0, 127, 0.08);
    border-color: var(--accent);
    color: var(--accent);
}
.wishlist-btn.active {
    background: rgba(255, 0, 127, 0.15);
    border-color: var(--accent);
    color: var(--accent);
}
.wishlist-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    transition: fill 0.2s;
}
.wishlist-btn.active svg {
    fill: currentColor;
}

.product-image-container {
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255,255,255,0.02);
}
/* CSS Vector representation of product image */
.product-placeholder-svg {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    color: var(--primary);
    opacity: 0.85;
    transition: var(--transition-slow);
}
.product-card:hover .product-placeholder-svg {
    transform: scale(1.08) rotate(3deg);
    opacity: 1;
}

.product-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.3rem;
    letter-spacing: 0.5px;
}
.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}
.product-card h3:hover {
    color: var(--primary);
}
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #ffb100;
    font-size: 0.85rem;
    font-weight: 600;
}
.product-rating svg {
    fill: #ffb100;
    width: 13px;
    height: 13px;
}
.product-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.product-actions {
    display: flex;
    gap: 0.6rem;
    margin-top: auto;
}
.product-actions .btn-add {
    flex-grow: 1;
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
}
.product-actions .btn-buy {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
}

/* Why Choose MobiShield */
.why-choose {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.01);
}
.why-container {
    max-width: 1800px;
    width: 96%;
    margin: 0 auto;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.2rem;
    border-radius: 16px;
    transition: var(--transition-slow);
    text-align: center;
}
.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 210, 255, 0.2);
    box-shadow: 0 10px 30px -10px rgba(0, 210, 255, 0.08);
}
.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 210, 255, 0.03);
    border: 1.5px solid rgba(0, 210, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 1.5rem;
    box-shadow: inset 0 0 15px rgba(0, 210, 255, 0.15);
    transition: var(--transition-slow);
}
.why-card:hover .why-icon {
    background: var(--primary-gradient);
    color: var(--bg-darker);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
    transform: scale(1.1) rotate(-10deg);
}
.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* How It Works Timeline */
.how-it-works {
    padding: 6rem 2rem;
    max-width: 1800px;
    width: 96%;
    margin: 0 auto;
}
.timeline {
    position: relative;
    max-width: 900px;
    margin: 3.5rem auto 0;
    padding: 2rem 0;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.3);
}
.timeline-item {
    padding: 1rem 3rem;
    position: relative;
    width: 50%;
    opacity: 0.9;
    transition: var(--transition);
}
.timeline-item:hover {
    opacity: 1;
}
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}
.timeline-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 3.5px solid var(--primary);
    position: absolute;
    top: 2rem;
    z-index: 5;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: var(--transition);
}
.timeline-dot::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0.8;
    animation: dot-pulse 2s infinite;
    pointer-events: none;
}
@keyframes dot-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}
.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}
.timeline-item:hover .timeline-dot {
    background: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--primary);
}
.timeline-card {
    padding: 1.8rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
}
.timeline-item:hover .timeline-card {
    border-color: var(--primary);
    box-shadow: 0 5px 25px rgba(0, 210, 255, 0.05);
}
.step-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.6rem;
}
.timeline-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.timeline-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Comparison Section */
.comparison {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.01);
}
.comparison-container {
    max-width: 1200px;
    width: 96%;
    margin: 0 auto;
    overflow-x: auto;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}
.comparison-table th, .comparison-table td {
    padding: 1.2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.comparison-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.02);
}
.comparison-table th:first-child, .comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
}
.comparison-table tr:last-child td {
    border-bottom: none;
}
.col-mobishield {
    background: rgba(0, 210, 255, 0.04);
    border-left: 1px solid rgba(0, 210, 255, 0.15);
    border-right: 1px solid rgba(0, 210, 255, 0.15);
    position: relative;
}
th.col-mobishield {
    color: var(--primary);
    font-weight: 800;
}
.winner-badge {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: var(--bg-darker);
    font-size: 0.6rem;
    font-weight: 800;
    padding: 0.1rem 0.5rem;
    border-radius: 10px;
    text-transform: uppercase;
}
.comp-icon-yes {
    color: #00ff66;
    filter: drop-shadow(0 0 5px rgba(0, 255, 102, 0.3));
}
.comp-icon-no {
    color: #ff3366;
    opacity: 0.7;
}

/* Customer Reviews Sliding Testimonial Carousel */
.reviews {
    padding: 6rem 0;
    overflow: hidden;
    position: relative;
}
.reviews::before, .reviews::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    z-index: 2;
    pointer-events: none;
}
.reviews::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}
.reviews::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    user-select: none;
    margin-top: 2rem;
}
.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marquee-scroll 35s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.review-card {
    flex-shrink: 0;
    width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.8rem;
    transition: var(--transition);
}
.review-card:hover {
    border-color: var(--primary);
    background: var(--bg-card-hover);
}
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.review-avatar-css {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--bg-darker);
    border: 2px solid rgba(255,255,255,0.1);
}
.review-user-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}
.review-stars {
    display: flex;
    gap: 2px;
    color: #ffb100;
    margin-top: 0.15rem;
}
.review-stars svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}
.review-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-style: italic;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Before & After Interactive Slider */
.before-after {
    padding: 6rem 2rem;
}
.before-after-container {
    max-width: 1100px;
    width: 96%;
    margin: 3rem auto 0;
}
.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    user-select: none;
}
.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.img-before {
    z-index: 1;
}
.img-after {
    z-index: 2;
    width: 50%; /* initial width */
}
/* Overlay labels */
.slider-label {
    position: absolute;
    top: 15px;
    background: rgba(3, 4, 8, 0.7);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 4;
}
.label-before {
    left: 15px;
    color: var(--accent);
}
.label-after {
    right: 15px;
    color: var(--primary);
}

.slider-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fff;
    left: 50%;
    z-index: 3;
    cursor: ew-resize;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}
.slider-handle {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 4px solid var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    z-index: 4;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-darker);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
    transition: transform 0.1s;
}
.slider-handle svg {
    width: 16px;
    height: 16px;
}
.slider-bar:hover .slider-handle, .slider-wrapper:hover .slider-handle {
    transform: scale(1.1);
}

/* Video Section */
.video-section {
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.01);
}
.video-container {
    max-width: 1200px;
    width: 96%;
    margin: 0 auto;
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.video-preview-mesh {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, #0d1a3c 0%, #030408 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.video-glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(0, 210, 255, 0.05)' stroke-width='0.5'/%3E%3C/svg%3E") repeat;
    opacity: 0.5;
}
.video-play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-darker);
    cursor: pointer;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.4);
    transition: var(--transition);
    z-index: 2;
}
.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 45px rgba(0, 210, 255, 0.6);
}
.video-play-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin-left: 4px;
}
.video-caption {
    margin-top: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    z-index: 2;
}

/* FAQ Accordion Section */
.faq {
    padding: 6rem 2rem;
    max-width: 1200px;
    width: 96%;
    margin: 0 auto;
}
.faq-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover {
    border-color: var(--primary);
}
.faq-question {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.faq-question h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
}
.faq-icon {
    transition: var(--transition);
    color: var(--text-muted);
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}
.faq-item.active {
    border-color: rgba(0, 210, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}
.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* SEO Blog Section */
.blog {
    padding: 6rem 2rem;
    max-width: 1800px;
    width: 96%;
    margin: 0 auto;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.blog-img-container {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #0d1b3e 0%, #03050c 100%);
    position: relative;
    overflow: hidden;
}
.blog-card:hover .blog-img-container img, .blog-card:hover .blog-svg-decor {
    transform: scale(1.05);
}
.blog-svg-decor {
    width: 100%;
    height: 100%;
    opacity: 0.7;
    transition: var(--transition-slow);
}
.blog-meta-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(3, 4, 8, 0.75);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
}
.blog-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.blog-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    color: var(--text-main);
    transition: var(--transition);
}
.blog-info h3:hover {
    color: var(--primary);
}
.blog-info p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-read-btn {
    align-self: flex-start;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: auto;
    transition: var(--transition);
}
.blog-read-btn:hover {
    color: #fff;
}
.blog-read-btn svg {
    transition: var(--transition);
}
.blog-read-btn:hover svg {
    transform: translateX(3px);
}

/* Newsletter Section */
.newsletter {
    padding: 6rem 2rem;
    max-width: 1800px;
    width: 96%;
    margin: 0 auto;
}
.newsletter-card {
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.newsletter-card h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}
.newsletter-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    gap: 0.8rem;
}
.newsletter-form input {
    flex-grow: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    color: #fff;
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition);
}
.newsletter-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.08);
}
.newsletter-form button {
    padding: 0.8rem 2rem;
    border-radius: 30px;
}

/* Contact Section & Map */
.contact {
    padding: 6rem 2rem;
    max-width: 1800px;
    width: 96%;
    margin: 0 auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    margin-top: 3rem;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.contact-item {
    display: flex;
    gap: 1.2rem;
}
.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 210, 255, 0.04);
    border: 1px solid rgba(0, 210, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-details h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
}
.contact-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.map-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-top: 1rem;
}
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) grayscale(80%) contrast(90%);
}

.contact-form-wrapper {
    padding: 2.5rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}
.contact-form textarea {
    resize: none;
    height: 120px;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.08);
}
.contact-form label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    display: block;
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 99;
}
.float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: var(--transition);
    border: none;
}
.float-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: float-pulse-green 2s infinite;
}
.float-call {
    background: linear-gradient(135deg, #00d2ff 0%, #0066ff 100%);
    animation: float-pulse-blue 2s infinite;
}
.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
}
.float-btn svg {
    width: 24px;
    height: 24px;
}

@keyframes float-pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes float-pulse-blue {
    0% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(0, 210, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 210, 255, 0); }
}

/* Modals & Drawers Layouts */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 4, 8, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    padding: 1.5rem;
}
.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}
.modal {
    width: 100%;
    max-width: 800px;
    background: rgba(10, 13, 26, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow-y: auto;
    max-height: 90vh;
    transform: scale(0.9);
    transition: cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
    box-shadow: 0 25px 60px -15px rgba(0, 210, 255, 0.15);
}
.modal-backdrop.active .modal {
    transform: scale(1);
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    z-index: 10;
}
.modal-close:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: rotate(90deg);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}
.modal-gallery {
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    border-right: 1px solid var(--border-color);
}
.modal-gallery svg {
    max-width: 90%;
    max-height: 320px;
    color: var(--primary);
    filter: drop-shadow(0 10px 25px rgba(0, 210, 255, 0.2));
}
.modal-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}
.modal-info h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}
.modal-rating-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}
.modal-price {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}
.modal-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Cart Drawer */
.cart-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.cart-backdrop.active {
    opacity: 1;
    pointer-events: all;
}
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: rgba(8, 10, 22, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid var(--border-color);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}
.cart-drawer.active {
    right: 0;
}
.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-header h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}
.cart-items {
    flex-grow: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.empty-cart-message {
    text-align: center;
    margin: auto;
    color: var(--text-muted);
}
.empty-cart-message svg {
    margin-bottom: 1rem;
    opacity: 0.3;
    color: var(--primary);
}
.empty-cart-message p {
    font-size: 1rem;
    font-weight: 600;
}

/* Cart Item Row */
.cart-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.2rem;
}
.cart-item-image {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cart-item-image svg {
    width: 80%;
    height: 80%;
    color: var(--primary);
}
.cart-item-info {
    flex-grow: 1;
}
.cart-item-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}
.cart-item-variant {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.01);
}
.qty-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.qty-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
}
.qty-val {
    width: 24px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
}
.cart-item-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    margin-left: auto;
}
.remove-item-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
}
.remove-item-btn:hover {
    color: var(--accent);
}

.cart-summary {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: rgba(255,255,255,0.01);
}
.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.free-badge {
    color: var(--primary);
    font-weight: 700;
}
.summary-line.total {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: 0.6rem;
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

/* Wishlist Modal Table */
.wishlist-modal-body {
    padding: 2.5rem;
}
.wishlist-items-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
}
.wishlist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
}
.wishlist-item-image {
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wishlist-item-image svg {
    width: 80%;
    height: 80%;
    color: var(--primary);
}
.wishlist-item-info {
    flex-grow: 1;
}
.wishlist-item-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}
.wishlist-item-price {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    margin-top: 0.1rem;
}
.wishlist-item-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Checkout step modal */
.checkout-modal {
    max-width: 500px;
}
.checkout-wrapper {
    padding: 2.5rem;
}
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}
.step-num.active {
    background: var(--primary);
    color: var(--bg-darker);
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}
.step-num.complete {
    background: #00ff66;
    color: var(--bg-darker);
    border-color: #00ff66;
}
.step-line {
    flex-grow: 1;
    height: 1px;
    background: var(--border-color);
    margin: 0 0.6rem;
}
.step-line.active {
    background: var(--primary);
}

.checkout-step-content {
    display: none;
}
.checkout-step-content.active {
    display: block;
}
.checkout-step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.checkout-form input, .checkout-form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}
.checkout-form input:focus, .checkout-form select:focus {
    border-color: var(--primary);
}

/* Payment option panels */
.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
}
.payment-method-option {
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}
.payment-method-option:hover {
    border-color: var(--primary);
    background: rgba(255,255,255,0.01);
}
.payment-method-option.active {
    border-color: var(--primary);
    background: rgba(0, 210, 255, 0.04);
}
.payment-method-option input {
    width: auto;
    margin-right: 0.2rem;
}
.payment-method-details {
    margin-top: 0.8rem;
    background: rgba(0,0,0,0.2);
    padding: 1rem;
    border-radius: 8px;
    display: none;
    border: 1px solid var(--border-color);
}
.payment-method-details.active {
    display: block;
    animation: fade-in 0.3s ease;
}

.upi-qr-mock {
    width: 120px;
    height: 120px;
    background: #fff;
    margin: 0.8rem auto;
    padding: 8px;
    border-radius: 8px;
}
.upi-qr-mock svg {
    width: 100%;
    height: 100%;
}

.checkout-price-overview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    margin: 1.2rem 0;
}
.checkout-price-overview strong {
    font-size: 1.3rem;
    color: var(--primary);
}

.spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.success-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 255, 102, 0.05);
    border: 2px dashed #00ff66;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff66;
    margin: 0 auto 1.5rem;
}
.order-receipt-card {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Order Tracking Modal */
.tracking-modal-body {
    padding: 2.5rem;
}
.tracking-input-group {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2rem;
}
.tracking-input-group input {
    flex-grow: 1;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0.6rem 1.2rem;
    color: #fff;
    outline: none;
}
.tracking-input-group input:focus {
    border-color: var(--primary);
}
.tracking-timeline {
    position: relative;
    padding-left: 2.5rem;
    display: none;
    margin-top: 1.5rem;
}
.tracking-timeline.active {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.tracking-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--border-color);
    top: 5px;
    bottom: 5px;
    left: 9px;
}
.tracking-step {
    position: relative;
}
.tracking-step-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 3px solid var(--border-color);
    position: absolute;
    left: -35px;
    top: 2px;
    z-index: 2;
    transition: var(--transition);
}
.tracking-step.active .tracking-step-dot {
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}
.tracking-step.complete .tracking-step-dot {
    border-color: #00ff66;
    background: #00ff66;
}
.tracking-step-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
}
.tracking-step-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* User Profile Modal */
.profile-modal-body {
    padding: 2.5rem;
}

/* Blog Article Reader Modal */
.blog-reader-body {
    padding: 2.5rem;
}
.blog-reader-body h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.8rem;
}
.blog-reader-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
}
.blog-reader-content {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.75;
}
.blog-reader-content p {
    margin-bottom: 1.2rem;
}

/* Footer Section */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 5rem 2rem 2rem;
}
.footer-container {
    max-width: 1800px;
    width: 96%;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    gap: 3rem;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 250px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--primary);
}
.footer-bottom {
    max-width: 1800px;
    width: 96%;
    margin: 0 auto;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-bottom p {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.footer-socials {
    display: flex;
    gap: 1rem;
}
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}
.social-icon:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* -------------------------------------------------------------
   Creative Icon Animations & Enhancements
------------------------------------------------------------- */

/* Glassmorphic Wrappers & Glowing Borders for Icons */
.badge-icon, .why-icon, .contact-icon, .social-icon, .nav-icon-btn {
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* Base icon SVG transitions */
.badge-icon svg, .why-icon svg, .contact-icon svg, .social-icon svg, .nav-icon-btn svg {
    transition: var(--transition-slow);
    transform-origin: center;
}

/* --- Micro-Animations on Hover --- */

/* 1. Lock Icon (Secure Checkout): Shackle opens and rotates */
.badge-item:hover .svg-lock path {
    transform-origin: 12px 10px;
    animation: lock-shackle-open 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.badge-item:hover .svg-lock rect {
    animation: lock-wiggle 0.6s ease-in-out;
}
@keyframes lock-shackle-open {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(-2px) rotate(-12deg); }
}
@keyframes lock-wiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* 2. Truck Icon (Fast Shipping): drive/vibrate effect */
.badge-item:hover .svg-truck {
    animation: truck-drive 0.8s ease-in-out infinite;
}
@keyframes truck-drive {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px) translateX(1px); }
}

/* 3. Star Icon (Premium Quality): sparkles and spins */
.badge-item:hover .svg-star {
    animation: star-sparkle 1.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes star-sparkle {
    0% { transform: rotate(0) scale(1); filter: drop-shadow(0 0 0 var(--primary-glow)); }
    50% { transform: rotate(180deg) scale(1.15); filter: drop-shadow(0 0 10px var(--primary)); }
    100% { transform: rotate(360deg) scale(1); filter: drop-shadow(0 0 0 var(--primary-glow)); }
}

/* 4. Money Guarantee Icon: Pulse and sheen */
.badge-item:hover .svg-money {
    animation: money-pulse 1s ease-in-out infinite;
}
@keyframes money-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(0, 210, 255, 0)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 8px var(--primary)); }
}

/* 5. Support Chat Icon: bounce / message pop */
.badge-item:hover .svg-chat {
    animation: chat-bounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes chat-bounce {
    0% { transform: translateY(0) scale(1); }
    40% { transform: translateY(-4px) scale(1.1); }
    70% { transform: translateY(1px) scale(0.95); }
    100% { transform: translateY(0) scale(1); }
}

/* 6. Eye Icon (Invisible Protection): scanning bar effect */
.why-card:hover .svg-eye {
    animation: eye-scan 1.5s ease-in-out infinite;
}
@keyframes eye-scan {
    0%, 100% { filter: drop-shadow(0 0 2px var(--primary-glow)); }
    50% { filter: drop-shadow(0 0 12px var(--primary)); }
}

/* 7. Layers Icon (Nano Tech): splits layers vertically */
.why-card:hover .svg-layers path:nth-of-type(1) {
    transform: translateY(-4px);
    opacity: 1;
}
.why-card:hover .svg-layers path:nth-of-type(2) {
    transform: translateY(2px);
    opacity: 0.9;
}
.why-card:hover .svg-layers path:nth-of-type(3) {
    transform: translateY(-1px);
    opacity: 0.8;
}

/* 8. Hexagon Icon (Scratch Resistance): rotate & shimmer */
.why-card:hover .svg-hexagon {
    animation: hex-rotate 1.8s linear infinite;
}
@keyframes hex-rotate {
    0% { transform: rotate(0); filter: drop-shadow(0 0 2px var(--primary-glow)); }
    50% { filter: drop-shadow(0 0 10px var(--primary)); }
    100% { transform: rotate(360deg); filter: drop-shadow(0 0 2px var(--primary-glow)); }
}

/* 9. Thumbs Up Icon (DIY Application): wiggle up and down */
.why-card:hover .svg-thumbs {
    animation: thumbs-wiggle 0.6s ease-in-out infinite alternate;
}
@keyframes thumbs-wiggle {
    0% { transform: translateY(0) rotate(0); }
    100% { transform: translateY(-3px) rotate(5deg); }
}

/* 10. Heart Icon (Wishlist): heartbeat scaling pulse on hover */
.nav-icon-btn:hover .svg-heart, .wishlist-btn:hover .svg-heart {
    animation: heart-beat 0.8s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1.1); }
    75% { transform: scale(1.25); }
}

/* 11. Cart Icon: roll/slide forward */
.nav-icon-btn:hover .svg-cart {
    animation: cart-slide 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes cart-slide {
    0% { transform: translateX(0) rotate(0); }
    30% { transform: translateX(-2px) rotate(-5deg); }
    70% { transform: translateX(3px) rotate(5deg); }
    100% { transform: translateX(0) rotate(0); }
}

/* 12. User profile icon rotation */
.user-profile-btn:hover .svg-user {
    transform: rotate(15deg) scale(1.1);
}

/* 13. Track icon scan pulse */
.nav-icon-btn:hover .svg-track {
    animation: track-pulse 1.2s ease-in-out infinite;
}
@keyframes track-pulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.15) translateY(-1px); opacity: 1; filter: drop-shadow(0 0 6px var(--primary)); }
}

/* Brand specific glow transitions for social media icons */
.social-icon:hover {
    transform: translateY(-4px) scale(1.15) !important;
}
.social-icon[aria-label="Facebook"]:hover {
    color: #1877f2 !important;
    border-color: #1877f2 !important;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.4);
}
.social-icon[aria-label="Instagram"]:hover {
    color: #e1306c !important;
    border-color: #e1306c !important;
    box-shadow: 0 0 15px rgba(225, 48, 108, 0.4);
}
.social-icon[aria-label="LinkedIn"]:hover {
    color: #0a66c2 !important;
    border-color: #0a66c2 !important;
    box-shadow: 0 0 15px rgba(10, 102, 194, 0.4);
}
.social-icon[aria-label="YouTube"]:hover {
    color: #ff0000 !important;
    border-color: #ff0000 !important;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
}
.social-icon[aria-label="X (Twitter)"]:hover {
    color: #ffffff !important;
    border-color: #ffffff !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* -------------------------------------------------------------
   Responsive Media Queries
   Mobile First & Breakpoints
------------------------------------------------------------- */
@media (min-width: 1251px) and (max-width: 1400px) {
    .nav-links {
        gap: 1.1rem;
    }
    .nav-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 1250px) {
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(5, 7, 15, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-left: 1px solid var(--border-color);
        padding: 6rem 2rem 2rem;
        gap: 1.8rem;
        transition: cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
        z-index: 99;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a::after {
        bottom: -2px;
    }
    .nav-cta-btn {
        display: none;
    }
    #userNameDisplay {
        display: none;
    }
    .user-profile-btn {
        padding: 0.5rem;
        border-radius: 50%;
    }
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .hero-features {
        max-width: 500px;
    }
    .hero-visual {
        order: -1;
    }
    .phone-mockup {
        max-width: 260px;
        height: auto;
        aspect-ratio: 1 / 2;
        max-height: 70vh;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-gallery {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 2rem;
    }
    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .search-sort-group {
        justify-content: space-between;
    }
    .search-box {
        max-width: none;
    }
    
    /* Timeline Mobile Vertical */
    .timeline::after {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 3rem;
        padding-right: 0;
        text-align: left !important;
    }
    .timeline-item:nth-child(even) {
        left: 0;
    }
    .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .product-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    .product-actions .btn {
        width: 100%;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-form {
        flex-direction: column;
        border-radius: 0;
    }
    .newsletter-form input {
        border-radius: 20px;
    }
    .newsletter-form button {
        border-radius: 20px;
        width: 100%;
    }
    .comparison-table th, .comparison-table td {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
}
