:root {
    --accent-cyan: #00b0f0;
    --accent-cyan-hover: #0088cc;
    --capsule-bg: rgba(9, 19, 34, 0.85);
    --capsule-border: rgba(0, 216, 255, 0.2);
    --text-white: #ffffff;
    --text-muted: #8a99ad;
    --bottom-bar-bg: #030a16;
}

/* Base Rules */
.floating-header {
    z-index: 1111;
}

.header-capsule {
    background: var(--capsule-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--capsule-border);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.header-logo {
    max-height: 38px;
    width: auto;
}

/* Nav Links Base Styles */
.navigation-links .nav-link {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 4px 0;
    position: relative;
    text-decoration: none;
}

.navigation-links .nav-link:hover,
.navigation-links .nav-link.active {
    color: var(--accent-cyan) !important;
}

/* Hamburger SVG Controls */
.menu-toggle-btn {
    z-index: 10001;
    position: relative;
}

.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
}

.hamRotate.active {
    transform: rotate(45deg);
}

.line {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms, stroke 400ms;
    stroke: var(--text-white);
    stroke-width: 5.5;
    stroke-linecap: round;
}

.ham .top { stroke-dasharray: 40 139; }
.ham .middle { stroke-dasharray: 40 140; }
.ham .bottom { stroke-dasharray: 40 180; }

.ham.active .line { stroke: var(--accent-cyan); }
.ham.active .top { stroke-dashoffset: -98px; }
.ham.active .middle { stroke-dashoffset: -138px; }
.ham.active .bottom { stroke-dashoffset: -138px; }

/* Mobile Drawer */
.menu-backdrop {
    background: rgba(3, 8, 18, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.mobile-drawer {
    width: 360px;
    max-width: 85vw;
    background: #060e1a;
    border-left: 1px solid var(--capsule-border);
    z-index: 9999;
    transform: translateX(100%);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav-links .mobile-link {
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-links .mobile-link span {
    font-size: 12px;
    color: var(--accent-cyan);
    font-weight: 700;
}

/* ==============================================
   MOBILE BOTTOM NAVIGATION (EXACT IMAGE MATCH)
============================================== */
.mobile-bottom-nav {
    z-index: 9997;
    background: var(--bottom-bar-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.7);
}

.bottom-nav-item {
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.2s ease;
    min-width: 60px;
}

.bottom-nav-item i {
    font-size: 18px;
    color: #a3b3c6;
    transition: color 0.3s ease;
}

.bottom-nav-item span {
    letter-spacing: 0.3px;
}

/* Active State Design (Matching Cyan Home Icon) */
.bottom-nav-item.active,
.bottom-nav-item.active i,
.bottom-nav-item.active span {
    color: var(--accent-cyan) !important;
}

.bottom-nav-item:hover {
    color: var(--accent-cyan);
}

.bottom-nav-item:hover i {
    color: var(--accent-cyan);
}

/* Cart Badge Styling Overlay */
.cart-icon-wrapper {
    position: relative;
}

.cart_item_count {
    position: absolute;
    top: -7px;
    left: -12px;
    background: var(--accent-cyan);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 6px rgba(0, 176, 240, 0.6);
    z-index: 2;
}

/* Search Overlay Styling */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(3, 8, 18, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 10000;
}

.search-box {
    width: 100%;
    background: #060e1a;
    padding: 35px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    border-bottom: 1px solid var(--capsule-border);
}

.search-box h3 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 20px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    height: 50px;
}

.search-input-wrapper i {
    padding: 0 15px;
    color: #666;
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
}

.search-input-wrapper button {
    height: 100%;
    border: none;
    background: var(--accent-cyan);
    color: #fff;
    padding: 0 25px;
    font-weight: 600;
}

.search-close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #fff;
    font-size: 24px;
    background: none;
    border: none;
}

/* Page Spacing for Mobile Bottom Nav */
@media (max-width: 1199.98px) {
    body {
        padding-bottom: 65px;
    }
}

/* footer */
/* ==========================================================================
   SITE FOOTER STYLES
   ========================================================================== */

.site-footer {
    background-color: #030712;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* AMBIENT GLOW EFFECT */
.footer-bg-glow {
    position: absolute;
    bottom: -150px;
    left: 20%;
    width: 600px;
    height: 350px;
    background: radial-gradient(
        circle,
        rgba(56, 189, 248, 0.12) 0%,
        rgba(0, 229, 255, 0.03) 50%,
        transparent 80%
    );
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* LOGO & TYPOGRAPHY */
.footer-logo {
    max-height: 48px;
    width: auto;
}

.footer-desc {
    color: #94a3b8 !important;
    max-width: 320px;
    line-height: 1.5;
}

.footer-heading {
    color: #38bdf8;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

/* NAVIGATION LINKS */
.footer-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #38bdf8;
    transform: translateX(2px);
}

/* NEWSLETTER SUBSCRIBE INPUT */
.footer-newsletter-label {
    color: #cbd5e1;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}

.footer-input {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #f8fafc !important;
    font-size: 0.875rem;
    height: 44px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-input:focus {
    border-color: rgba(56, 189, 248, 0.5) !important;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2) !important;
    outline: none;
}

.footer-input::placeholder {
    color: #64748b;
}

.footer-submit-btn {
    background-color: #00e5ff !important;
    color: #030712 !important;
    font-size: 0.8rem;
    height: 34px;
    border: none;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
    transition: all 0.25s ease;
}

.footer-submit-btn:hover {
    background-color: #38bdf8 !important;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

/* SOCIAL ICONS */
.footer-social-link {
    color: #94a3b8;
    font-size: 1.1rem;
    transition: color 0.25s ease, transform 0.25s ease;
}
a.login-link.text-decoration-none {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 4px 0;
    position: relative;
    text-decoration: none;
}
.footer-social-link:hover {
    color: #38bdf8;
    transform: translateY(-2px);
}

/* BOTTOM SECTION */
.footer-bottom-links .footer-link {
    font-size: 0.8rem;
}