/* ==========================================================================
   LIGHTNING DEALS - CORE PREMIUM STYLESHEET
   ========================================================================== */

/* --- Design Tokens & Variables --- */
:root {
    --bg-main: #07080b;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.04);
    --border-color: rgba(255, 255, 255, 0.06);
    --border-glow: rgba(0, 242, 254, 0.15);
    
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --clr-cyan: #00F2FE;
    --clr-blue: #4FACFE;
    --clr-purple: #8A2BE2;
    --clr-purple-light: #B37DFF;
    --clr-dark-purple: #1e1135;
    --clr-red: #ef4444;
    --clr-green: #22c55e;
    --clr-gold: #fbbf24;

    --grad-primary: linear-gradient(135deg, var(--clr-cyan) 0%, var(--clr-blue) 100%);
    --grad-purple: linear-gradient(135deg, var(--clr-purple) 0%, #4FACFE 100%);
    --grad-dark: linear-gradient(180deg, #13151a 0%, #07080b 100%);
    --grad-hover: linear-gradient(135deg, #00d2de 0%, #3f8cfe 100%);

    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* --- Layout Elements --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 7rem 0;
    position: relative;
}

/* --- Grid Systems --- */
.grid {
    display: grid;
    gap: 2rem;
}
.grid-2-cols { grid-template-columns: repeat(2, 1fr); }
.grid-3-cols { grid-template-columns: repeat(3, 1fr); }
.grid-4-cols { grid-template-columns: repeat(4, 1fr); }

/* --- Background Glow Blobs --- */
.glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.12;
}
.glow-1 {
    top: 5%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: var(--clr-blue);
}
.glow-2 {
    top: 40%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: var(--clr-purple);
    opacity: 0.08;
}
.glow-3 {
    bottom: 10%;
    left: 20%;
    width: 450px;
    height: 450px;
    background: var(--clr-cyan);
}

/* --- Typography Utilities --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.25;
}

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }
.margin-top-xs { margin-top: 0.5rem; }
.margin-top-sm { margin-top: 1rem; }
.margin-top-md { margin-top: 1.5rem; }
.margin-bottom-sm { margin-bottom: 1rem; }
.margin-bottom-lg { margin-bottom: 2.5rem; }
.inline-block { display: inline-block; }
.w-100 { width: 100%; }

.text-cyan { color: var(--clr-cyan); }
.text-red { color: var(--clr-red); }
.font-mono { font-family: monospace, Courier, sans-serif; }

/* --- Section Headers --- */
.section-header {
    margin-bottom: 4rem;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Glassmorphism Preset --- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}
.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 242, 254, 0.25);
    box-shadow: 0 12px 40px 0 rgba(0, 242, 254, 0.08);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.6rem;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-normal);
    border: none;
}

.btn-primary {
    background: var(--grad-primary);
    color: #000000;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.2);
}
.btn-primary:hover {
    background: var(--grad-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 242, 254, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.btn-danger:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: #ef4444;
}

.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    border-radius: 8px;
}
.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    border-radius: 14px;
}
.btn-xs {
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    border-radius: 6px;
}

/* Button Glow Pulse Effect */
.btn-glow {
    position: relative;
    overflow: hidden;
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}
.btn-glow:hover::after {
    opacity: 1;
}

/* ==========================================================================
   SECTION SPECIFIC STYLES
   ========================================================================== */

/* --- Sticky Navbar --- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: padding var(--transition-normal), background-color var(--transition-normal), backdrop-filter var(--transition-normal);
    padding: 1.5rem 0;
}
#main-header.scrolled {
    padding: 0.9rem 0;
    background-color: rgba(7, 8, 11, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.5rem;
}
.logo-icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.4));
}
.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}
.logo-highlight {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.desktop-nav {
    display: flex;
    gap: 2.2rem;
}
.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}
.nav-link:hover, .nav-link.active {
    color: var(--clr-cyan);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Nav Menu Drawer */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(7, 8, 11, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.mobile-nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.05rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* --- Hero Section --- */
.hero-section {
    padding-top: 10rem;
    padding-bottom: 6rem;
}
.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 9999px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-cyan);
    margin-bottom: 1.5rem;
}
.icon-sparkle {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

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

.hero-trust-metrics {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.trust-metric {
    display: flex;
    flex-direction: column;
}
.metric-val {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
}
.metric-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.trust-divider {
    width: 1px;
    height: 35px;
    background-color: var(--border-color);
}

/* --- Hero Visual Showcase --- */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}
.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 400px;
}

/* Main animated screen */
.main-mockup {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.mockup-header {
    height: 30px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.5rem;
}
.dots {
    display: flex;
    gap: 4px;
}
.dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}
.mockup-search {
    font-size: 0.7rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.02);
    border-radius: 4px;
    padding: 0.1rem 2rem;
    margin-left: auto;
}
.mockup-body {
    display: flex;
    height: calc(100% - 30px);
}
.mockup-sidebar {
    width: 60px;
    background: rgba(255,255,255,0.01);
    border-right: 1px solid var(--border-color);
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.sidebar-item {
    height: 6px;
    border-radius: 2px;
    background: rgba(255,255,255,0.05);
}
.sidebar-item.active {
    background: var(--clr-cyan);
}
.mockup-content {
    flex-grow: 1;
    padding: 1.2rem;
}
.mockup-title-bar {
    margin-bottom: 1.5rem;
}
.title-shimmer {
    width: 60%;
    height: 10px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    margin-bottom: 0.4rem;
}
.desc-shimmer {
    width: 40%;
    height: 6px;
    background: rgba(255,255,255,0.04);
    border-radius: 3px;
}
.mockup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}
.mockup-grid-card {
    height: 90px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.6rem;
}
.grid-card-img {
    height: 40px;
    background: rgba(255,255,255,0.04);
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.grid-card-text {
    height: 6px;
    width: 70%;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
}

/* Floating Glass Cards */
.floating-card {
    position: absolute;
    z-index: 10;
    padding: 1rem;
    width: 220px;
    pointer-events: none;
}
.fc-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.6rem;
}
.fc-title {
    font-size: 0.85rem;
    font-weight: 700;
}
.fc-status {
    font-size: 0.65rem;
    color: var(--text-muted);
}
.fc-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fc-time {
    font-size: 0.65rem;
    color: var(--text-muted);
}
.fc-badge-success {
    font-size: 0.65rem;
    background: rgba(34, 197, 94, 0.15);
    color: var(--clr-green);
    padding: 0.15rem 0.4rem;
    border-radius: 99px;
    font-weight: 600;
}
.fc-price-discount {
    font-size: 0.75rem;
    color: var(--clr-cyan);
    font-weight: 700;
}

/* Icon holders in preview cards */
.fc-icon-wrapper-canva {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #00C4CC 0%, #7d2ae8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}
.fc-icon-wrapper-adobe {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}
.fc-icon-wrapper-linkedin {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #0077b5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

/* Float Animations */
.card-1 {
    top: 5%;
    left: -15%;
    animation: float-1 6s ease-in-out infinite;
}
.card-2 {
    bottom: 25%;
    right: -15%;
    animation: float-2 7s ease-in-out infinite;
}
.card-3 {
    top: 35%;
    left: -8%;
    animation: float-3 5.5s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}
@keyframes float-2 {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}
@keyframes float-3 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-8px) rotate(-4deg); }
}

/* --- Trust badges --- */
.trust-section {
    padding-top: 3rem;
    padding-bottom: 5rem;
}
.trust-card {
    padding: 2.2rem;
    text-align: left;
}
.trust-card-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 242, 254, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-cyan);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 242, 254, 0.15);
}
.trust-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.trust-card-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- Products Section --- */
.products-section {
    background: rgba(255,255,255,0.01);
    border-top: 1px solid rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.category-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3.5rem;
}
.filter-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--text-primary);
    color: #000000;
    border-color: var(--text-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    min-height: 350px;
}

/* Premium Product Card */
.product-card {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    height: 100%;
}
.prod-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.prod-badge-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
}

/* Gradient Theme Options for Badge logos */
.grad-blue { background: linear-gradient(135deg, #00F2FE 0%, #4FACFE 100%); }
.grad-red { background: linear-gradient(135deg, #FF3366 0%, #FF6633 100%); }
.grad-green { background: linear-gradient(135deg, #0077B5 0%, #D4AF37 100%); }
.grad-yellow { background: linear-gradient(135deg, #F39C12 0%, #F1C40F 100%); }
.grad-purple { background: linear-gradient(135deg, #8A2BE2 0%, #E040FB 100%); }

.prod-tag {
    font-size: 0.65rem;
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.2);
    color: var(--clr-cyan);
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
    font-weight: 700;
}

.prod-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.prod-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.prod-price-area {
    margin-bottom: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 1rem;
}
.prod-retail {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.prod-offer {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}
.prod-price-new {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--clr-cyan);
}
.prod-price-suffix {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.prod-benefits {
    list-style: none;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.prod-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.prod-benefits li i {
    width: 14px;
    height: 14px;
    color: var(--clr-cyan);
    flex-shrink: 0;
    margin-top: 2px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.05);
    border-top-color: var(--clr-cyan);
    border-radius: 50%;
    margin: 3rem auto 1rem;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* --- Why Choose Us Section --- */
.why-section {
    position: relative;
}
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.comp-card {
    padding: 3rem;
}
.comp-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}
.comp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}
.comp-list li i {
    margin-top: 0.2rem;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.comp-direct .comp-title {
    color: var(--text-muted);
}
.comp-lightning {
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 242, 254, 0.05);
    position: relative;
}
.comp-badge {
    position: absolute;
    top: -12px;
    right: 3rem;
    background: var(--grad-primary);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
}

/* --- How it Works / Timeline Section --- */
.timeline-section {
    background: rgba(255,255,255,0.005);
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}
.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, var(--clr-cyan) 0%, var(--clr-purple) 100%);
    opacity: 0.2;
}
.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 4rem;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: 20px;
    top: 15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #13151a;
    border: 2px solid var(--clr-cyan);
    box-shadow: 0 0 15px rgba(0,242,254,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-cyan);
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    z-index: 2;
}
.timeline-item:nth-child(2) .timeline-dot {
    border-color: #6366f1;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
    color: #818cf8;
}
.timeline-item:nth-child(3) .timeline-dot {
    border-color: var(--clr-purple);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
    color: var(--clr-purple-light);
}

.timeline-content {
    padding: 2.2rem;
}
.tl-icon {
    font-size: 1.5rem;
    color: var(--clr-cyan);
    margin-bottom: 0.8rem;
}
.timeline-item:nth-child(2) .tl-icon { color: #818cf8; }
.timeline-item:nth-child(3) .tl-icon { color: var(--clr-purple-light); }

.tl-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.tl-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- Testimonials Section --- */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 1rem 0;
}
.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform var(--transition-slow);
}
.testimonial-card {
    flex: 0 0 calc(50% - 1rem); /* Show 2 items */
    padding: 2.5rem;
}
.t-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.2rem;
}
.t-rating i {
    width: 16px;
    height: 16px;
}
.fill-gold {
    color: var(--clr-gold);
    fill: var(--clr-gold);
}
.t-comment {
    color: var(--text-primary);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.t-user {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
}
.bg-avatar-1 { background-color: #ec4899; }
.bg-avatar-2 { background-color: #3b82f6; }
.bg-avatar-3 { background-color: #10b981; }
.bg-avatar-4 { background-color: #8b5cf6; }

.t-name {
    font-size: 0.95rem;
    font-weight: 700;
}
.t-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
}
.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
}
.indicator-dot.active {
    background: var(--clr-cyan);
    transform: scale(1.3);
}

/* --- FAQ Accordion --- */
.faq-accordion-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    overflow: hidden;
    transition: all var(--transition-normal);
}
.faq-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}
.faq-toggle span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    padding-right: 1.5rem;
}
.faq-icon {
    color: var(--text-secondary);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}
.faq-content-inner {
    padding: 0 1.8rem 1.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid rgba(255,255,255,0.02);
    padding-top: 1rem;
}

.faq-item.active {
    border-color: rgba(0, 242, 254, 0.2);
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--clr-cyan);
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.contact-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 320px;
}
.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.9rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-normal);
}
.social-svg-icon {
    width: 20px;
    height: 20px;
}
.wa-btn {
    background-color: #25d366;
    color: #000;
}
.wa-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

/* Contact Form styling */
.contact-form-wrapper {
    padding: 3rem;
}
.form-title {
    font-size: 1.5rem;
    margin-bottom: 1.8rem;
}
.form-group {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}
.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    outline: none;
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--clr-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
    background: rgba(255,255,255,0.05);
}

.form-success-msg {
    display: none;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 8px;
    color: var(--clr-green);
    font-size: 0.85rem;
}
.form-success-msg i {
    width: 18px;
    height: 18px;
}

/* --- Footer --- */
#main-footer {
    background: #040507;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 2rem;
}
.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 320px;
}
.footer-socials {
    display: flex;
    gap: 1rem;
}
.footer-socials a {
    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-secondary);
    transition: all var(--transition-fast);
}
.footer-socials a:hover {
    color: var(--clr-cyan);
    border-color: var(--clr-cyan);
    transform: translateY(-2px);
}

.footer-links-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.footer-link {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color var(--transition-fast);
}
.footer-link:hover {
    color: var(--clr-cyan);
}
.admin-lock-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
}
.admin-lock-link:hover {
    color: var(--clr-purple-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ==========================================================================
   INTERACTIVE PURCHASE & UPI CHECKOUT MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 5, 7, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition-normal);
}
.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-card {
    width: 100%;
    max-width: 480px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
    border-color: rgba(255, 255, 255, 0.1);
}
.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-fast);
}
.modal-close-btn:hover {
    color: var(--text-primary);
}

.modal-header {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}
.modal-logo-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
}
.modal-title {
    font-size: 1.3rem;
}
.modal-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Step Indicators CSS */
.modal-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}
.checkout-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    position: relative;
    transition: all var(--transition-fast);
}
.checkout-step-dot::after {
    content: attr(data-label);
    position: absolute;
    top: 100%;
    margin-top: 4px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}
.checkout-step-dot.active {
    background: rgba(0, 242, 254, 0.1);
    border-color: var(--clr-cyan);
    color: var(--clr-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}
.checkout-step-dot.active::after {
    color: var(--clr-cyan);
}
.checkout-step-dot.completed {
    background: var(--clr-cyan);
    border-color: var(--clr-cyan);
    color: #000;
}
.checkout-step-dot.completed::after {
    color: var(--text-secondary);
}
.checkout-step-line {
    flex-grow: 1;
    height: 2px;
    background: var(--border-color);
    margin: 0 0.5rem;
    max-width: 60px;
    transition: background var(--transition-fast);
}
.checkout-step-line.completed {
    background: var(--clr-cyan);
}

/* Multi-Step Panels transition effects */
.checkout-panel {
    display: none;
    animation: fade-in-panel 0.3s ease-out;
}
.checkout-panel.active {
    display: block;
}
@keyframes fade-in-panel {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-instruction {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Plan Selector Grid styles */
.plan-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.plan-btn {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.7rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-fast);
}
.plan-btn:hover {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
}
.plan-btn.active {
    background: rgba(0, 242, 254, 0.08);
    border-color: var(--clr-cyan);
    color: var(--clr-cyan);
}

/* Price Details Summary box */
.price-summary-box {
    background: rgba(0, 242, 254, 0.03);
    border: 1px solid rgba(0, 242, 254, 0.1);
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.ps-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.ps-lbl {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.ps-lbl.highlight {
    color: var(--text-primary);
    font-weight: 600;
}
.ps-val-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.9rem;
}
.ps-val-new {
    color: var(--clr-cyan);
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-heading);
}
.savings-tag {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 700;
    background: var(--clr-green);
    color: #000;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    margin-top: 0.2rem;
}

.modal-features-list {
    margin-bottom: 2rem;
}
.mfl-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
}
#modal-features-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
#modal-features-items li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}
#modal-features-items li i {
    width: 12px;
    height: 12px;
    color: var(--clr-cyan);
}

.modal-footer-dual {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.5rem;
}

/* UPI QR payment layout */
.upi-payment-instructions {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.upi-qr-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    margin: 0.8rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.upi-qr-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}
.upi-qr-image.loading {
    opacity: 0;
}
.upi-qr-spinner {
    position: absolute;
    width: 28px;
    height: 28px;
    border: 3px solid rgba(0,0,0,0.05);
    border-top-color: var(--clr-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
.upi-id-copy-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0.9rem;
    margin-bottom: 0.8rem;
    width: 100%;
    max-width: 300px;
}
.upi-id-lbl {
    font-size: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}
.btn-copy-upi {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
}
.btn-copy-upi:hover {
    color: var(--clr-cyan);
}
.price-to-pay-box {
    margin-bottom: 0.5rem;
}
.pay-lbl {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.pay-amount {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--clr-cyan);
    margin-left: 0.3rem;
}

/* ==========================================================================
   STAFF ADMIN VIEW STYLES
   ========================================================================== */
.admin-body {
    background-color: #040507;
}
.glow-admin-1 {
    top: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: var(--clr-purple);
    opacity: 0.05;
}
.glow-admin-2 {
    bottom: -10%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: var(--clr-blue);
    opacity: 0.04;
}

/* Login Gate styling */
.admin-login-overlay {
    position: fixed;
    top:0; left:0; width:100%; height:100%;
    background: #07080b;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.login-card {
    width: 100%;
    max-width: 400px;
    padding: 3rem 2.2rem;
}
.login-brand {
    font-size: 1.8rem;
    font-weight: 800;
}
.login-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}
.error-text {
    font-size: 0.75rem;
    color: #ef4444;
    display: none;
    margin-top: 0.4rem;
}
.back-link {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.back-link:hover {
    color: var(--text-primary);
}

/* Dashboard Core Layout */
.admin-dashboard-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.admin-topbar {
    background: rgba(7, 8, 11, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.topbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.badge-admin {
    font-size: 0.65rem;
    background: rgba(138, 43, 226, 0.15);
    color: var(--clr-purple-light);
    border: 1px solid rgba(138, 43, 226, 0.3);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 0.4rem;
}
.topbar-right {
    display: flex;
    gap: 0.8rem;
}

.admin-main {
    padding-top: 2rem;
    padding-bottom: 5rem;
    flex-grow: 1;
}

/* Admin Dashboard Tab Selector Bar */
.admin-tabs-bar {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}
.admin-tab-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.9rem 1.6rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.admin-tab-btn i {
    width: 16px;
    height: 16px;
}
.admin-tab-btn:hover {
    color: var(--text-primary);
}
.admin-tab-btn.active {
    color: var(--clr-cyan);
    border-bottom-color: var(--clr-cyan);
}
.badge-tab-count {
    font-size: 0.7rem;
    background: rgba(0, 242, 254, 0.1);
    color: var(--clr-cyan);
    border: 1px solid rgba(0, 242, 254, 0.2);
    padding: 0.15rem 0.45rem;
    border-radius: 99px;
    font-weight: 700;
    margin-left: 0.4rem;
}

/* Dashboard Panels Toggle styles */
.admin-panel {
    display: none;
}
.admin-panel.active {
    display: block;
    animation: fade-in-panel 0.4s ease-out;
}

/* Stats dashboard */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.stat-card {
    padding: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}
.blue-glow { background: rgba(0, 242, 254, 0.08); color: var(--clr-cyan); border: 1px solid rgba(0,242,254,0.15); }
.purple-glow { background: rgba(138, 43, 226, 0.08); color: var(--clr-purple-light); border: 1px solid rgba(138,43,226,0.15); }
.cyan-glow { background: rgba(34, 197, 94, 0.08); color: var(--clr-green); border: 1px solid rgba(34,197,94,0.15); }

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}
.stat-value {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    font-weight: 850;
}

/* Content Columns Grid */
.admin-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
    align-items: flex-start;
}

/* Add/Edit card styling */
.admin-form-card {
    padding: 2.2rem;
}
.form-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
}
.form-card-title {
    font-size: 1.25rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1rem;
}
.form-tip {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* Table list styling */
.table-card {
    padding: 2.2rem 0;
}
.table-card-header {
    padding: 0 2.2rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}
.table-card-header.flex-header-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.sub-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.table-responsive {
    overflow-x: auto;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
.admin-table th {
    padding: 1rem 2.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}
.admin-table td {
    padding: 1rem 2.2rem;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    vertical-align: middle;
}
.admin-table tr:hover td {
    background: rgba(255,255,255,0.01);
}

.admin-table-product-cell {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.admin-table-logo-circle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
}
.admin-table-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.table-badge-category {
    font-size: 0.7rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    color: var(--text-secondary);
}

.table-actions {
    display: flex;
    gap: 0.4rem;
}

/* Order cell contents specific designs */
.admin-table-order-id {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.admin-table-order-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}
.admin-table-order-plan {
    font-size: 0.75rem;
    color: var(--text-secondary);
}
.admin-table-cust-name {
    font-weight: 650;
    font-size: 0.9rem;
    display: block;
}
.admin-table-cust-meta {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
}

/* Order Status Tags */
.badge-status {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid transparent;
}
.badge-status-pending {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.15);
    color: var(--clr-gold);
}
.badge-status-delivered {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.15);
    color: var(--clr-green);
}
.badge-status-cancelled {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

/* Table Quick WhatsApp logo actions button */
.btn-whatsapp-action {
    background: rgba(37, 211, 102, 0.1);
    color: #4ade80;
    border: 1px solid rgba(37, 211, 102, 0.2);
}
.btn-whatsapp-action:hover {
    background: #25d366;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

/* Database Card Operations styles */
.db-card {
    padding: 2.2rem;
}
.db-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}
.db-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.custom-file-upload {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

/* Tablet Screen Sizes (992px) */
@media (max-width: 992px) {
    section {
        padding: 5rem 0;
    }
    
    .grid-4-cols { grid-template-columns: repeat(2, 1fr); }
    .grid-3-cols { grid-template-columns: repeat(2, 1fr); }
    
    /* Hero */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-trust-metrics {
        justify-content: center;
    }
    
    .hero-visual {
        margin-top: 2rem;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Comparison list */
    .comparison-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-info {
        text-align: center;
    }
    .contact-methods {
        margin: 0 auto;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1.2fr 0.9fr 0.9fr;
        gap: 2rem;
    }
    
    /* Admin Dash */
    .admin-content-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Screen Sizes (768px) */
@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav.active {
        display: flex;
    }
    
    .grid-2-cols, .grid-3-cols, .grid-4-cols {
        grid-template-columns: 1fr;
    }
    
    /* Testimonial slider: show 1 card */
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    /* Timeline padding reduction */
    .timeline-item {
        padding-left: 60px;
    }
    .timeline-line {
        left: 20px;
    }
    .timeline-dot {
        left: 0;
        width: 38px;
        height: 38px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .plan-selector {
        grid-template-columns: 1fr;
    }
    
    /* Admin Dashboard */
    .admin-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .db-actions-row {
        flex-direction: column;
    }
    .db-actions-row button, 
    .db-actions-row label {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ==========================================================================
   ADMIN PRICING TIERS EDITOR GRID STYLES
   ========================================================================== */
.admin-pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    background: rgba(255, 255, 255, 0.015);
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.pricing-tier-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-tier-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.tier-checkbox-col {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tier-checkbox-col input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--clr-cyan);
}

.tier-checkbox-col label {
    margin-bottom: 0 !important;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.tier-inputs-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.tier-inputs-col input {
    padding: 0.4rem 0.6rem !important;
    font-size: 0.8rem !important;
    height: 32px !important;
    border-radius: 4px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid var(--border-color) !important;
    color: var(--text-primary) !important;
}

.tier-inputs-col input:focus {
    border-color: var(--clr-cyan) !important;
    box-shadow: 0 0 8px rgba(0, 242, 254, 0.15) !important;
}

@media (max-width: 768px) {
    .pricing-tier-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .tier-inputs-col {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================================================
   STRIPE CUSTOM ORDER BADGES
   ========================================================================== */
.badge-status-paid {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.25);
    color: var(--clr-green);
}
.badge-status-pending-stripe {
    background: rgba(0, 242, 254, 0.08);
    border-color: rgba(0, 242, 254, 0.18);
    color: var(--clr-cyan);
}

/* ==========================================================================
   SUCCESS REDIRECT LANDING PAGE STYLES
   ========================================================================== */
.success-body {
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem 1rem;
    position: relative;
    overflow-y: auto;
}

.success-container {
    max-width: 550px;
    width: 100%;
    margin: auto;
    z-index: 10;
}

.success-card {
    text-align: center;
    padding: 3rem 2.2rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.08);
    color: var(--clr-green);
    border: 1px solid rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.1);
}

.success-icon-wrapper svg {
    width: 40px;
    height: 40px;
}

.success-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
}

.success-message {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.receipt-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
    margin-bottom: 2rem;
}

.receipt-header {
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.receipt-product {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.receipt-plan {
    font-size: 0.75rem;
    color: var(--clr-cyan);
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.15);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.receipt-row:last-child {
    margin-bottom: 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.receipt-label {
    color: var(--text-muted);
}

.receipt-value {
    color: var(--text-primary);
    font-weight: 500;
}

.receipt-value.price {
    color: var(--clr-cyan);
    font-weight: 800;
    font-size: 1.05rem;
}

.whatsapp-alert-box {
    background: rgba(37, 211, 102, 0.06);
    border: 1px solid rgba(37, 211, 102, 0.15);
    border-radius: 10px;
    padding: 1.2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    text-align: left;
}

.whatsapp-alert-icon {
    color: #25d366;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.whatsapp-alert-icon svg {
    width: 20px;
    height: 20px;
}

.whatsapp-alert-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.whatsapp-alert-text strong {
    color: var(--text-primary);
}

.btn-whatsapp-success {
    background: #25d366;
    color: #000000;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 50px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    width: 100%;
    text-decoration: none;
    font-size: 1rem;
    font-family: var(--font-heading);
}

.btn-whatsapp-success:hover {
    background: #20ba56;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-success svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   CART SYSTEM & TOAST NOTIFICATION STYLES
   ========================================================================== */

/* Cart Header Button */
.cart-trigger-btn {
    position: relative;
    padding: 0.5rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.cart-trigger-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--clr-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

.badge-cart-count {
    display: none;
    background: var(--clr-cyan);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -8px;
    box-shadow: 0 0 8px var(--clr-cyan);
}

/* Toast System Container */
#toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 10000;
    pointer-events: none;
    max-width: 320px;
    width: 100%;
}

/* Single Toast Card */
.toast-msg {
    pointer-events: auto;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    background: rgba(10, 15, 30, 0.9);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.toast-msg.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-msg.success {
    border-left: 4px solid var(--clr-cyan);
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.15), 0 10px 30px rgba(0, 0, 0, 0.5);
}

.toast-msg.error {
    border-left: 4px solid var(--clr-red);
    box-shadow: 0 4px 20px rgba(255, 75, 75, 0.15), 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Configure Product Dialog / Quantity Controls */
.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    color: var(--text-primary);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background var(--transition-fast);
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--clr-cyan);
}

.qty-input {
    width: 40px;
    height: 32px;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-primary);
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.modal-qty-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Cart Items Table Layout (Step 1) */
.cart-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-height: 220px;
    overflow-y: auto;
    margin-bottom: 1.2rem;
    padding-right: 4px;
}

/* Scrollbar styles for Cart items scroll container */
.cart-items-wrapper::-webkit-scrollbar {
    width: 4px;
}
.cart-items-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.01);
}
.cart-items-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.cart-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.cart-item-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
}

.cart-item-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cart-item-plan {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-cyan);
    min-width: 60px;
    text-align: right;
}

.btn-cart-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}

.btn-cart-remove:hover {
    color: var(--clr-red);
}

/* Coupon Form Styles */
.coupon-input-group {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.coupon-status-text {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: none;
}

.coupon-status-text.success {
    color: var(--clr-cyan);
    display: block;
}

.coupon-status-text.error {
    color: var(--clr-red);
    display: block;
}

/* Admin Orders Table Multi-Item View */
.admin-table-order-items-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
    margin-bottom: 6px;
}

.admin-table-order-item {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Coupons Admin Section Form styling */
.active-status-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.2rem;
}

.active-status-checkbox input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--clr-cyan);
}

.coupon-value-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.coupon-value-badge.pct {
    background: rgba(0, 242, 254, 0.1);
    color: var(--clr-cyan);
    border: 1px solid rgba(0, 242, 254, 0.2);
}

.coupon-value-badge.flat {
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

/* Activation Info Box Styles */
.activation-info-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
}

.activation-info-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.activation-info-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.info-section {
    font-size: 0.8rem;
    line-height: 1.5;
}

.info-label {
    display: block;
    color: var(--clr-cyan);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.info-content {
    color: var(--text-secondary);
    margin: 0;
    white-space: pre-wrap;
}

/* ================= CHECKOUT SUCCESS SCREEN ================= */
.success-screen-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0.5rem;
}

.success-icon-glow {
    width: 64px;
    height: 64px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.05) 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(16, 185, 129, 0.6);
    margin-bottom: 1.25rem;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
    animation: success-pulse 2s infinite ease-in-out;
}

@keyframes success-pulse {
    0% {
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.25);
        border-color: rgba(16, 185, 129, 0.5);
    }
    50% {
        box-shadow: 0 0 25px rgba(16, 185, 129, 0.5);
        border-color: rgba(16, 185, 129, 0.9);
    }
    100% {
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.25);
        border-color: rgba(16, 185, 129, 0.5);
    }
}

.success-check-icon {
    width: 32px;
    height: 32px;
    color: #10b981; /* green-500 */
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.success-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    max-width: 340px;
}

.success-details-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    width: 100%;
    max-width: 380px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.success-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

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

.detail-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.detail-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.detail-value.status-pending {
    color: #f59e0b; /* amber-500 */
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon-inline {
    width: 14px;
    height: 14px;
}

.success-info-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 380px;
    text-align: left;
}

.info-alert-icon {
    width: 16px;
    height: 16px;
    color: #3b82f6; /* blue-500 */
    flex-shrink: 0;
    margin-top: 2px;
}

.info-alert-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

.info-alert-text strong {
    color: var(--text-primary);
}

/* ================= STORE SETTINGS STYLING ================= */
.settings-notify-fields {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    animation: fade-in-panel 0.25s ease-out;
}

.settings-notify-fields ol li {
    margin-bottom: 0.4rem;
    color: var(--text-secondary);
}

.settings-notify-fields ol code {
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--text-primary);
}

/* ==========================================================================
   UPGRADE PACK: STOREFRONT & DASHBOARD CUSTOM PREMIUM STYLES
   ========================================================================== */

/* --- 1. Floating WhatsApp Button --- */
.wa-floating-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3), 0 0 20px rgba(37, 211, 102, 0.2);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    text-decoration: none;
}
.wa-floating-btn:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5), 0 0 30px rgba(37, 211, 102, 0.4);
}
.wa-floating-btn svg {
    width: 28px;
    height: 28px;
}
@media (max-width: 768px) {
    .wa-floating-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
    }
    .wa-floating-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* --- 2. Live Product Search & Category Filters --- */
.search-filter-wrapper {
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}
.search-input-group {
    position: relative;
    width: 100%;
    max-width: 500px;
}
.search-input-group input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}
.search-input-group input:focus {
    outline: none;
    border-color: var(--clr-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
    background: rgba(255, 255, 255, 0.05);
}
.search-input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    width: 18px;
    height: 18px;
    transition: color var(--transition-fast);
}
.search-input-group input:focus + i {
    color: var(--clr-cyan);
}
.mobile-filter-select-wrapper {
    display: none;
    width: 100%;
    max-width: 320px;
}
.mobile-filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}
.mobile-filter-select option {
    background: #0f1115;
    color: #ffffff;
}
@media (max-width: 768px) {
    .category-filters {
        display: none !important;
    }
    .mobile-filter-select-wrapper {
        display: block;
    }
}

/* --- 3. Dynamic Product Badges & Stock Indicators --- */
.prod-badge-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.badge-bestseller {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000000;
    border: 1px solid rgba(245, 158, 11, 0.3);
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);
}
.badge-popular {
    background: linear-gradient(135deg, var(--clr-purple) 0%, #a855f7 100%);
    color: #ffffff;
    border: 1px solid rgba(168, 85, 247, 0.3);
}
.badge-instant {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.badge-limited {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    border: 1px solid rgba(239, 68, 68, 0.3);
    animation: pulse-border-red 2s infinite;
}
.badge-recommended {
    background: linear-gradient(135deg, var(--clr-cyan) 0%, var(--clr-blue) 100%);
    color: #000000;
    border: 1px solid rgba(0, 242, 254, 0.3);
}

.stock-status-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
}
.stock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}
.stock-dot.available {
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}
.stock-dot.limited {
    background: #f59e0b;
    box-shadow: 0 0 8px #f59e0b;
}
.stock-dot.outofstock {
    background: #ef4444;
    box-shadow: 0 0 8px #ef4444;
}
.stock-dot.instant {
    background: var(--clr-cyan);
    box-shadow: 0 0 8px var(--clr-cyan);
}
.stock-label {
    color: var(--text-secondary);
}

@keyframes pulse-border-red {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* --- 4. Premium Telegram / WhatsApp Style Reviews --- */
.chat-testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 1rem 0;
}
.chat-bubble-card {
    background: rgba(20, 24, 33, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-normal);
}
.chat-bubble-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}
.chat-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.chat-user-details {
    flex-grow: 1;
}
.chat-user-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.chat-verified-badge {
    color: #26a9e0; /* Telegram blue */
    display: inline-flex;
    align-items: center;
}
.chat-verified-badge svg {
    width: 14px;
    height: 14px;
}
.chat-role-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
}
.chat-star-rating {
    display: flex;
    gap: 2px;
}
.chat-star-rating i {
    width: 13px;
    height: 13px;
    color: #fbbf24;
}
.chat-bubble-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 14px 14px 14px 2px;
    padding: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
}
.chat-bubble-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    color: var(--text-muted);
}
.chat-ticks {
    color: #22c55e;
}
.chat-ticks svg {
    width: 14px;
    height: 14px;
    display: block;
}

/* --- 5. How Activation Works: 4-Step Animated Timeline --- */
.step-timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}
.step-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-50%);
    border-radius: 2px;
}
.step-timeline-fill {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    background: var(--grad-primary);
    transform: translateX(-50%);
    border-radius: 2px;
    transition: height var(--transition-slow);
}
.step-timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
}
.step-timeline-item:last-child {
    margin-bottom: 0;
}
.step-timeline-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #0f1115;
    border: 3px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    z-index: 2;
    transition: all var(--transition-normal);
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
}
.step-timeline-item.active .step-timeline-node {
    border-color: var(--clr-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
    color: var(--clr-cyan);
}
.step-timeline-content-wrapper {
    width: 44%;
}
.step-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}
.step-timeline-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: all var(--transition-normal);
}
.step-timeline-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 242, 254, 0.2);
}
.step-timeline-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.75rem;
}
.step-timeline-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(0, 242, 254, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-cyan);
}
.step-timeline-icon-box svg {
    width: 18px;
    height: 18px;
}
.step-timeline-card-title {
    font-size: 1.1rem;
    font-weight: 600;
}
.step-timeline-card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
@media (max-width: 768px) {
    .step-timeline-line, .step-timeline-fill {
        left: 20px;
        transform: none;
    }
    .step-timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
        margin-bottom: 3rem;
    }
    .step-timeline-node {
        left: 20px;
        transform: translateX(-50%);
    }
    .step-timeline-content-wrapper {
        width: 100%;
    }
}

/* --- 6. FAQ Search & Accordion --- */
.faq-search-wrapper {
    width: 100%;
    max-width: 480px;
    margin: -1.5rem auto 3rem;
}

/* --- 7. Checkout Payment Screenshot Upload --- */
.screenshot-upload-container {
    background: rgba(255, 255, 255, 0.01);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-top: 1rem;
}
.screenshot-upload-container:hover, .screenshot-upload-container.drag-over {
    border-color: var(--clr-cyan);
    background: rgba(0, 242, 254, 0.02);
}
.screenshot-upload-icon {
    width: 32px;
    height: 32px;
    color: var(--text-secondary);
    margin: 0 auto 0.75rem;
}
.screenshot-upload-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
}
.screenshot-upload-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.screenshot-preview-wrapper {
    display: none;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.75rem;
    margin-top: 1rem;
    text-align: left;
}
.screenshot-preview-img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.screenshot-preview-info {
    flex-grow: 1;
    overflow: hidden;
}
.screenshot-preview-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.screenshot-preview-size {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.screenshot-preview-remove {
    background: none;
    border: none;
    color: var(--clr-red);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background var(--transition-fast);
}
.screenshot-preview-remove:hover {
    background: rgba(239, 68, 68, 0.1);
}
.screenshot-preview-remove svg {
    width: 16px;
    height: 16px;
}

/* --- 8. Recent Purchase Notifications --- */
.live-purchase-toast {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 1001;
    background: rgba(13, 16, 23, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0.85rem 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
    pointer-events: auto;
}
.live-purchase-toast.show {
    transform: translateY(0);
    opacity: 1;
}
.toast-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--grad-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: #000000;
    flex-shrink: 0;
}
.toast-body {
    flex-grow: 1;
    font-size: 0.8rem;
    line-height: 1.4;
}
.toast-text {
    color: var(--text-primary);
}
.toast-text strong {
    font-weight: 600;
}
.toast-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.7rem;
    margin-top: 2px;
}
.toast-dot-glow {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 6px #10b981;
}
.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px;
    align-self: flex-start;
    margin-top: -2px;
    margin-right: -4px;
}
.toast-close svg {
    width: 14px;
    height: 14px;
}
@media (max-width: 768px) {
    .live-purchase-toast {
        left: 1rem;
        right: 1rem;
        bottom: 5.5rem;
        max-width: calc(100% - 2rem);
    }
}

/* --- 9. Admin Detail Modal Drawer & Screenshot Viewer --- */
.admin-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1010;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}
.admin-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.admin-drawer-card {
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: #0d1016;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    box-shadow: -10px 0 40px rgba(0,0,0,0.6);
}
.admin-drawer-overlay.active .admin-drawer-card {
    transform: translateX(0);
}
.admin-drawer-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.admin-drawer-title {
    font-size: 1.25rem;
    font-weight: 700;
}
.admin-drawer-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: background var(--transition-fast);
}
.admin-drawer-close:hover {
    background: rgba(255, 255, 255, 0.05);
}
.admin-drawer-close svg {
    width: 20px;
    height: 20px;
}
.admin-drawer-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex-grow: 1;
}
.drawer-section {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    padding-bottom: 1.5rem;
}
.drawer-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.drawer-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--clr-cyan);
    margin-bottom: 0.75rem;
}
.drawer-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.drawer-info-block {
    margin-bottom: 0.75rem;
}
.drawer-info-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.drawer-info-val {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}
.screenshot-admin-thumb {
    width: 100%;
    max-height: 120px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: opacity var(--transition-fast);
}
.screenshot-admin-thumb:hover {
    opacity: 0.8;
}

/* Lightbox Modal for screenshot fullscreen view */
.admin-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}
.admin-lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}
.admin-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
}
.admin-lightbox-close svg {
    width: 32px;
    height: 32px;
}

/* Notes & Warranty Fields */
.admin-textarea-notes {
    width: 100%;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 0.6rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    resize: vertical;
}
.admin-textarea-notes:focus {
    outline: none;
    border-color: var(--clr-cyan);
}
.warranty-counter-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.warranty-counter-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #ffffff;
    cursor: pointer;
    font-weight: bold;
}
.warranty-counter-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* --- 10. Analytics Dashboard & Charts --- */
.analytics-dashboard-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.analytics-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
@media (max-width: 992px) {
    .analytics-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .analytics-grid-4 {
        grid-template-columns: 1fr;
    }
}

.charts-row-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (max-width: 992px) {
    .charts-row-grid {
        grid-template-columns: 1fr;
    }
}
.chart-card {
    padding: 1.5rem;
}
.chart-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.chart-card-title i {
    color: var(--clr-cyan);
    width: 18px;
    height: 18px;
}
.svg-chart-container {
    width: 100%;
    height: 240px;
    position: relative;
}

/* --- 11. Bulk Actions Catalog Toolbar & Checkboxes --- */
.bulk-toolbar-card {
    background: rgba(20, 24, 33, 0.4);
    border: 1px solid rgba(0, 242, 254, 0.15);
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    margin-bottom: 1.25rem;
    display: none; /* Shown dynamically when items are selected */
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fade-in-panel 0.25s ease-out;
}
.bulk-toolbar-info {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}
.bulk-actions-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.bulk-select-action {
    padding: 0.4rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.8rem;
    outline: none;
}
.bulk-action-input {
    width: 90px;
    padding: 0.4rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.8rem;
    display: none;
}

/* Checklist checkbox sizing */
.checkbox-cell {
    width: 40px;
    text-align: center;
}
.checkbox-cell input[type="checkbox"] {
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: var(--clr-cyan);
}

/* --- 12. Quick Copy Reseller Drawer / Card templates --- */
.templates-list-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) {
    .templates-list-wrapper {
        grid-template-columns: 1fr;
    }
}
.template-item-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}
.template-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.template-item-title {
    font-size: 0.95rem;
    font-weight: 700;
}
.template-textarea {
    width: 100%;
    flex-grow: 1;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--text-secondary);
    font-family: monospace;
    font-size: 0.8rem;
    resize: none;
    line-height: 1.4;
    margin-bottom: 1rem;
}
.template-actions-row {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Helper styles for expired warning */
.order-expiry-soon {
    background: rgba(245, 158, 11, 0.03) !important;
    border-left: 3px solid #f59e0b;
}
.order-expired {
    background: rgba(239, 68, 68, 0.03) !important;
    border-left: 3px solid #ef4444;
}

/* General helper style for grid view status */
.search-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-secondary);
}

.stock-tag-product {
    font-size: 0.7rem;
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
}
.stock-tag-available { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.stock-tag-limited { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.stock-tag-outofstock { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.stock-tag-instant { background: rgba(0, 242, 254, 0.1); color: var(--clr-cyan); }

/* ==========================================================================
   PHASE 1: MOBILE FIX + GLOBAL UI POLISH
   ========================================================================== */

/* --- Scroll Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* --- Enhanced Micro-Animations --- */
.product-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.product-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 16px 48px rgba(0, 242, 254, 0.1);
}

.trust-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.trust-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 12px 36px rgba(0, 242, 254, 0.06);
}

.comp-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
}
.comp-card:hover {
    transform: translateY(-3px);
}

.filter-btn {
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.filter-btn:hover {
    transform: translateY(-2px);
}

.testimonial-card {
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 12px 36px rgba(0, 242, 254, 0.06);
}

.faq-item {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(0, 242, 254, 0.15);
}

/* --- Enhanced Glassmorphism --- */
.glass-card {
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

/* --- Mobile Bottom Navigation Bar --- */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(7, 8, 11, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
}

.mobile-bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

.mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 10px;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}
.mob-nav-item i, .mob-nav-item svg {
    width: 20px;
    height: 20px;
}
.mob-nav-item.active {
    color: var(--clr-cyan);
}
.mob-nav-item.active::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--clr-cyan);
    border-radius: 0 0 4px 4px;
}

.mob-nav-badge {
    position: absolute;
    top: 0;
    right: 4px;
    min-width: 16px;
    height: 16px;
    border-radius: 99px;
    background: var(--clr-red);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

/* --- WhatsApp Floating Button Responsive Fix --- */
.wa-floating-btn {
    z-index: 9998;
}

/* ==========================================================================
   SMALL PHONE BREAKPOINT (480px)
   ========================================================================== */
@media (max-width: 480px) {
    section {
        padding: 3.5rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    /* Hero Fixes */
    .hero-section {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }
    .hero-title {
        font-size: 1.85rem !important;
        line-height: 1.2;
        word-break: break-word;
    }
    .hero-title br {
        display: none;
    }
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        margin-bottom: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-trust-metrics {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    .metric-val {
        font-size: 1.2rem !important;
    }
    .metric-lbl {
        font-size: 0.65rem;
    }
    .trust-divider {
        height: 25px;
    }

    /* Hide floating hero cards on small phones */
    .visual-wrapper {
        max-width: 100%;
        height: auto;
        min-height: 200px;
    }
    .floating-card {
        display: none;
    }
    .main-mockup {
        position: relative;
        height: 200px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 2.5rem;
    }
    .section-title {
        font-size: 1.6rem !important;
        line-height: 1.25;
    }
    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Product Cards */
    .product-card {
        padding: 1.4rem;
    }
    .prod-title {
        font-size: 1.15rem;
    }
    .prod-desc {
        font-size: 0.8rem;
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .prod-price-new {
        font-size: 1.6rem;
    }
    .prod-benefits {
        margin-bottom: 1.2rem;
    }
    .prod-benefits li {
        font-size: 0.78rem;
    }

    /* Trust Cards */
    .trust-card {
        padding: 1.5rem;
    }
    .trust-card-title {
        font-size: 1.1rem;
    }
    .trust-card-description {
        font-size: 0.83rem;
    }

    /* Comparison Cards */
    .comp-card {
        padding: 1.5rem;
    }
    .comp-title {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
    }
    .comp-list li {
        font-size: 0.85rem;
    }

    /* Timeline */
    .timeline-item {
        padding-left: 48px;
    }
    .timeline-content h3 {
        font-size: 1rem;
    }
    .timeline-content p {
        font-size: 0.82rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }

    /* FAQ */
    .faq-toggle span {
        font-size: 0.9rem;
    }

    /* Contact Form */
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    /* Footer */
    .footer-bottom-text {
        font-size: 0.75rem;
    }

    /* Add bottom padding for mobile nav */
    body {
        padding-bottom: 70px;
    }

    /* Configure Modal Fix */
    .modal-overlay .modal-box {
        max-height: 90vh;
        margin: 1rem;
        border-radius: 16px;
    }

    /* Category filters */
    .category-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    .filter-btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.78rem;
    }

    /* WhatsApp button positioning */
    .wa-floating-btn {
        bottom: 80px !important;
    }

    /* Buttons */
    .btn-lg {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   MEDIUM MOBILE BREAKPOINT (768px) - ENHANCEMENTS
   ========================================================================== */
@media (max-width: 768px) {
    /* Show mobile bottom nav */
    .mobile-bottom-nav {
        display: block;
    }

    /* Add body padding for bottom nav */
    body {
        padding-bottom: 68px;
    }

    /* Hero visual fixes */
    .visual-wrapper {
        max-width: 320px;
        height: 300px;
    }
    .floating-card {
        transform: scale(0.8);
    }
    .card-1 {
        left: -5%;
        top: 0;
    }
    .card-2 {
        right: -5%;
    }
    .card-3 {
        left: 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }

    /* Move WhatsApp button up above bottom nav */
    .wa-floating-btn {
        bottom: 80px !important;
    }

    /* Cart button hide label on mobile */
    .cart-label {
        display: none;
    }

    /* Hide desktop CTA in header */
    #nav-cta-btn {
        display: none;
    }

    /* Section spacing */
    .section-header {
        margin-bottom: 2.5rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Product card overflow fix */
    .prod-desc {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .prod-benefits li span {
        word-break: break-word;
    }

    /* Modals */
    .modal-box {
        margin: 0.5rem;
        max-height: 95vh;
    }

    /* Testimonial carousel touch improvements */
    .carousel-container {
        overflow: hidden;
        touch-action: pan-y pinch-zoom;
    }
    .testimonial-track {
        cursor: grab;
    }
    .testimonial-track:active {
        cursor: grabbing;
    }

    /* FAQ section */
    .faq-toggle {
        padding: 1rem;
    }
    .faq-content-inner {
        padding: 0 1rem 1rem;
    }

    /* Footer improvements */
    .footer-container {
        text-align: center;
    }
}

/* ==========================================================================
   CLAMP TYPOGRAPHY FOR SMOOTH SCALING
   ========================================================================== */
.hero-title {
    font-size: clamp(1.85rem, 5vw, 3.5rem);
}
.section-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
}
.comp-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}
.metric-val {
    font-size: clamp(1.1rem, 2.5vw, 1.6rem);
}

/* --- Product Card Consistent Heights Fix --- */
.products-grid {
    align-items: stretch;
}
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}
.product-card .prod-desc {
    flex-grow: 1;
    min-height: 0;
}
.product-card .btn {
    margin-top: auto;
    flex-shrink: 0;
}

/* --- Prevent horizontal overflow --- */
html, body {
    overflow-x: hidden;
}

/* ==========================================================================
   ADDITIONAL MOBILE FIXES - MODALS & CHECKOUT
   ========================================================================== */
@media (max-width: 480px) {
    /* Checkout Modal */
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }
    .modal-card {
        max-width: 100%;
        padding: 1.5rem;
        border-radius: 20px 20px 0 0;
        max-height: 92vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .modal-close-btn {
        top: 1rem;
        right: 1rem;
    }
    .modal-header {
        margin-bottom: 1rem;
    }
    .modal-title {
        font-size: 1.1rem;
    }
    .modal-subtitle {
        font-size: 0.75rem;
    }
    .modal-steps-indicator {
        margin-bottom: 1.2rem;
    }
    .checkout-step-dot {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    .checkout-step-dot::after {
        font-size: 0.55rem;
    }
    .plan-selector {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .plan-btn {
        padding: 0.6rem;
    }
    .plan-label {
        font-size: 0.8rem;
    }
    .plan-price {
        font-size: 0.85rem;
    }
    .ps-val-new {
        font-size: 1.3rem;
    }
    .price-summary-box {
        padding: 1rem;
    }
    .modal-footer-dual {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Cart Items */
    .cart-item-row {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    .cart-item-actions {
        width: 100%;
        justify-content: space-between;
    }

    /* UPI Payment */
    .upi-qr-wrapper {
        width: 150px;
        height: 150px;
    }
    .pay-amount {
        font-size: 1.2rem;
    }

    /* Configure Modal */
    .config-modal-overlay {
        padding: 0;
        align-items: flex-end;
    }
    .config-modal-card {
        border-radius: 20px 20px 0 0;
        max-height: 92vh;
        overflow-y: auto;
        padding: 1.5rem;
    }

    /* Contact Section */
    .contact-title {
        font-size: 1.6rem;
    }
    .contact-subtitle {
        font-size: 0.9rem;
    }

    /* Admin Tabs - horizontal scroll */
    .admin-tabs-bar {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex-wrap: nowrap;
        padding-bottom: 2px;
    }
    .admin-tabs-bar::-webkit-scrollbar {
        display: none;
    }
    .admin-tab-btn {
        white-space: nowrap;
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }
    .admin-stats-grid {
        grid-template-columns: 1fr;
    }

    /* Toast notifications */
    .live-purchase-toast {
        max-width: calc(100% - 2rem) !important;
        left: 1rem !important;
        right: 1rem !important;
        bottom: 80px !important;
    }
}

/* --- Global mobile overflow prevention --- */
@media (max-width: 768px) {
    .modal-card {
        max-width: 100%;
        padding: 1.8rem;
    }

    /* Better spacing for products section heading area on mobile */
    .store-search-bar {
        flex-direction: column;
        gap: 0.75rem;
    }
    .store-search-bar input,
    .store-search-bar select {
        width: 100%;
    }

    /* Ensure cart item rows are usable on mobile */
    .cart-item-row {
        padding: 0.75rem 0;
    }

    /* Admin table mobile */
    .admin-table th,
    .admin-table td {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    /* Live purchase toast on mobile */
    .live-purchase-toast {
        bottom: 76px !important;
    }
}

