/* ================================================================
   NEON Theme — neon1
   Style : Dark, Glowing, Electric
   Palette driven by 8 injected CSS variables:
   --bg, --primary, --accent, --text-dark, --text-light,
   --primary-text, --accent-text, --muted
   Fonts: Orbitron (title-font) + Manrope (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;
}


::-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;
}

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

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

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}

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

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

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

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

/* ── TOKENS ── */
:root {
    /* Derived from --primary automatically */
    --neon-glow: 0 0 18px color-mix(in srgb, var(--primary) 55%, transparent),
        0 0 50px color-mix(in srgb, var(--primary) 20%, transparent);
    --neon-glow-sm: 0 0 10px color-mix(in srgb, var(--primary) 40%, transparent);

    /* Derived from --accent automatically */
    --glass-bg: color-mix(in srgb, var(--accent) 55%, transparent);
    --glass-border: color-mix(in srgb, var(--primary) 18%, transparent);
    --glass-border-h: color-mix(in srgb, var(--primary) 55%, transparent);
    --border-dim: rgba(255, 255, 255, 0.06);

    --radius: 14px;
    --radius-sm: 8px;
    --radius-pill: 50px;
    --trans: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);

    /* Decorative only — keep or remove as needed */
    --cyan: #00f0ff;
    --purple-neon: #bf00ff;
}

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

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

/* 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 background glow */
body::before {
    content: '';
    position: fixed;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse, color-mix(in srgb, var(--primary) 7%, transparent) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

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

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

.btn-yellow {
    background: var(--primary);
    color: var(--primary-text);
    border: 1px solid var(--primary);
    box-shadow: var(--neon-glow-sm);
}

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

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

.btn-dark:hover {
    background: rgba(236, 236, 236, 0.1);
    box-shadow: var(--neon-glow-sm);
    transform: translateY(-2px);
}

/* ================================================================
   HEADER
================================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 6, 8, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo img {
    max-height: 38px;
    max-width: 90px;
    width: auto;
    object-fit: contain;
}

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

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

.nav-link:hover {
    color: var(--primary);
    text-shadow: var(--neon-glow-sm);
}

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

.dropdown-content {
    display: none;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background:var(--bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 8px 0;
    min-width: 190px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), var(--neon-glow-sm);
    backdrop-filter: blur(20px);
    animation: dropIn 0.22s 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.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--trans);
}

.dropdown-item:hover {
    color: var(--primary);
    background: rgba(230, 230, 230, 0.06);
    padding-left: 24px;
}

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

.lang-class select {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
    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(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--primary);
    font-size: 1rem;
    padding: 8px 13px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--trans);
}

.cart-icon-wrapper button:hover {
    box-shadow: var(--neon-glow-sm);
    border-color: var(--primary);
}

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

.burger-button {
    display: none;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--primary);
    padding: 8px 12px;
    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(6, 6, 8, 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(--glass-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.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px 12px;
    border-bottom: 1px solid var(--border-dim);
    transition: var(--trans);
}

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

.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: 400px;
    height: 100vh;
    background: rgba(10, 4, 22, 0.98);
    border-left: 1px solid var(--glass-border);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}


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

.close-btn:hover {
    background: var(--primary);
    color: var(--primary-text);
    box-shadow: var(--neon-glow-sm);
}

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

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

#cart-form input,
#cart-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-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);
}

#cart-form input:focus,
#cart-form textarea:focus {
    border-color: var(--primary);
    box-shadow: var(--neon-glow-sm);
}

.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(--border-dim);
    color: var(--muted);
    font-weight: 600;
}

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

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

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

.delete-btn {
    color: #ff4466;
    cursor: pointer;
}

.qty-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    border-radius: 4px;
    padding: 3px 6px;
    width: 50px;
}

.shipment {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(225, 225, 225, 0.06);
    border: 1px solid var(--glass-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(--border-dim);
}

.total {
    font-size: 1rem;
    color: var(--text-light);
}

.shop-btn {
    background: var(--primary);
    color: var(--primary-text);
    border: none;
    padding: 4px 13px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: var(--trans);
    box-shadow: var(--neon-glow-sm);
}

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

#template-alert {
    position: fixed;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 4, 22, 0.95);
    border: 1px solid var(--primary);
    color: var(--primary);
    backdrop-filter: blur(20px);
    padding: 13px 28px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 9999;
    opacity: 0;
    transition: top 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s;
    white-space: nowrap;
    box-shadow: var(--neon-glow);
}

/* ================================================================
   HERO — Full-height dark stage with glowing title &
          a hero image framed in a neon-bordered showcase
================================================================ */
.hero {
    min-height: 40vh;
    padding-top: 68px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

/* Bottom grid line decoration */
.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(232, 0, 111, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 0, 111, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Large ambient orb top-right */
.hero-orb {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    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 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 80px;
    position: relative;
    z-index: 2;
}

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

.hero-eyebrow::before {
    content: '';
    width: 28px;
    height: 1.5px;
    background: var(--primary);
    display: inline-block;
    box-shadow: var(--neon-glow-sm);
}

.hero-eyebrow::after {
    content: '';
    width: 28px;
    height: 1.5px;
    background: var(--primary);
    display: inline-block;
    box-shadow: var(--neon-glow-sm);
}

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

/* Neon highlight on title */
.hero-content h1 .glow-word {
    color: var(--primary);
    text-shadow: var(--neon-glow);
    display: inline-block;
}

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

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

/* Floating neon stat cards */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 48px;
    opacity: 0;
    animation: fadeUp 0.6s 0.7s forwards;
}

.hero-stat {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 14px 16px;
    backdrop-filter: blur(10px);
    transition: var(--trans);
}

.hero-stat:hover {
    border-color: var(--primary);
    box-shadow: var(--neon-glow-sm);
}

.hero-stat strong {
    display: block;
    font-family: var(--title-font);
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: var(--primary);
    text-shadow: var(--neon-glow-sm);
    line-height: 1;
}

.hero-stat span {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
    display: block;
}

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

.hero-showcase {
    position: relative;
    width: 100%;
    max-width: 420px;
}

/* Main framed image */
.hero-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    border: 1px solid var(--glass-border-h);
    box-shadow: 0 0 0 1px rgba(232, 0, 111, 0.08),
        0 30px 80px rgba(0, 0, 0, 0.6),
        var(--neon-glow-sm);
    opacity: 0;
    animation: fadeLeft 0.8s 0.4s forwards;
}

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

/* Neon corner accents */
.hero-frame::before,
.hero-frame::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--primary);
    border-style: solid;
    z-index: 2;
}

.hero-frame::before {
    top: 12px;
    left: 12px;
    border-width: 2px 0 0 2px;
    box-shadow: -2px -2px 8px color-mix(in srgb, var(--primary) 50%, transparent);
}

.hero-frame::after {
    bottom: 12px;
    right: 12px;
    border-width: 0 2px 2px 0;
    box-shadow: 2px 2px 8px color-mix(in srgb, var(--primary) 50%, transparent);
}

/* Overlay gradient on image */
.hero-frame-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 6, 8, 0.6) 0%, transparent 60%);
    z-index: 1;
}

/* Floating badge top-right */
.hero-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    z-index: 5;
    background: var(--primary);
    color: var(--primary-text);
    font-family: var(--title-font);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    box-shadow: var(--neon-glow);
    opacity: 0;
    animation: fadeLeft 0.8s 0.7s forwards;
    white-space: nowrap;
}

/* Floating mini card — bottom left */
.hero-mini-card {
    position: absolute;
    bottom: -20px;
    left: -28px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border-h);
    border-radius: var(--radius);
    padding: 14px 18px;
    backdrop-filter: blur(20px);
    box-shadow: var(--neon-glow-sm);
    opacity: 0;
    animation: fadeLeft 0.8s 0.85s forwards;
}

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

.hero-mini-card span {
    font-size: 0.67rem;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 3px;
    display: block;
}

/* Vertical neon line decoration */
.hero-line {
    position: absolute;
    top: 10%;
    right: -40px;
    width: 1px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    box-shadow: 0 0 8px rgba(232, 0, 111, 0.5);
    opacity: 0;
    animation: fadeIn 1s 1s forwards;
}

/* Floating dot cluster */
.hero-dots {
    position: absolute;
    bottom: 40px;
    right: -50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    opacity: 0;
    animation: fadeIn 1s 1.1s forwards;
}

.hero-dot {
    width: 5px;
    height: 5px;
    background: color-mix(in srgb, var(--primary) 50%, transparent);
    border-radius: 50%;
}

.hero-dot:nth-child(odd) {
    opacity: 0.6;
}

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

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

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ================================================================
   SECTION HEADER
================================================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-family: var(--font-family);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-header .eyebrow::before,
.section-header .eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--primary);
    display: inline-block;
    opacity: 0.6;
}

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

/* ================================================================
   PRODUCT GRID
================================================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
    gap: 20px;
}

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

.product-card:hover {
    border-color: var(--glass-border-h);
    box-shadow: var(--neon-glow), 0 20px 60px rgba(0, 0, 0, 0.5);
    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.06);
}

/* Neon label ribbon */
.prod-ribbon {
    position: absolute;
    top: 12px;
    left: 0;
    background: var(--primary);
    color: var(--primary-text);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px 4px 12px;
    clip-path: polygon(0 0, 100% 0, 88% 50%, 100% 100%, 0 100%);
    z-index: 2;
    box-shadow: var(--neon-glow-sm);
}

.product-card h3 {
    font-family: var(--font-family);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-light);
    padding: 13px 14px 4px;
    line-height: 1.4;
    text-transform: none;
}

.product-card p {
    font-size: 0.76rem;
    padding: 0 14px;
    line-height: 1.5;
    color: var(--muted);
}

.product-card .price {
    display: block;
    font-family: var(--title-font);
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--primary);
    text-shadow: var(--neon-glow-sm);
    padding: 9px 14px 15px;
}

.btn-icon {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    background: var(--primary);
    color: var(--primary-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--trans);
    opacity: 0;
    transform: scale(0.7);
    box-shadow: var(--neon-glow-sm);
}

.product-card:hover .btn-icon {
    opacity: 1;
    transform: scale(1);
}

.btn-icon:hover {
    box-shadow: var(--neon-glow);
    transform: scale(1.12) rotate(45deg) !important;
}

/* ================================================================
   BESTSELLER
================================================================ */
.best-seller {
    background: rgba(10, 4, 22, 0.6);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.bs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bs-content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-family: var(--font-family);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

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

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

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

.spec-item {
    background: color-mix(in srgb, var(--accent) 6%, transparent);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 10px 15px;
}

.spec-item h4 {
    font-family: var(--font-family);
    font-size: 0.65rem;
    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 rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    color: var(--muted);
    cursor: pointer;
    transition: var(--trans);
    font-weight: 600;
}

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

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

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

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

.bs-image {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    max-width: 360px;
    margin: 0 auto;
    border: 1px solid var(--glass-border-h);
    box-shadow: var(--neon-glow), 0 40px 100px rgba(0, 0, 0, 0.6);
    position: relative;
}

.bs-image::before,
.bs-image::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--primary);
    border-style: solid;
    z-index: 2;
}

.bs-image::before {
    top: 10px;
    left: 10px;
    border-width: 2px 0 0 2px;
}

.bs-image::after {
    bottom: 10px;
    right: 10px;
    border-width: 0 2px 2px 0;
}

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

.about-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    border: 1px solid var(--glass-border-h);
    box-shadow: var(--neon-glow), 0 30px 80px rgba(0, 0, 0, 0.5);
    max-height: 400px;
    margin: 0 auto;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(6, 6, 8, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: var(--title-font);
    font-size: 0.8rem;
    letter-spacing: 2px;
    padding: 9px 20px;
    border-radius: var(--radius-pill);
    box-shadow: var(--neon-glow-sm);
}

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

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

/* ================================================================
   CONTACT
================================================================ */
.contact-section {
    background: rgba(10, 4, 22, 0.5);
    border-top: 1px solid var(--glass-border);
}

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

.contact-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 48px;
    backdrop-filter: blur(10px);
}

.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.04);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-sm);
    padding: 12px 15px;
    font-family: var(--font-family);
    font-size: 0.9rem;
    color: var(--text-light);
    outline: none;
    transition: var(--trans);
}

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

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 0, 111, 0.08), var(--neon-glow-sm);
}

textarea.form-input {
    min-height: 130px;
    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, 8, 0.95);
    border-top: 1px solid var(--glass-border);
    padding: 70px 0 30px;
}

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

.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.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    text-shadow: var(--neon-glow-sm);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--muted);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--trans);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 6px;
    text-shadow: var(--neon-glow-sm);
}

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

.newsletter-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-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);
}

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

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

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

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

.footer-bottom p {
    color: var(--muted);
    font-size: 0.8rem;
    opacity: 0.6;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.85rem;
    transition: var(--trans);
}

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

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

    .hero-left {
        padding: 80px 32px 50px;
    }

    .hero-right {
        padding: 40px 32px 80px;
    }

    .hero-line,
    .hero-dots {
        display: none;
    }

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

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

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

    .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;
        letter-spacing: 2px;
    }

    h2 {
        font-size: 1.9rem;
    }

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

    .hero-mini-card {
        display: none;
    }

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

    .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;
    }
}

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

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    #cart-sidebar {
        width: 100%;
    }

    .container {
        padding: 0 18px;
    }

    .hero-stats {
        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;
    background-color: none;
    color: var(--text-light);
    font-family: var(--title-font);
}

.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: var(--bg);
}

.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-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(--glass-border);
    border-radius: 6px;
    border: 1px solid #83838336;
    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;
    object-position: top;
    border-radius: 2px;
}

.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;

}


@media (max-width: 768px) {
    main {
        padding: 1rem;
    }
}

/*====================================
=======================================
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 var(--primary);
    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-dark);
}

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);
}