/* ================================================================
   Urban Theme — urban1
   Style : Icy Urban Editorial Streetwear
   Palette driven by 8 injected CSS variables:
   --bg, --primary, --accent, --text-dark, --text-light,
   --primary-text, --accent-text, --muted
   Fonts: Bebas Neue (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-dark);
    font-family: var(--font-family);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

h1 {
    font-size: clamp(3.5rem, 9vw, 8rem);
    letter-spacing: 3px;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
}

h3 {
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.4;
}

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

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

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

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

/* ── TOKENS ── */
:root {
    /* Derived from --primary automatically */
    --ice: color-mix(in srgb, var(--primary) 8%, transparent);
    --ice-border: color-mix(in srgb, var(--primary) 18%, transparent);
    --ice-strong: color-mix(in srgb, var(--primary) 25%, transparent);

    /* Neutral surface colors — not tied to palette, kept as-is */
    --dark-glass: rgba(20, 24, 32, 0.75);
    --light-glass: rgba(240, 242, 245, 0.82);
    --border: rgba(20, 24, 32, 0.10);
    --border-light: rgba(240, 242, 245, 0.15);

    --radius: 10px;
    --radius-sm: 6px;
    --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: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

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

/* Icy noise texture */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(74, 140, 255, 0.06) 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.78rem;
    letter-spacing: 2px;
    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(255, 255, 255, 0.12);
    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: 0 4px 20px color-mix(in srgb, var(--primary) 35%, transparent);
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px color-mix(in srgb, var(--primary) 50%, transparent)
}

.btn-dark {
    background: var(--accent);
    color: var(--accent-text);
    border-radius: var(--radius-pill);
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 24, 32, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-pill);
    padding: 11px 26px;
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

/*///////////////////////////////
///////// 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;
}

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

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

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

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

.nav-link {
    background: none;
    border: none;
    color: var(--text-light);
    font-family: var(--font-family);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 14px;
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: var(--trans-fast);
}

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

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

.dropdown-content {
    display: none;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(240, 242, 245, 0.97);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 0;
    min-width: 190px;
    box-shadow: 0 20px 50px rgba(20, 24, 32, 0.1);
    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: 9px 18px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--trans-fast);
}

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

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

.lang-class select {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    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(--accent);
    border: none;
    color: var(--accent-text);
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--trans-fast);
}

.cart-icon-wrapper button:hover {
    background: 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;
}

.burger-button {
    display: none;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-dark);
    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: var(--bg);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-right: 1px solid var(--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.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--trans-fast);
}

.mobile-menu-link:hover {
    color: var(--text-dark);
    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(20, 24, 32, 0.4);
    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(20, 24, 32, 0.4);
    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: var(--bg);
    border-left: 1px solid var(--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: -16px 0 50px rgba(20, 24, 32, 0.08);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--ice);
    border: 1px solid var(--ice-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: 2rem;
    letter-spacing: 3px;
    color: var(--text-dark);
    margin-bottom: 22px;
}

#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: rgba(20, 24, 32, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 9px 12px;
    font-family: var(--font-family);
    font-size: 0.875rem;
    color: var(--text-dark);
    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(--ice);
}

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

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

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

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

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

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

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

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

.qty-input {
    background: var(--ice);
    border: 1px solid var(--ice-border);
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    padding: 3px 8px;
    width: 50px;
}

.shipment {
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--ice);
    border: 1px solid var(--ice-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);
}

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

.shop-btn {
    background: var(--accent);
    color: var(--accent-text);
    border: none;
    padding: 5px 10px;
    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-fast);
}

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

#template-alert {
    position: fixed;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--accent-text);
    padding: 12px 30px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    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;
}

/* ================================================================
   HERO — Full viewport product stage like the reference
================================================================ */
/* --- 3. HERO SECTION (Split Layout) --- */
.hero {
    display: flex;
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    background: var(--accent);
    min-height: 60vh;

}

.hero img {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    object-fit: cover;
    object-position: top;
}

.hero .bg-col {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
    background: linear-gradient(45deg, var(--accent), transparent);
}

/* Left Side (Dark/Text) */
.hero-left {
    width: 40%;
    padding: 150px 50px 50px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-dark);
    position: relative;
    z-index: 2;
}

/* Angled Divider */
.hero-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 200px;
    height: 100%;
    background: var(--bg-dark);
    transform: skewX(-15deg);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 5;
    color: var(--primary-text);
}

.hero-tag {
    color: var(--accent-yellow);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 400px;
}

/* Right Side (Carousel Images) */
.hero-right {
    width: 60%;
    position: relative;
    background: none;
    /* Clipping for the diagonal overlap */
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    /* Overlap */
    z-index: 1;
    min-height: 800px;
    max-height: 100vh;
}

/* Hero bottom strip */
.hero-bottom-strip {
    position: relative;
    z-index: 2;
    background: rgba(20, 24, 32, 0.5);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(240, 242, 245, 0.08);
    padding: 14px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 40px;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-item strong {
    font-family: var(--title-font);
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-light);
}

.hero-stat-item span {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240, 242, 245, 0.4);
}

.hero-divider {
    width: 1px;
    height: 32px;
    background: rgba(240, 242, 245, 0.1);
}

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

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

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(18px);
    }

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

/* ================================================================
   SECTION HEADER — bold condensed style
================================================================ */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

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

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

.section-header .see-all:hover {
    color: var(--primary);
    border-color: var(--ice-strong);
    background: var(--ice);
}

/* Eyebrow above heading */
.section-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    display: block;
    margin-bottom: 6px;
}

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

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

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--ice-strong);
    box-shadow: 0 20px 50px rgba(20, 24, 32, 0.1), 0 0 0 1px var(--ice-border);
}

.prod-img-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg);
    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.04);
}

/* Drop label */
.prod-ribbon {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent);
    color: var(--accent-text);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    z-index: 2;
}

/* Quick color dots on card */
.prod-colors {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
    z-index: 2;
}

.prod-color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

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

.product-card h3 {
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 4px;
}

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

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

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

.prod-price-tag .price {
    font-family: var(--title-font);
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: var(--text-dark);
}

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

.btn-icon {
    width: 34px;
    height: 34px;
    background: var(--ice);
    border: 1px solid var(--ice-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);
    transform: rotate(45deg);
    border-color: var(--primary);
}

/* ================================================================
   NEW COLLECTION — large featured grid (reference "NEW COLLECTION")
================================================================ */
.new-collection {
    background: var(--bg);
}

/* First card in grid is large featured card */
.collection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.collection-card-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--accent);
    min-height: 520px;
}

.collection-card-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.7s ease;
}

.collection-card-large:hover img {
    transform: scale(1.03);
}

/* Graffiti-style overlay text */
.collection-card-large-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 24px;
    background: linear-gradient(to top, rgba(20, 24, 32, 0.9) 0%, transparent 100%);
}

.collection-card-large-content .drop-name {
    font-family: var(--title-font);
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--text-light);
    line-height: 1;
    margin-bottom: 6px;
}

.collection-card-large-content .drop-name sup {
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--primary);
}

.collection-card-large-content .drop-price {
    font-size: 0.75rem;
    color: rgba(240, 242, 245, 0.55);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Color dots on large card */
.collection-card-large-content .card-colors {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.card-color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

/* Regular cards in grid */
.collection-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--primary-text);
    border: 1px solid var(--border);
    transition: var(--trans);
    cursor: pointer;
    position: relative;
}

.collection-card:hover {
    transform: translateY(-4px);
    border-color: var(--ice-border);
    box-shadow: 0 12px 40px rgba(20, 24, 32, 0.08);
}

.collection-card .card-img {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg);
}

.collection-card .card-img img {
    transition: transform 0.5s ease;
}

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

.collection-card .card-body {
    padding: 12px 14px 14px;
}

.collection-card .card-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.collection-card .card-desc {
    font-size: 0.7rem;
    color: var(--muted);
    line-height: 1.4;
    margin-bottom: 10px;
}

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

.collection-card .card-price {
    font-family: var(--title-font);
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.collection-card .card-colors-row {
    display: flex;
    gap: 4px;
}

.card-color-sm {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
}

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

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

.bs-image-side {
    position: relative;
    overflow: hidden;
}

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

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

/* Number decoration */
.bs-image-side::before {
    content: '01';
    position: absolute;
    top: 28px;
    left: 28px;
    font-family: var(--title-font);
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: rgba(240, 242, 245, 0.35);
    z-index: 2;
}

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

.bs-content-side .eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240, 242, 245, 0.4);
    margin-bottom: 18px;
    display: block;
}

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

.bs-content-side>p {
    color: rgba(240, 242, 245, 0.5);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.bs-price-row .price-main {
    font-family: var(--title-font);
    font-size: 3rem;
    letter-spacing: 2px;
    color: var(--text-light);
}

.bs-price-row .price-old {
    font-size: 1rem;
    color: rgba(240, 242, 245, 0.35);
    text-decoration: line-through;
}

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

.spec-item {
    background: rgba(240, 242, 245, 0.06);
    border: 1px solid rgba(240, 242, 245, 0.1);
    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: rgba(240, 242, 245, 0.35);
    margin-bottom: 8px;
}

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

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

.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: rgba(240, 242, 245, 0.5);
    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: 560px;
}

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

.about-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--primary);
    color: var(--primary-text);
    font-family: var(--title-font);
    font-size: 0.85rem;
    letter-spacing: 2px;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 72px;
    background: var(--bg);
    border-left: 1px solid var(--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-dark);
    margin-bottom: 20px;
}

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

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

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

.contact-form {
    background: var(--primary-text);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: 0 8px 30px rgba(20, 24, 32, 0.05);
}

.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: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-family: var(--font-family);
    font-size: 0.9rem;
    color: var(--text-dark);
    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(--ice);
}

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

.contact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
    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: var(--accent);
    border-top: 1px solid rgba(240, 242, 245, 0.07);
    padding: 70px 0 30px;
}

.footer-container {
    max-width: 1320px;
    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: rgba(240, 242, 245, 0.45);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(240, 242, 245, 0.4);
    font-size: 0.82rem;
    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: rgba(240, 242, 245, 0.05);
    border: 1px solid rgba(240, 242, 245, 0.12);
    border-radius: var(--radius-sm);
    padding: 11px 15px;
    color: var(--accent-text);
    font-family: var(--font-family);
    font-size: 0.875rem;
    outline: none;
    transition: var(--trans-fast);
}

.newsletter-input::placeholder {
    color: rgba(240, 242, 245, 0.3);
}

.newsletter-input:focus {
    border-color: var(--primary);
}

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

.footer-bottom {
    border-top: 1px solid rgba(240, 242, 245, 0.07);
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(240, 242, 245, 0.3);
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

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

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

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

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

    .collection-card-large {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        min-height: 380px;
    }

    .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(--border);
        padding: 60px 40px;
    }

    .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: 3.2rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 40px 24px 20px;
    }

    .hero-right {
        display: none;
    }

    .hero-bottom-strip {
        padding: 14px 24px;
        gap: 20px;
        flex-wrap: wrap;
    }

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

    .collection-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .collection-card-large {
        grid-column: 1 / 3;
    }

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

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

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

    .container {
        padding: 0 20px;
    }
}

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

    #cart-sidebar {
        width: 100%;
    }

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

    .collection-card-large {
        grid-column: 1;
    }
}







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

.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: var(--text-light);
    color: var(--text-dark);
    font-family: var(--title-font);
    border: 1px solid var(--muted);
}

.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(--text-light);
    border-radius: 9px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--text-light);
}

.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 var(--text-light);
    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(--primary);
    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: contain;
    border-radius: 3px;
    object-position: top;
}

.shop-products .product-price {
    font-weight: 700;
    color: var(--text-dark);
    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 var(--text-light);
    padding: 20px;
    background: none;
    flex-direction: row;
    /*extra */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border-color: var(--text-light);
    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;
    }

    .hero-left {
        width: auto;
    }
}

@media (max-width: 900px) {
    .hero-left {
        width: auto;
    }
}

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);
    background: var(--primary);
}

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