/**
 * ============================================================================
 * SHIELDUSA MART — REDESIGNED MASTER DESIGN SYSTEM (ENTERPRISE EDITION)
 * Ultra-Modern US Technology & Cybersecurity E-Commerce Marketplace
 * Featuring Prominent Phone Header, High-Visibility Trust Badges, Clean UI
 * ============================================================================
 */

:root {
    /* Brand Colors */
    --color-primary-darker: #060911;
    --color-primary-dark: #0B132B;
    --color-primary: #0F172A;
    --color-primary-light: #1E293B;
    --color-primary-card: #162032;

    /* Tech Accents */
    --color-accent: #0284C7;
    --color-accent-hover: #0369A1;
    --color-accent-bright: #38BDF8;
    --color-accent-soft: #F0F9FF;
    --color-accent-gradient: linear-gradient(135deg, #0284C7 0%, #2563EB 100%);
    --color-hero-gradient: linear-gradient(135deg, #0B132B 0%, #0F172A 50%, #1E293B 100%);

    /* Security Green & Cyan */
    --color-cyan: #06B6D4;
    --color-cyan-soft: #ECFEFF;
    --color-success: #10B981;
    --color-success-dark: #059669;
    --color-success-soft: #ECFDF5;

    /* Amber & Coral */
    --color-warning: #F59E0B;
    --color-warning-soft: #FFFBEB;
    --color-danger: #EF4444;
    --color-danger-soft: #FEF2F2;

    /* Surfaces & Neutrals */
    --color-bg: #F8FAFC;
    --color-surface: #FFFFFF;
    --color-surface-subtle: #F1F5F9;
    --color-surface-muted: #E2E8F0;
    --color-border: #E2E8F0;
    --color-border-subtle: #F1F5F9;

    /* Typography */
    --color-text-main: #0F172A;
    --color-text-body: #334155;
    --color-text-muted: #64748B;
    --color-text-light: #94A3B8;

    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 1px 3px 0 rgba(15, 23, 42, 0.08), 0 1px 2px -1px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);

    /* Radii */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: var(--color-text-main);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* Utilities */
.text-center { text-align: center; }
.text-start { text-align: left; }
.text-end { text-align: right; }
.text-muted { color: var(--color-text-muted); }
.text-accent { color: var(--color-accent) !important; }
.text-cyan { color: var(--color-cyan) !important; }
.text-success { color: var(--color-success) !important; }
.text-danger { color: var(--color-danger) !important; }
.text-warning { color: var(--color-warning) !important; }
.text-white { color: #FFFFFF !important; }
.fw-semibold { font-weight: 600; }
.fw-bold { font-weight: 700; }
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.flex-wrap { flex-wrap: wrap; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }
.me-1 { margin-right: 0.25rem; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }
.ms-2 { margin-left: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    line-height: 1.5;
}
.alert-success { background: var(--color-success-soft); color: var(--color-success-dark); border: 1px solid #A7F3D0; }
.alert-danger { background: var(--color-danger-soft); color: #B91C1C; border: 1px solid #FECACA; }
.alert-info { background: var(--color-accent-soft); color: #0369A1; border: 1px solid #BAE6FD; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: center;
    line-height: 1.4;
    user-select: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-accent-gradient);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0369A1 0%, #1D4ED8 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--color-primary);
    color: #FFFFFF;
}

.btn-secondary:hover {
    background: var(--color-primary-light);
    color: #FFFFFF;
}

.btn-outline {
    background: transparent;
    border-color: var(--color-border);
    color: var(--color-text-main);
}

.btn-outline:hover {
    background: var(--color-surface-subtle);
    border-color: var(--color-text-muted);
}

.btn-outline-accent {
    background: transparent;
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-outline-accent:hover {
    background: var(--color-accent-soft);
}

.btn-sm {
    padding: 0.45rem 0.95rem;
    font-size: 0.82rem;
}

.btn-lg {
    padding: 0.85rem 1.85rem;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ================= 1. TOP ANNOUNCEMENT & TRUST BAR ================= */
.top-announcement-bar {
    background: #090E1A;
    color: #94A3B8;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.4rem 0;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-announcement-left, .top-announcement-right {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.us-flag-chip {
    font-weight: 700;
    color: #F8FAFC;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.15rem 0.55rem;
    border-radius: var(--radius-xs);
}

.announcement-text {
    color: #CBD5E1;
    font-weight: 500;
}

.bar-separator {
    color: #334155;
}

.top-nav-item {
    color: #94A3B8;
    transition: color var(--transition-fast);
}

.top-nav-item:hover {
    color: #FFFFFF;
}

/* ================= 2. PROMINENT MAIN HEADER ================= */
.master-header {
    background: #FFFFFF;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-flex-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    gap: 1.5rem;
}

.header-brand-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mobile-menu-trigger {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.35rem;
    color: var(--color-text-main);
    cursor: pointer;
    padding: 0.4rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.shield-logo-icon {
    width: 44px;
    height: 44px;
    background: var(--color-accent-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.35rem;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.brand-accent {
    color: var(--color-accent);
}

.brand-tagline {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-cyan);
    letter-spacing: 0.18em;
    line-height: 1;
}

/* Fast Search Bar */
.header-search-container {
    flex: 1;
    max-width: 520px;
    position: relative;
}

.main-search-form {
    width: 100%;
}

.search-box-wrap {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.search-lens-icon {
    position: absolute;
    left: 1.1rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    pointer-events: none;
}

.search-text-field {
    width: 100%;
    padding: 0.7rem 5.75rem 0.7rem 2.75rem;
    font-size: 0.92rem;
    background: var(--color-surface-subtle);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-full);
    outline: none;
    color: var(--color-text-main);
    transition: all var(--transition-fast);
}

.search-text-field:focus {
    background: #FFFFFF;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.search-action-btn {
    position: absolute;
    right: 4px;
    background: var(--color-accent);
    color: #FFFFFF;
    border: none;
    padding: 0.45rem 1.15rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.search-action-btn:hover {
    background: var(--color-accent-hover);
}

.search-results-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

.search-results-dropdown.show {
    display: block;
}

/* Header Right Actions */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

/* ================= 📞 PROMINENT PHONE CALL BADGE (ON TOP) ================= */
.prominent-phone-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #F0F9FF;
    border: 1.5px solid #BAE6FD;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.prominent-phone-badge:hover {
    background: #E0F2FE;
    border-color: #7DD3FC;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.phone-pulse-ring {
    width: 36px;
    height: 36px;
    background: var(--color-accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1rem;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2);
}

.phone-details {
    display: flex;
    flex-direction: column;
}

.phone-caption {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.phone-digit {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
}

/* User Account Dropdown */
.user-account-dropdown {
    position: relative;
}

.account-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid transparent;
    padding: 0.45rem 0.65rem;
    border-radius: var(--radius-sm);
    color: var(--color-text-main);
    cursor: pointer;
    font-size: 0.88rem;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.account-btn:hover {
    background: var(--color-surface-subtle);
}

.account-btn i {
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

.btn-text-wrap {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-sub {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    line-height: 1.1;
}

.btn-main {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

.account-popover {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 250px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: none;
    z-index: 1000;
}

.user-account-dropdown:hover .account-popover {
    display: block;
}

.popover-user-info {
    padding: 1rem;
    background: var(--color-surface-subtle);
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
}

.popover-divider {
    height: 1px;
    background: var(--color-border);
}

.popover-link {
    display: flex;
    align-items: center;
    padding: 0.65rem 1rem;
    color: var(--color-text-main);
    font-size: 0.85rem;
    font-weight: 500;
    transition: background var(--transition-fast);
}

.popover-link:hover {
    background: var(--color-surface-subtle);
    color: var(--color-accent);
}

/* Cart Pill Button */
.cart-pill-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent-soft);
    border: 1.5px solid #BAE6FD;
    color: var(--color-accent);
    border-radius: var(--radius-md);
    padding: 0.45rem 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cart-pill-btn:hover {
    background: #E0F2FE;
    border-color: #7DD3FC;
}

.cart-icon-holder {
    position: relative;
    font-size: 1.2rem;
}

.cart-item-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--color-danger);
    color: #FFFFFF;
    font-size: 0.68rem;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

.cart-item-badge.show {
    display: flex;
}

.cart-price-holder {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.cart-label {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    line-height: 1.1;
}

.cart-amount {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--color-primary);
}

.mobile-search-strip {
    display: none;
    padding: 0.5rem 0 0.75rem;
    background: #FFFFFF;
    border-top: 1px solid var(--color-border-subtle);
}

/* ================= 3. MASTER NAVBAR & MEGA MENUS ================= */
.main-navbar {
    background: var(--color-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.85rem 1.05rem;
    color: #CBD5E1;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    border-bottom: 2px solid transparent;
}

.nav-arrow {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.nav-item:hover .nav-arrow {
    transform: rotate(180deg);
}

.nav-link:hover, .nav-item.active .nav-link {
    color: #38BDF8;
    background: rgba(255, 255, 255, 0.06);
    border-bottom-color: #38BDF8;
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: none;
    flex-direction: column;
    padding: 0.5rem 0;
    z-index: 999;
}

.dropdown-link {
    display: flex;
    align-items: center;
    padding: 0.65rem 1rem;
    color: var(--color-text-main);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background var(--transition-fast);
}

.dropdown-link:hover {
    background: var(--color-surface-subtle);
    color: var(--color-accent);
}

.nav-item:hover .nav-dropdown {
    display: flex;
}

/* Mega Menu */
.has-mega-menu {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border-top: 1px solid var(--color-border);
    border-bottom: 2px solid var(--color-border);
    box-shadow: var(--shadow-xl);
    display: none;
    padding: 2rem 0;
    z-index: 999;
}

.nav-item:hover .mega-menu {
    display: block;
}

.mega-menu-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr;
    gap: 2.5rem;
}

.mega-title {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 800;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 1.5px solid var(--color-border);
}

.mega-link {
    display: block;
    padding: 0.4rem 0;
    color: var(--color-text-body);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.mega-link:hover {
    color: var(--color-accent);
    padding-left: 4px;
}

.mega-featured-card {
    background: var(--color-surface-subtle);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.featured-badge {
    display: inline-block;
    background: var(--color-accent);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-xs);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.mega-featured-card h5 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.mega-featured-card p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.featured-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-primary);
}

.navbar-cta-wrap {
    padding: 0.4rem 0;
}

/* ================= 4. MOBILE DRAWER ================= */
.mobile-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 14, 26, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
}

.mobile-drawer-backdrop.show, .mobile-drawer-backdrop.open {
    display: block;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: #0F172A;
    z-index: 2001;
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.35);
}

.mobile-menu-drawer.show, .mobile-menu-drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-close {
    background: transparent;
    border: none;
    font-size: 1.75rem;
    color: #94A3B8;
    cursor: pointer;
}

.drawer-body {
    padding: 1.25rem 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.mobile-drawer-call-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(2, 132, 199, 0.15);
    border: 1px solid rgba(2, 132, 199, 0.3);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    text-decoration: none;
}

.drawer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.drawer-link {
    display: flex;
    align-items: center;
    padding: 0.65rem 0.5rem;
    color: #E2E8F0;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.drawer-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #38BDF8;
}

/* ================= 5. SLIDE-IN CART DRAWER ================= */
.cart-slide-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100%;
    background: #FFFFFF;
    z-index: 2001;
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
}

.cart-slide-drawer.show, .cart-slide-drawer.open {
    transform: translateX(0);
}

.cart-drawer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.cart-heading {
    font-size: 1.15rem;
    margin: 0;
}

.cart-drawer-content {
    padding: 1.25rem 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.cart-empty-panel {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-icon {
    font-size: 3rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-drawer-card {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.card-img-thumb {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-sm);
    background: var(--color-surface-subtle);
    padding: 4px;
    flex-shrink: 0;
}

.card-img-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card-info-wrap {
    flex: 1;
}

.card-prod-title {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.card-prod-title a {
    color: var(--color-text-main);
}

.card-specs {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.mini-spec-pill {
    font-size: 0.7rem;
    background: var(--color-surface-subtle);
    color: var(--color-text-muted);
    padding: 0.15rem 0.45rem;
    border-radius: var(--radius-xs);
}

.card-pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xs);
    background: #FFFFFF;
}

.qty-btn {
    background: transparent;
    border: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-weight: 700;
    color: var(--color-text-main);
}

.qty-value {
    padding: 0 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-subtotal-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-accent);
}

.remove-item-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    line-height: 1;
}

.remove-item-btn:hover {
    color: var(--color-danger);
}

.cart-drawer-bottom {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--color-border);
    background: var(--color-surface-subtle);
}

.cart-subtotal-summary {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cart-delivery-guarantee {
    font-size: 0.78rem;
    color: var(--color-success-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

/* ================= 6. HERO SECTION ================= */
.hero-section {
    background: linear-gradient(180deg, rgba(8, 14, 28, 0.75) 0%, rgba(10, 16, 32, 0.88) 100%), 
                url('../images/hero-cyber-bg.jpg') center center / cover no-repeat;
    color: #FFFFFF;
    padding: 5.5rem 0 5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 75% 30%, rgba(2, 132, 199, 0.28) 0%, transparent 65%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(2, 132, 199, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.5);
    color: #38BDF8;
    padding: 0.4rem 0.95rem;
    border-radius: var(--radius-full);
    font-size: 0.84rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.hero-title {
    font-size: 3.35rem;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-title span {
    background: linear-gradient(135deg, #38BDF8 0%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #E2E8F0;
    line-height: 1.65;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-trust-chips {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: #CBD5E1;
}

.hero-visual-card {
    background: rgba(15, 23, 42, 0.72);
    border: 1.5px solid rgba(56, 189, 248, 0.3);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(2, 132, 199, 0.2);
}

.shield-security-display {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.sec-display-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.95rem 1.15rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: all var(--transition-fast);
}

.sec-display-item:hover {
    background: rgba(2, 132, 199, 0.2);
    border-color: rgba(56, 189, 248, 0.5);
    transform: translateX(4px);
}

.sec-display-icon {
    width: 44px;
    height: 44px;
    background: var(--color-accent-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #FFFFFF;
    flex-shrink: 0;
}

/* Page Hero Banner for Inner Pages */
.page-hero-banner {
    background: linear-gradient(180deg, rgba(8, 14, 28, 0.8) 0%, rgba(10, 16, 32, 0.92) 100%), 
                url('../images/hero-cyber-bg.jpg') center center / cover no-repeat;
    color: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: 3.5rem 2.5rem;
    margin-bottom: 3.5rem;
    border: 1.5px solid rgba(56, 189, 248, 0.25);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

/* ================= 7. QUICK CATEGORIES / GATEWAYS ================= */
.quick-categories-section {
    margin-top: -2.5rem;
    position: relative;
    z-index: 10;
    margin-bottom: 3.5rem;
}

.quick-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.quick-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: #93C5FD;
}

.quick-card-icon {
    width: 50px;
    height: 50px;
    background: var(--color-accent-soft);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
}

.quick-card h3 {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
}

.quick-card p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.quick-card-action {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* ================= 8. PRODUCT CARDS & GRID ================= */
.section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    background: var(--color-accent-soft);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-normal);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: #93C5FD;
}

.card-badge-wrap {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.product-badge {
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.2rem 0.55rem;
    border-radius: var(--radius-xs);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.badge-discount {
    background: var(--color-danger);
    color: #FFFFFF;
}

.badge-bestseller {
    background: var(--color-warning);
    color: #0F172A;
}

.badge-featured {
    background: var(--color-accent);
    color: #FFFFFF;
}

.card-actions-quick {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.quick-act-btn {
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    cursor: pointer;
    box-shadow: var(--shadow-xs);
    transition: all var(--transition-fast);
}

.quick-act-btn:hover {
    background: var(--color-accent-soft);
    color: var(--color-accent);
}

.product-img-wrap {
    height: 190px;
    background: #090E1A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.product-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform var(--transition-normal);
}

.product-card:hover .product-img {
    transform: scale(1.04);
}

.product-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 700;
    margin-bottom: 0.35rem;
    letter-spacing: 0.05em;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.product-title a {
    color: var(--color-text-main);
}

.product-title a:hover {
    color: var(--color-accent);
}

.product-specs-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.spec-pill {
    background: var(--color-surface-subtle);
    color: var(--color-text-body);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-xs);
    border: 1px solid var(--color-border);
}

.product-pricing {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: auto;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text-main);
}

.old-price {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
    margin-left: 0.35rem;
}

.rating-box {
    font-size: 0.8rem;
    color: var(--color-warning);
}

/* ================= 9. SMART FINDER & TRUST PILLARS ================= */
.quick-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.quick-chip {
    background: #FFFFFF;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
    color: var(--color-text-body);
}

.quick-chip:hover {
    border-color: var(--color-accent);
    background: var(--color-accent-soft);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-us-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.why-icon {
    font-size: 2rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.why-us-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.why-us-card p {
    font-size: 0.9rem;
    color: var(--color-text-body);
    line-height: 1.6;
}

/* ================= 10. SITE FOOTER ================= */
.site-footer {
    background: var(--color-primary-dark);
    color: #94A3B8;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-trust-banner {
    background: #090E1A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.trust-icon {
    font-size: 1.75rem;
    color: #38BDF8;
}

.trust-info h4 {
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.trust-info p {
    font-size: 0.82rem;
    line-height: 1.4;
    color: #94A3B8;
}

.footer-main {
    padding: 3.5rem 0 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: #38BDF8;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-bio {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer-security-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sec-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #E2E8F0;
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-xs);
}

.footer-heading {
    color: #FFFFFF;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    color: #94A3B8;
    font-size: 0.85rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: #38BDF8;
}

.footer-col-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer-contact-item i {
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: #64748B;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-val {
    color: #FFFFFF;
    font-size: 0.88rem;
}

.footer-bottom {
    background: #060911;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.payment-methods-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.accepted-label {
    color: #64748B;
    font-size: 0.78rem;
}

.pay-chip {
    background: rgba(255, 255, 255, 0.08);
    color: #CBD5E1;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-xs);
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* ================= 11. SHIELDASSIST AI + HUMAN SUPPORT POPUP ================= */
.shieldassist-launcher {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--color-accent-gradient);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-full);
    padding: 0.75rem 1.35rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.45);
    z-index: 2100;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    transition: all var(--transition-fast);
    user-select: none;
}

.shieldassist-launcher:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 35px rgba(2, 132, 199, 0.55);
}

.launcher-icon {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.launcher-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.launcher-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
}

.launcher-status {
    font-size: 0.68rem;
    font-weight: 600;
    color: #7DD3FC;
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 6px #10B981;
}

/* Floating Window */
.shieldassist-window {
    position: fixed;
    bottom: 95px;
    right: 25px;
    width: 390px;
    max-width: calc(100vw - 30px);
    height: 580px;
    max-height: calc(100vh - 120px);
    background: #FFFFFF;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
    z-index: 2200;
    display: none; /* Hidden until clicked */
    flex-direction: column;
    overflow: hidden;
    animation: shieldAssistSlideUp 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.shieldassist-window.show {
    display: flex !important;
}

@keyframes shieldAssistSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat-header {
    background: linear-gradient(135deg, #0B132B 0%, #0F172A 100%);
    color: #FFFFFF;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-avatar {
    width: 38px;
    height: 38px;
    background: var(--color-accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #FFFFFF;
    position: relative;
}

.online-indicator {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 9px;
    height: 9px;
    background: var(--color-success);
    border: 2px solid #0F172A;
    border-radius: 50%;
}

.chat-title {
    font-size: 1rem;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-ai {
    font-size: 0.65rem;
    background: rgba(56, 189, 248, 0.2);
    color: #38BDF8;
    border: 1px solid rgba(56, 189, 248, 0.4);
    padding: 1px 6px;
    border-radius: var(--radius-xs);
    font-weight: 700;
}

.chat-subtitle {
    font-size: 0.75rem;
    color: #94A3B8;
    margin: 0;
}

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

.chat-action-btn {
    background: transparent;
    border: none;
    color: #94A3B8;
    cursor: pointer;
    padding: 0.35rem;
    font-size: 0.95rem;
    border-radius: var(--radius-xs);
    transition: color var(--transition-fast);
}

.chat-action-btn:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
}

.chat-escalation-banner {
    background: #F0F9FF;
    border-bottom: 1px solid #BAE6FD;
    padding: 0.45rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #0369A1;
}

.btn-escalate-call {
    font-weight: 700;
    color: #0284C7;
    text-decoration: underline;
}

.chat-messages {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    background: #F8FAFC;
}

.chat-msg {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    max-width: 90%;
}

.msg-assistant {
    align-self: flex-start;
}

.msg-user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.msg-avatar {
    width: 30px;
    height: 30px;
    background: var(--color-primary);
    color: #38BDF8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.msg-content {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    border-top-left-radius: 2px;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--color-text-main);
    box-shadow: var(--shadow-xs);
}

.msg-user .msg-content {
    background: var(--color-accent-gradient);
    color: #FFFFFF;
    border-color: transparent;
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: 2px;
}

.msg-time {
    display: none;
}

.quick-options-grid {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.quick-chip {
    background: #FFFFFF;
    border: 1.5px solid #BAE6FD;
    color: var(--color-accent);
    padding: 0.55rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.quick-chip:hover {
    background: var(--color-accent);
    color: #FFFFFF;
    border-color: var(--color-accent);
}

.chip-highlight {
    background: #FFF1F2;
    border-color: #FECDD3;
    color: #E11D48;
}

.chip-highlight:hover {
    background: #E11D48;
    color: #FFFFFF;
    border-color: #E11D48;
}

/* Human Escalation Pane */
.human-escalation-pane {
    background: #FFFFFF;
    border-top: 1.5px solid var(--color-border);
    padding: 1rem 1.25rem;
    flex-direction: column;
}

.escalation-pane-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.escalation-pane-header h5 {
    font-size: 0.95rem;
    margin: 0;
}

.btn-close-pane {
    background: transparent;
    border: none;
    font-size: 1.25rem;
    color: var(--color-text-muted);
    cursor: pointer;
}

.escalation-options-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.escalate-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.escalate-item:hover {
    background: var(--color-accent-soft);
    border-color: #BAE6FD;
}

.esc-icon {
    font-size: 1.15rem;
}

.esc-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.esc-details strong {
    font-size: 0.85rem;
    color: var(--color-text-main);
}

.esc-details span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.esc-arrow {
    color: var(--color-accent);
    font-size: 0.85rem;
}

/* Chat Footer & Input */
.chat-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--color-border);
    background: #FFFFFF;
}

.chat-input-wrap {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.chat-input {
    flex: 1;
    padding: 0.6rem 0.95rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: 0.88rem;
    outline: none;
    color: var(--color-text-main);
    background: var(--color-surface-subtle);
    transition: all var(--transition-fast);
}

.chat-input:focus {
    background: #FFFFFF;
    border-color: var(--color-accent);
}

.chat-send-btn {
    width: 38px;
    height: 38px;
    background: var(--color-accent);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background var(--transition-fast);
}

.chat-send-btn:hover {
    background: var(--color-accent-hover);
}

.chat-footer-note {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 0.4rem;
}

.toast-container {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 9999;
}

.toast {
    background: var(--color-primary);
    color: #FFFFFF;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    box-shadow: var(--shadow-lg);
}

/* ================= 12. TABLES & BREADCRUMBS ================= */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.breadcrumb-separator {
    color: var(--color-text-muted);
    font-size: 0.75rem;
}

.breadcrumb-current {
    color: var(--color-text-main);
    font-weight: 600;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th {
    background: var(--color-surface-subtle);
    padding: 0.95rem 1rem;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-main);
    border-bottom: 1.5px solid var(--color-border);
}

.compare-table td {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

/* ================= 13. RESPONSIVE MEDIA QUERIES ================= */
@media (max-width: 1199px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
    .hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 991px) {
    .main-navbar {
        display: none;
    }
    .mobile-menu-trigger {
        display: block;
    }
    .mobile-search-strip {
        display: block;
    }
    .header-search-container {
        display: none;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .quick-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 2rem;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .user-account-dropdown .btn-text-wrap {
        display: none;
    }
    .cart-price-holder {
        display: none;
    }
}

@media (max-width: 767px) {
    .top-announcement-right {
        display: none;
    }
    .header-flex-row {
        padding-top: 0.6rem;
        padding-bottom: 0.6rem;
    }
    .hero-title {
        font-size: 2.15rem;
    }
    .quick-cards-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    .section-title {
        font-size: 1.85rem;
    }
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }
    .prominent-phone-badge .phone-caption {
        display: none;
    }
    .prominent-phone-badge .phone-digit {
        font-size: 0.88rem;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .brand-name {
        font-size: 1.2rem;
    }
    .shield-logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}
