/* ================================================================
   Tech2 Theme — tech2 · NEXUS
   Style : Dark Electric Futuristic · Lime Neon Accent
   Palette driven by 8 injected CSS variables:
   --bg, --primary, --accent, --text-dark, --text-light,
   --primary-text, --accent-text, --muted
   Fonts: Orbitron (title-font) + DM Sans (font-family)
================================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg);
    color: var(--text-light);
    font-family: var(--font-family);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--title-font);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 1px;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2.4rem, 6vw, 5rem);
    letter-spacing: 2px;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
}

h3 {
    font-family: var(--font-family);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}

p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 0.9rem;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    transition: all 0.35s ease;
}

.terms-conditions {
    margin-top: 90px;
    padding: 40px;
}



/*///////////////////////////////
///////// SCROLLBAR /////////////
//////////////////////////////////
////////////////////////////////
/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(131, 131, 131, 0.318);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 10px;
    transition: 0.3s;
}

*::-webkit-scrollbar-button,
*::-webkit-scrollbar-button:single-button,
*::-webkit-scrollbar-button:single-button:horizontal,
*::-webkit-scrollbar-button:single-button:vertical,
*::-webkit-scrollbar-button:decrement,
*::-webkit-scrollbar-button:increment,
*::-webkit-scrollbar-button:start,
*::-webkit-scrollbar-button:end {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
    border: none !important;
}


/* ── TOKENS ── */
:root {
    /* Derived from --primary automatically */
    --lime-glow: 0 0 20px color-mix(in srgb, var(--primary) 45%, transparent),
        0 0 60px color-mix(in srgb, var(--primary) 15%, transparent);
    --lime-glow-sm: 0 0 12px color-mix(in srgb, var(--primary) 35%, transparent);
    --lime-alpha: color-mix(in srgb, var(--primary) 8%, transparent);
    --lime-alpha-md: color-mix(in srgb, var(--primary) 14%, transparent);
    --lime-border: color-mix(in srgb, var(--primary) 22%, transparent);
    --lime-border-h: color-mix(in srgb, var(--primary) 50%, transparent);

    /* White-based — not tied to palette, kept as-is */
    --card-bg: rgba(255, 255, 255, 0.035);
    --card-border: rgba(255, 255, 255, 0.07);
    --card-hover: rgba(255, 255, 255, 0.055);

    --radius: 12px;
    --radius-sm: 8px;
    --radius-pill: 50px;
    --trans: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --trans-fast: all 0.25s ease;
}

/* ── UTILS ── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 36px;
}

.section-padding {
    padding: 110px 0;
}

/* Scanline overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse, color-mix(in srgb, var(--primary) 7%, transparent) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9997;
}

/* Ambient lime glow top-center */
body::before {
    content: '';
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, color-mix(in srgb, var(--primary) 7%, transparent) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

section,
header,
footer,
.hero {
    position: relative;
    z-index: 1;
}

/* ================================================================
   BUTTONS
================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    border-radius: var(--radius-pill);
    position: relative;
    overflow: hidden;
    transition: var(--trans);
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    transform: translateX(-101%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover::after {
    transform: translateX(0);
}

.btn-yellow {
    background: var(--primary);
    color: var(--primary-text);
    box-shadow: var(--lime-glow-sm);
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: var(--lime-glow);
}

.btn-dark {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--lime-border);
    border-radius: var(--radius-pill);
}

.btn-dark:hover {
    background: var(--lime-alpha);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--lime-glow-sm);
}

.btn-dark::after {
    display: none;
}

/* ================================================================
   HEADER
================================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--card-border);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 36px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-link {
    background: none;
    border: none;
    color: rgba(240, 240, 240, 0.55);
    font-family: var(--font-family);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 14px;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: var(--trans-fast);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--lime-alpha);
}

/* Dropdown */
.dropdown-wrapper {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 309x;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(12, 12, 12, 0.98);
    border: 1px solid var(--lime-border);
    border-radius: var(--radius);
    padding: 8px 0;
    min-width: 200px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), var(--lime-glow-sm);
    backdrop-filter: blur(20px);
    animation: dropIn 0.2s ease;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.dropdown-wrapper:hover .dropdown-content {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--trans-fast);
}

.dropdown-item:hover {
    color: var(--primary);
    background: var(--lime-alpha);
    padding-left: 24px;
}

.right-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-class select {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    outline: none;
    font-family: var(--font-family);
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-icon-wrapper button {
    background: var(--primary);
    border: none;
    color: var(--primary-text);
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--trans-fast);
    box-shadow: var(--lime-glow-sm);
    font-weight: 700;
}

.cart-icon-wrapper button:hover {
    box-shadow: var(--lime-glow);
    transform: translateY(-1px);
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -7px;
    background: var(--accent);
    color: var(--accent-text);
    border: 1px solid var(--lime-border);
    font-size: 0.6rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burger-button {
    display: none;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-light);
    padding: 8px 13px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-size: 1rem;
    margin-left: 10px;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(30px);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-right: 1px solid var(--card-border);
}

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

.m-menu-container {
    padding: 28px 24px;
    height: 100%;
    overflow-y: auto;
}

.mobile-menu-link {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 0;
    border-bottom: 1px solid var(--card-border);
    transition: var(--trans-fast);
}

.mobile-menu-link:hover {
    color: var(--primary);
    padding-left: 8px;
}

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

.dropdown-content-mobile {
    display: none;
    padding-left: 14px;
}

.dropdown-content-mobile.active {
    display: block;
}

.backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.backdrop-visible {
    opacity: 1;
    pointer-events: auto;
}

/* Cart sidebar */
#cart-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

#cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 410px;
    height: 100vh;
    background: rgba(14, 14, 14, 0.99);
    border-left: 1px solid var(--lime-border);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 28px 26px;
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--lime-alpha);
    border: 1px solid var(--lime-border);
    color: var(--primary);
    font-size: 1rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-fast);
}

.close-btn:hover {
    background: var(--primary);
    color: var(--primary-text);
}

.cart-title {
    font-family: var(--title-font);
    font-size: 1.3rem;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 20px;
}

#cart-form label {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 12px;
    display: block;
}

#cart-form input,
#cart-form textarea {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--lime-border);
    border-radius: var(--radius-sm);
    padding: 9px 12px;
    font-family: var(--font-family);
    font-size: 0.875rem;
    color: var(--text-light);
    outline: none;
    transition: var(--trans-fast);
}

#cart-form input:focus,
#cart-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--lime-alpha);
}

.section-title {
    font-family: var(--title-font);
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--primary);
    margin: 18px 0 10px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
    color: var(--text-light);
}

.cart-table th {
    text-align: left;
    padding: 6px 4px;
    border-bottom: 1px solid var(--card-border);
    color: var(--muted);
    font-weight: 600;
    font-size: 0.66rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-table td {
    padding: 9px 4px;
    border-bottom: 1px solid var(--card-border);
    vertical-align: middle;
}

.prod-img img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--lime-border);
}

.prod-price {
    color: var(--primary);
    font-weight: 700;
}

.delete-btn {
    color: var(--muted);
    cursor: pointer;
    transition: var(--trans-fast);
}

.delete-btn:hover {
    color: #ff4455;
}

.qty-input {
    background: var(--lime-alpha);
    border: 1px solid var(--lime-border);
    color: var(--text-light);
    border-radius: 4px;
    padding: 3px 8px;
    width: 50px;
}

.shipment {
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--lime-alpha);
    border: 1px solid var(--lime-border);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--muted);
}

.shipment .price {
    color: var(--primary);
    font-weight: 700;
}

.bottom-row {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--card-border);
}

.total {
    font-family: var(--title-font);
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: var(--text-light);
}

.shop-btn {
    background: var(--primary);
    color: var(--primary-text);
    border: none;
    padding: 8px 9px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--trans-fast);
    box-shadow: var(--lime-glow-sm);
}

.shop-btn:hover {
    box-shadow: var(--lime-glow);
    transform: translateY(-1px);
}

#template-alert {
    position: fixed;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.97);
    color: var(--primary);
    border: 1px solid var(--lime-border);
    padding: 13px 30px;
    border-radius: var(--radius-pill);
    font-family: var(--font-family);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 9999;
    opacity: 0;
    transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
    white-space: nowrap;
    box-shadow: var(--lime-glow);
}

/* ================================================================
   HERO — Dark full-bleed with device mockup & neon glow
================================================================ */
.hero {
    min-height: 100vh;
    padding-top: 66px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

/* Grid lines bg */
.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(184, 240, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(184, 240, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Big lime glow orb top-right */
.hero-orb {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, color-mix(in srgb, var(--primary) 9%, transparent) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

/* ── HERO LEFT ── */
.hero-left {
    position: relative;
    z-index: 2;
    padding: 80px 50px 80px 60px;
    display: flex;
    flex-direction: column;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-family: var(--font-family);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp 0.6s 0.1s forwards;
}

.hero-label::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: var(--lime-glow-sm);
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-left h1 {
    color: var(--text-light);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.7s 0.25s forwards;
}

/* Lime word highlight */
.hero-left h1 .lime {
    color: var(--primary);
    text-shadow: var(--lime-glow-sm);
}

.hero-left p {
    max-width: 430px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.6s 0.4s forwards;
}

/* User avatars + counter (like reference) */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.6s 0.52s forwards;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    overflow: hidden;
    margin-left: -10px;
    background: var(--accent);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--lime-alpha);
    letter-spacing: 0;
}

.hero-count-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.hero-count-text strong {
    font-family: var(--title-font);
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--primary);
    text-shadow: var(--lime-glow-sm);
    line-height: 1;
}

.hero-count-text span {
    font-size: 0.68rem;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.6s 0.65s forwards;
}

/* ── HERO RIGHT — device mockup showcase ── */
.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 60px 60px 20px;
}

.hero-device-wrap {
    position: relative;
}

/* Main device image — large */
.hero-device-main {
    width: 80%;
    position: relative;
    z-index: 4;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px var(--lime-border),
        0 40px 100px rgba(0, 0, 0, 0.7),
        var(--lime-glow-sm);
    opacity: 0;
    animation: fadeScale 0.9s 0.5s forwards;
}

.hero-device-main img {
    width: 100%;
}

/* Second device — offset behind */
.hero-device-secondary {
    position: absolute;
    right: 50px;
    top: -55px;
    width: 300px;
    z-index: 3;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeScale 0.9s 0.75s forwards;
    transform: rotate(8deg);
}

.hero-device-secondary img {
    width: 100%;
}

/* Glow ring behind devices */
.hero-glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(184, 240, 0, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Floating stat cards */
.hero-stat-card {
    position: absolute;
    background: rgba(20, 20, 20, 0.92);
    border: 1px solid var(--lime-border);
    border-radius: var(--radius);
    padding: 12px 16px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), var(--lime-glow-sm);
    z-index: 4;
}

.hero-stat-card .sc-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 4px;
}

.hero-stat-card .sc-value {
    font-family: var(--title-font);
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--primary);
    text-shadow: var(--lime-glow-sm);
}

.hsc-1 {
    top: 10%;
    left: -30px;
    opacity: 0;
    animation: fadeUp 0.6s 1s forwards;
}

.hsc-2 {
    bottom: 15%;
    right: 50px;
    opacity: 0;
    animation: fadeUp 0.6s 1.2s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ================================================================
   TRUSTED SECTION — big text + description split (like reference)
================================================================ */
.trusted-section {
    padding: 90px 0;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.trusted-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trusted-left h2 {
    color: var(--text-light);
}

.trusted-left h2 .lime {
    color: var(--primary);
    text-shadow: var(--lime-glow-sm);
}

.trusted-right p {
    font-size: 0.9rem;
    line-height: 1.85;
    margin-bottom: 24px;
}

/* ================================================================
   FEATURES GRID — 3 cards, center one highlighted in lime (ref)
================================================================ */
.features-section {
    padding: 100px 0;
    background: var(--accent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 60px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 44px 36px;
    position: relative;
    transition: var(--trans);
}

.feature-card:hover {
    background: var(--card-hover);
}

.feature-num {
    font-family: var(--title-font);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--muted);
    margin-bottom: 18px;
    display: block;
}

.feature-card h3 {
    font-family: var(--title-font);
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--text-light);
}

.feature-card p {
    font-size: 0.82rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    transition: var(--trans-fast);
}

.feature-link:hover {
    color: var(--primary);
    gap: 12px;
}

/* HIGHLIGHTED CENTER CARD */
.feature-card.highlight {
    background: var(--primary);
    border-color: var(--primary);
}

.feature-card.highlight .feature-num {
    color: rgba(10, 10, 10, 0.5);
}

.feature-card.highlight h3 {
    color: var(--primary-text);
}

.feature-card.highlight p {
    color: rgba(10, 10, 10, 0.65);
}

.feature-card.highlight .feature-link {
    color: var(--primary-text);
}

.feature-card.highlight .feature-link:hover {
    gap: 12px;
    opacity: 0.8;
}

/* ================================================================
   SECTION HEADER
================================================================ */
.section-header-tech {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-header-tech .left .eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.section-header-tech .left h2 {
    color: var(--text-light);
}

.section-header-tech .see-all {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--card-border);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    transition: var(--trans-fast);
}

.section-header-tech .see-all:hover {
    color: var(--primary);
    border-color: var(--lime-border);
    background: var(--lime-alpha);
}

/* Centered variant */
.section-header-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-center .eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
    display: block;
}

.section-header-center h2 {
    color: var(--text-light);
}

/* ================================================================
   PRODUCT GRID — dark glass cards
================================================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--trans);
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--lime-border);
    box-shadow: var(--lime-glow), 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(-6px);
}

.prod-img-wrap {
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
}

.prod-img-wrap img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .prod-img-wrap img {
    transform: scale(1.05);
}

/* Lime scan line on hover */
.prod-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(184, 240, 0, 0.06) 100%);
    opacity: 0;
    transition: var(--trans-fast);
    pointer-events: none;
}

.product-card:hover .prod-img-wrap::after {
    opacity: 1;
}

.prod-ribbon {
    position: absolute;
    top: 10px;
    left: 0;
    z-index: 2;
    background: var(--primary);
    color: var(--primary-text);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px 4px 12px;
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
    box-shadow: var(--lime-glow-sm);
}

.prod-info {
    padding: 14px 16px 18px;
}

.product-card h3 {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.4;
    margin-bottom: 5px;
}

.product-card>.prod-info>p {
    font-size: 0.74rem;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: 14px;
}

.prod-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prod-price-group {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.prod-price-group .price {
    font-family: var(--title-font);
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--primary);
    text-shadow: var(--lime-glow-sm);
}

.prod-price-group .old-price {
    font-size: 0.72rem;
    color: var(--muted);
    text-decoration: line-through;
}

.btn-icon {
    width: 36px;
    height: 36px;
    background: var(--lime-alpha);
    border: 1px solid var(--lime-border);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    transition: var(--trans-fast);
}

.btn-icon:hover {
    background: var(--primary);
    color: var(--primary-text);
    box-shadow: var(--lime-glow-sm);
    transform: rotate(45deg);
}

/* ================================================================
   STATS STRIP — crypto-style price cards (like reference bottom)
================================================================ */
.stats-strip {
    background: var(--accent);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--card-border);
}

.stat-card {
    background: var(--bg);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--trans);
}

.stat-card:hover {
    background: var(--card-bg);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    transition: var(--trans-fast);
}

.stat-card:hover::before {
    background: var(--primary);
    box-shadow: var(--lime-glow-sm);
}

.stat-card .stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px;
    display: block;
}

.stat-card .stat-value {
    font-family: var(--title-font);
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: var(--primary);
    text-shadow: var(--lime-glow-sm);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-card .stat-sub {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ================================================================
   BESTSELLER — dark split
================================================================ */
.best-seller {
    background: var(--bg);
    overflow: hidden;
}

.bs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    align-items: center;
}

.bs-image-side {
    position: relative;
    overflow: hidden;
    min-height: 560px;
}

.bs-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.bs-image-side:hover img {
    transform: scale(1.03);
}

/* Lime scan overlay */
.bs-image-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            var(--bg) 0%,
            rgba(10, 10, 10, 0.3) 40%,
            transparent 70%);
    z-index: 1;
}

/* Corner bracket */
.bs-image-side::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 28px;
    width: 40px;
    height: 40px;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    box-shadow: -2px -2px 10px rgba(184, 240, 0, 0.3);
    z-index: 2;
}

.bs-content {
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bs-content .eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
    display: block;
}

.bs-content h2 {
    color: var(--text-light);
    margin-bottom: 18px;
}

.bs-content>p {
    margin-bottom: 30px;
    line-height: 1.85;
}

.bs-price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 34px;
}

.bs-price-row .price-main {
    font-family: var(--title-font);
    font-size: 2.8rem;
    letter-spacing: 2px;
    color: var(--primary);
    text-shadow: var(--lime-glow-sm);
}

.bs-price-row .price-old {
    font-size: 1rem;
    color: var(--muted);
    text-decoration: line-through;
}

.specs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.spec-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 10px 15px;
}

.spec-item h4 {
    font-family: var(--font-family);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.sizes {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.size {
    padding: 4px 12px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    color: var(--muted);
    cursor: pointer;
    transition: var(--trans-fast);
    font-weight: 600;
}

.size:hover,
.size.selected {
    background: var(--primary);
    color: var(--primary-text);
    border-color: var(--primary);
    box-shadow: var(--lime-glow-sm);
}

.colors {
    display: flex;
    gap: 8px;
}

.color {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition: var(--trans-fast);
}

.color:hover,
.color.selected {
    outline-color: var(--primary);
    box-shadow: var(--lime-glow-sm);
    transform: scale(1.1);
}

/* ================================================================
   ABOUT
================================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

.about-img {
    position: relative;
    overflow: hidden;
    min-height: 540px;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Corner brackets */
.about-img::before {
    content: '';
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    box-shadow: 2px 2px 10px rgba(184, 240, 0, 0.3);
    z-index: 2;
}

.about-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--primary);
    color: var(--primary-text);
    font-family: var(--title-font);
    font-size: 0.72rem;
    letter-spacing: 2px;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    box-shadow: var(--lime-glow-sm);
    z-index: 2;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
    background: var(--accent);
    border-left: 1px solid var(--card-border);
}

.about-text .eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.about-text h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-text>p {
    margin-bottom: 36px;
    line-height: 1.85;
}

/* Tech spec pills */
.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.tech-pill {
    background: var(--lime-alpha);
    border: 1px solid var(--lime-border);
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
}

/* ================================================================
   CONTACT
================================================================ */
.contact-section {
    background: var(--bg);
    border-top: 1px solid var(--card-border);
}

.contact-container {
    max-width: 820px;
}

.contact-form {
    background: var(--card-bg);
    border: 1px solid var(--lime-border);
    border-radius: var(--radius);
    padding: 52px;
    box-shadow: 0 0 60px rgba(184, 240, 0, 0.04);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.input-group label {
    font-size: 0.68rem;
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: var(--font-family);
    font-size: 0.9rem;
    color: var(--text-light);
    outline: none;
    transition: var(--trans-fast);
}

.form-input::placeholder {
    color: var(--muted);
    opacity: 0.5;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--lime-alpha), var(--lime-glow-sm);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.contact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 34px;
    justify-content: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.stat-item .icon {
    color: var(--primary);
}

/* ================================================================
   FOOTER
================================================================ */
.footer {
    background: rgba(6, 6, 6, 0.99);
    border-top: 1px solid var(--card-border);
    padding: 70px 0 30px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-heading {
    font-family: var(--title-font);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240, 240, 240, 0.4);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    color: rgba(240, 240, 240, 0.35);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--trans-fast);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    background: var(--card-bg);
    border: 1px solid var(--lime-border);
    border-radius: var(--radius-sm);
    padding: 11px 15px;
    color: var(--text-light);
    font-family: var(--font-family);
    font-size: 0.875rem;
    outline: none;
    transition: var(--trans-fast);
}

.newsletter-input::placeholder {
    color: var(--muted);
    opacity: 0.5;
}

.newsletter-input:focus {
    border-color: var(--primary);
    box-shadow: var(--lime-glow-sm);
}

.newsletter-button {
    justify-content: center;
}

.footer-bottom {
    border-top: 1px solid var(--card-border);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(240, 240, 240, 0.25);
    font-size: 0.78rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(240, 240, 240, 0.3);
    font-size: 0.8rem;
    transition: var(--trans-fast);
}

.social-links a:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--lime-glow-sm);
    transform: translateY(-2px);
}

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .hero-left {
        padding: 80px 36px;
    }

    .trusted-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bs-container {
        grid-template-columns: 1fr;
    }

    .bs-image-side {
        min-height: 50vh;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-text {
        border-left: none;
        border-top: 1px solid var(--card-border);
        padding: 60px 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .burger-button {
        display: flex;
        align-items: center;
    }

    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .contact-form {
        padding: 28px 18px;
    }

    .bs-content {
        padding: 50px 28px;
    }

    .section-header-tech {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    #cart-sidebar {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}








/**********************************************************
******************SHOP PAGE*****************************
***********************************************************
**********************************************************/
.page {
    padding: 2rem 2rem 2rem 2rem;
    margin-top: 80px;
}

.top-bar {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.search-wrap {
    flex: 1 1 auto;
    display: flex;
    gap: 8px;
}

.search-input,
textarea {
    width: 100%;
    padding: 15px 10px;
    outline: none;
    font-size: 1em;
    color: var(--text-light);
    font-family: var(--title-font);
    border-color: #f0f0f021;
}

.search-input {
    border-radius: 5px;
}

input:hover,
.search-input:hover,
textarea:hover {
    border-color: var(--primary);
}

input:focus,
.search-input:focus,
textarea:focus {
    border-color: var(--primary);
}

/* Layout: sidebar + content */
.main-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--gap);
    align-items: start;
}

/* Sidebar (filters) */

.filters-overlay {
    position: fixed;
    /* cover the entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    /* semi-transparent black */
    z-index: 1500;
    /* behind the sidebar which is z-index 2000 */
    display: none;
    /* hidden by default */
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.filters-overlay.show {
    display: block;
    /* visible when sidebar is open */
    opacity: 1;
}

.sidebar {
    padding: 18px;
    position: sticky;
    top: 24px;
    height: fit-content;
    border: 1px solid var(--primary);
    border-radius: 9px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background-color: none;
}

.color.selected {
    outline: 2px solid var(--primary);
    /* optional highlight */
}

.size.selected {
    background: var(--primary);
    color: var(--primary-text);
    border-color: var(--accent);
}

.burger-button {
    color: var(--primary) !important;
}

.sidebar h3 {
    margin: 0 0 18px 0;
    /* font-size: 1.05rem; */
    background-color: var(--primary);
    padding: 0.6rem;
    color: var(--primary-text);
    font-family: var(--title-font);
    font-weight: 200;
    border-radius: 5px;
    text-align: center;
    box-shadow: 2px 18px 23px #3b3b3b2a;
}

#closeFiltersBtn {
    visibility: hidden;
}

.filter-section {
    margin-bottom: 16px;
}

.color.active {
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.35);
}

.size.active {
    background: var(--primary);
    color: var(--primary-text);
    border-color: var(--accent);
}

.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-wrap: nowrap;
    align-content: flex-start;
    align-items: flex-start;
}

.checkbox-list span {
    text-align: left;
    min-width: 222px;
}

.checkbox-list label {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.95rem;
    cursor: pointer;
}

.price-range {
    display: flex;
    gap: 8px;
    align-items: center;
}

.price-range input[type="range"] {
    width: 100%;
    accent-color: var(--primary);
    padding: 0px;
    cursor: pointer;
}


/* Update background on input */

.price-values {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-top: 6px;
    color: var(--muted);
}

.clear-filters {
    display: inline-block;
    margin-top: 6px;
    padding: 8px 12px;
    background: var(--primary);
    cursor: pointer;
    font-weight: 100;
    font-size: 0.9rem;
}

/* Product area */
.products-area {
    min-height: 400px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(182px, 1fr));
    gap: 16px;

}

/* Product card (your original with small tweaks) */
.product-card {
    overflow: hidden;
    gap: 8px;
    transition: 0.2s ease;
}

.shop-products {
    min-width: 0 !important;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.page-btn {
    padding: 8px 12px;
    border: 1px solid var(--text-dark);
    background: none;
    cursor: pointer;
    color: var(--text-dark);
}

.page-btn.active {
    background: var(--primary);
    color: var(--primary-text);
    border-color: var(--primary);
}

/* Empty state */
.empty {
    text-align: center;
    color: var(--muted);
    padding: 60px 12px;
    background: none;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

input[type="checkbox"] {
    accent-color: var(--accent);
    /* simplest modern way */
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 920px) {
    .main-grid {
        grid-template-columns: 260px 1fr;
    }
}

@media (max-width: 720px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .page {
        padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    }

    .sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        /* hidden initially */
        height: 100%;
        width: 300px;
        /* adjust if needed */
        max-width: 90%;
        padding: 18px;
        border: none;
        box-shadow: var(--shadow);
        overflow-y: auto;
        z-index: 2000;
        transition: left 0.3s ease;
    }

    .sidebar.open {
        left: 0;
    }

    .filters-toggle {
        display: inline-flex !important;
        /* show button */
    }

    .filters-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.35);
        z-index: 1500;
        display: none;
    }

    .filters-overlay.show {
        display: block;
    }

    #closeFiltersBtn {
        display: block;
        /* always visible on mobile */
    }

    .shop-products {
        font-size: small;
    }



    .shop-btn {
        font-size: 10px;
        padding: 0.6rem 0.6rem !important;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .sidedesk {
        display: none;
    }

    .filters-toggle {
        display: inline-flex;
    }
}

/* small niceties */
.muted {
    color: var(--muted);
    font-size: 0.95rem;
}

.filters-toggle {
    display: none;
    background: var(--primary);
    color: var(--primary-text);
    border: none;
    padding: 17px 14px;
    /* border-radius: 10px; */
    cursor: pointer;
    height: 100%;
    border-radius: 5px;
}

.colors {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color {
    width: 30px;
    height: 30px;
    /* border-radius: 50%; */
    cursor: pointer;
    border: 1px solid var(--text-dark);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 5px;
    outline: 1px solid var(--primary);

}

.color:hover {
    outline: 2px solid var(--primary);

}

.sizes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.size {
    padding: 8px 14px;
    border: 1px solid var(--primary);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 5px;
}

.sidebar h1,
h2,
h3,
h4 {
    margin-bottom: 0.5em;
}

.size:hover {
    background: var(--primary);
    color: var(--primary-text);
    border-color: var(--primary);
}

@media (max-width: 480px) {
    .properties {
        max-width: 95%;
        padding: 0px;
    }

    .category-tab {
        font-size: 11px;
    }

    .product-card-footer {

        padding: 8px !important;
    }

    .product-card-footer .btn {
        font-size: 8px !important;
    }

    .shop-btn {
        font-size: 0.8rem !important;
        min-width: 30px !important;
    }

}

.shop-products {
    text-align: center;
    position: relative;
    white-space: normal;
    display: flex;
    flex-direction: column;
    opacity: 1;
    padding: 0 !important;
    transition: 0.2s ease-in;
    background: none;
    border: 1px solid var(--accent);
    border-radius: 6px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.shop-products h4 {
    padding-left: 10px;
    padding-right: 10px;
}

.shop-products:hover {
    box-shadow: var(--shadow-float);
}

.shop-products .product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.product-discount-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--bg);
    color: var(--text-light);
    padding: 5px 10px;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 0px 0px 0px 5px;
}

.shop-products p {
    font-size: 0.7em;
    color: var(--muted);
    margin-bottom: 53px;
    padding: 0px 24px;
}


.shop-products .product-card-image {
    height: 200px;
    /*margin-bottom: 10px;*/
    display: flex;
    justify-content: center;
    align-items: center;
    /*extra*/
    padding: 1rem;
}

.shop-products .product-card-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    object-position: top;
}

.shop-products .product-price {
    font-weight: 700;
    color: var(--text-light);
    font-size: 17px;
}

.shop-products .btn-paint {
    padding: 8px;
    font-size: 13px;
    background: var(--accent);
}

main::before {

    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 50%;
    height: 80%;
    background: var(--primary-orange);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
    opacity: 0.05;

}



/*====================================
=======================================
ONE PRODUCT PAGE
===================================
==================================== */
.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 2fr));
    gap: 20px;
}


.single-product {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    /*extra*/
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    border: 1px solid #f0f0f021;
    padding: 20px;
    background: none;
    flex-direction: row;
    /*extra */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 80px;

}

/* GALLERY */
.product-gallery {
    flex: 1 1 400px;
}

.main-image {
    background: none;
    /* border-radius: 8px; */
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    border-radius: 8px;
    width: 100%;
}

.main-image img {
    max-width: 100%;
    min-height: 350px;
    object-fit: contain;
    border-radius: 5px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.thumbnails img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.thumbnails img:hover {
    border-color: var(--accent);
    transform: scale(1.05);
}

/* DETAILS */
.product-details {
    flex: 1 1 400px;
}

.product-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-category {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 10px;
}

.product-category i {
    margin-right: 6px;
    color: var(--accent);
}

.product-description {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-info p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.product-info i {
    margin-right: 6px;
    color: var(--primary);
    width: 22px;
}

.product-price {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 17px;
}

.in-stock {
    color: var(--accent);
    font-weight: 400;
    font-size: 14px;
}

/* PROPERTIES */
.properties {
    margin-top: 1.5rem;
}

/* QUANTITY */
.quantity-section {
    margin-top: 1.5rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.qty-btn {
    background-color: var(--accent);
    color: var(--accent-text);
    border: none;
    width: 35px;
    height: 35px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    /*extra*/
    border-radius: 5px;
}

.qty-btn:hover {
    background-color: var(--primary);
}

#quantity {
    width: 60px;
    text-align: center;
    padding: 9px;
    font-size: 1rem;
}

/* BUTTON */
.btn-add-to-cart {
    margin-top: 1.5rem;
    background-color: var(--primary);
    color: var(--primary-text);
    padding: 20px 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
    /*extra*/
    border-radius: 15px;

}

.btn-add-to-cart:hover {
    background-color: var(--bg);
    transform: scale(1.03);
    color: var(--primary);
}

.prop-title {
    font-weight: 100;
    font-size: 12px;
    margin-top: 10px;
}

.sec-title {
    font-family: var(--title-font);
    margin-top: 40px;
    font-weight: bold;
    font-size: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        padding: 15px;
    }

    .footer-grid .product-gallery,
    .product-details {
        flex: 1 1 100%;
    }

    .thumbnails img {
        width: 70px;
        height: 70px;
    }

    .related-products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 2fr));
        gap: 20px;
    }
}

input {
    background: var(--bg-light);
    border: 1px solid var(--text-light);
    color: var(--text-light);
}

input:hover,
input:focus {
    background: none;
    outline: none;
    border-color: var(--primary);
}

#langSwitcher {
    color: var(--text-light);
    border-color: var(--primary);
}

#langSwitcher:hover {
    color: var(--text-dark);
}