:root {
    --bg: #F5F5F3;
    --surface: #FFFFFF;
    --surface-2: #F0F0EE;
    --surface-3: #E8E8E6;
    --ink: #111111;
    --ink-2: #555555;
    --ink-3: #999999;
    --ink-4: #CCCCCC;
    --accent: #C8F000;
    --accent-dark: #A8CC00;
    --accent-text: #1A2200;
    --danger: #E53935;
    --success: #2E7D32;
    --border: #E2E2E0;
    --border-2: #D4D4D2;
    --r: 10px;
    --r-sm: 6px;
    --r-lg: 14px;
    --r-xl: 20px;
    --r-pill: 9999px;
    --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.09);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.13);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t: 0.18s;
    --t-slow: 0.36s;
    --font: -apple-system, 'Helvetica Neue', Arial, sans-serif;
    --max: 1360px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--ink);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: var(--font);
    border: none;
    background: none;
}

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

input,
select {
    font-family: var(--font);
}

.page {
    display: none;
}

.page.active {
    display: block;
}

.promo-topbar {
    background: #1A1A1A;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.promo-topbar a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
}

.promo-topbar-close {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    cursor: pointer;
    transition: color var(--t);
}

.promo-topbar-close:hover {
    color: white;
}

.comprar-agora {
    cursor: pointer;
}

header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 800;
    transition: box-shadow var(--t) var(--ease);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

.hd {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 64px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--ink);
    cursor: pointer;
    flex-shrink: 0;
    text-transform: uppercase;
}

.logo span {
    color: var(--accent);
    background: var(--ink);
    padding: 0.05em 0.25em;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    gap: 0.15rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item>a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink-2);
    border-radius: var(--r-sm);
    transition: color var(--t), background var(--t);
}

.nav-item>a:hover {
    color: var(--ink);
    background: var(--surface-2);
}

.nav-dropdown {
    position: absolute;
    top: calc(100%+8px);
    left: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    box-shadow: var(--shadow-lg);
    padding: 0.4rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--t), transform var(--t), visibility var(--t);
    z-index: 900;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    color: var(--ink-2);
    border-radius: var(--r-sm);
    transition: color var(--t), background var(--t);
}

.nav-dropdown a:hover {
    color: var(--ink);
    background: var(--surface-2);
}

.nav-tag {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: var(--accent);
    color: var(--accent-text);
    padding: 0.1em 0.35em;
    border-radius: 3px;
    margin-left: 0.2rem;
}

.search-box {
    flex: 1;
    max-width: 360px;
    margin-left: auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 0.55rem 2.8rem 0.55rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-pill);
    font-size: 0.85rem;
    background: var(--surface-2);
    color: var(--ink);
    outline: none;
    transition: border-color var(--t), background var(--t), box-shadow var(--t);
}

.search-box input:focus {
    border-color: var(--ink);
    background: var(--surface);
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.search-box input::placeholder {
    color: var(--ink-3);
}

.search-ico {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--ink-3);
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0.2rem;
    transition: color var(--t);
}

.search-ico:hover {
    color: var(--ink);
}

.search-ico svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hd-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.ico-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
    background: none;
    border: none;
    color: var(--ink-2);
    cursor: pointer;
    transition: color var(--t), background var(--t);
    position: relative;
}

.ico-btn:hover {
    color: var(--ink);
    background: var(--surface-2);
}

.ico-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: var(--ink);
    color: white;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t);
}

.cart-badge.pulse {
    background: var(--accent);
    color: var(--accent-text);
}

.user-wrap {
    position: relative;
}

.user-drop {
    position: absolute;
    right: 0;
    top: calc(100%+8px);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    box-shadow: var(--shadow-lg);
    padding: 0.4rem;
    min-width: 192px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--t), transform var(--t), visibility var(--t);
    z-index: 900;
}

.user-wrap:hover .user-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-drop a {
    display: block;
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
    color: var(--ink-2);
    border-radius: var(--r-sm);
    transition: color var(--t), background var(--t);
}

.user-drop a:hover {
    color: var(--ink);
    background: var(--surface-2);
}

.burger-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--r-sm);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
}

.burger-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

.mob-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1400;
    opacity: 0;
    transition: opacity var(--t-slow) var(--ease);
}

.mob-overlay.open {
    opacity: 1;
}

.mob-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(340px, 92vw);
    height: 100%;
    background: var(--surface);
    z-index: 1500;
    transform: translateX(-100%);
    transition: transform var(--t-slow) var(--ease);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mob-drawer.open {
    transform: translateX(0);
}

.md-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.md-logo {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.md-logo span {
    background: var(--ink);
    color: var(--accent);
    padding: 0.05em 0.2em;
    border-radius: 3px;
}

.md-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    background: var(--surface-2);
    border: none;
    cursor: pointer;
    color: var(--ink-2);
}

.md-close svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.md-search {
    padding: 0.85rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.md-search input {
    width: 100%;
    padding: 0.6rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    font-size: 0.875rem;
    background: var(--surface-2);
    outline: none;
}

.md-nav {
    flex: 1;
    padding: 0.5rem 0;
}

.md-cat {
    border-bottom: 1px solid var(--border);
}

.md-cat-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--t);
}

.md-cat-hd:hover {
    background: var(--surface-2);
}

.md-cat-hd svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform var(--t);
}

.md-cat.open .md-cat-hd svg {
    transform: rotate(90deg);
}

.md-sub {
    display: none;
    background: var(--surface-2);
}

.md-cat.open .md-sub {
    display: block;
}

.md-sub a {
    display: block;
    padding: 0.65rem 1.5rem 0.65rem 2.25rem;
    font-size: 0.85rem;
    color: var(--ink-2);
    transition: color var(--t);
}

.md-sub a:hover {
    color: var(--ink);
}

.md-actions {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.md-act {
    padding: 0.7rem 1rem;
    border-radius: var(--r-sm);
    font-size: 0.875rem;
    font-weight: 600;
    text-align: left;
    border: none;
    background: none;
    color: var(--ink-2);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background var(--t), color var(--t);
}

.md-act:hover {
    background: var(--surface-2);
    color: var(--ink);
}

.md-act svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.hero-section {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.hero-carousel-wrap {
    position: relative;
    overflow: hidden;
}

.hero-track {
    display: flex;
    transition: transform 0.6s var(--ease);
}

.hero-slide {
    min-width: 100%;
    position: relative;
    background: var(--surface);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    padding: 4rem 0;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent);
    color: var(--accent-text);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35em 0.75em;
    border-radius: var(--r-pill);
    margin-bottom: 1.25rem;
}

.hero-h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-h1 em {
    font-style: normal;
    color: var(--ink-2);
}

.hero-sub {
    font-size: 1rem;
    color: var(--ink-2);
    line-height: 1.6;
    max-width: 420px;
    margin-bottom: 2rem;
}

.hero-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.85rem 1.75rem;
    background: var(--ink);
    color: white;
    border: none;
    border-radius: var(--r);
    font-size: 0.9rem;
    font-weight: 700;
    transition: background var(--t), transform var(--t);
    cursor: pointer;
}

.btn-primary:hover {
    background: #2A2A2A;
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 1.75rem;
    background: none;
    color: var(--ink);
    border: 2px solid var(--border-2);
    border-radius: var(--r);
    font-size: 0.9rem;
    font-weight: 700;
    transition: border-color var(--t), background var(--t);
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: var(--ink);
    background: var(--surface-2);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.hero-stat-num {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--ink-3);
    font-weight: 500;
    margin-top: 0.1rem;
}

.hero-img-col {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 480px;
}

.hero-img-bg {
    position: absolute;
    inset: 0;
    background: var(--surface-2);
    border-radius: var(--r-xl) 0 0 var(--r-xl);
}

.hero-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    height: 420px;
    object-fit: cover;
    border-radius: var(--r-lg);
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--surface);
    border: 1px solid var(--border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--t), transform var(--t);
    color: var(--ink);
}

.hero-prev:hover,
.hero-next:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-50%) scale(1.06);
}

.hero-prev {
    left: 1rem;
}

.hero-next {
    right: 1rem;
}

.hero-prev svg,
.hero-next svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.35rem;
    z-index: 10;
}

.hdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border-2);
    cursor: pointer;
    transition: width var(--t), background var(--t);
}

.hdot.on {
    background: var(--ink);
    width: 22px;
    border-radius: 3px;
}

.brands-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    padding: 1.25rem 0;
    overflow: hidden;
}

.brands-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    animation: scrollBrands 20s linear infinite;
    width: max-content;
}

.brands-strip:hover .brands-track {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--ink-3);
    text-transform: uppercase;
    white-space: nowrap;
    transition: color var(--t);
}

.brand-name:hover {
    color: var(--ink);
}

.section {
    padding: 4.5rem 0;
}

.section+.section {
    padding-top: 0;
}

.sec-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
}

.sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.sec-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-3);
    margin-bottom: 0.3rem;
}

.sec-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.sec-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border-bottom: 1.5px solid var(--ink);
    padding-bottom: 1px;
    transition: gap var(--t);
}

.sec-link:hover {
    gap: 0.5rem;
}

.sec-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
}

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

.cat-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--surface-2);
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.cat-card:hover img {
    transform: scale(1.05);
}

.cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem 1.5rem;
}

.cat-label {
    color: white;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.cat-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 0.15rem;
}

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

.pcard {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.pcard.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), box-shadow var(--t), border-color var(--t);
}

.pcard:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.pcard-img {
    position: relative;
    aspect-ratio: 1/1;
    background: var(--surface-2);
    overflow: hidden;
}

.pcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

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

.pcard-badge {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2em 0.55em;
    border-radius: 4px;
}

.badge-pro {
    background: var(--ink);
    color: white;
}

.badge-run {
    background: var(--accent);
    color: var(--accent-text);
}

.badge-new {
    background: #FF6B35;
    color: white;
}

.badge-sale {
    background: var(--danger);
    color: white;
}

.pcard-wishlist {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--t);
    color: var(--ink-3);
}

.pcard-wishlist svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.pcard:hover .pcard-wishlist {
    opacity: 1;
}

.pcard-swatches {
    display: flex;
    gap: 4px;
    padding: 0.6rem 0.9rem 0;
    position: absolute;
    bottom: 0.5rem;
    left: 0.6rem;
}

.swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: transform var(--t);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.swatch:hover {
    transform: scale(1.2);
}

.pcard-info {
    padding: 0.9rem 1rem 1rem;
}

.pcard-name {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.3rem;
    color: var(--ink);
}

.pcard-stars {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
}

.stars-row {
    display: flex;
    gap: 1px;
}

.star {
    color: #F5B800;
    font-size: 0.75rem;
}

.star.half {
    opacity: 0.4;
}

.stars-count {
    font-size: 0.75rem;
    color: var(--ink-3);
    font-weight: 500;
}

.pcard-pricing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: space-between;
}

.pcard-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
}

.pcard-oldprice {
    font-size: 0.8rem;
    color: var(--ink-3);
    text-decoration: line-through;
}

.pcard-add {
    width: 30px;
    height: 30px;
    border-radius: var(--r-sm);
    background: var(--ink);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--t), transform var(--t);
}

.pcard-add:hover {
    background: #2A2A2A;
    transform: scale(1.08);
}

.pcard-add svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
}

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

.tech-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.75rem 1.5rem;
    transition: border-color var(--t), box-shadow var(--t);
    opacity: 0;
    transform: translateY(20px);
}

.tech-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), box-shadow var(--t), border-color var(--t);
}

.tech-card:hover {
    border-color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.tech-ico {
    width: 44px;
    height: 44px;
    background: var(--ink);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.tech-ico svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tech-name {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.tech-desc {
    font-size: 0.82rem;
    color: var(--ink-2);
    line-height: 1.55;
}

.promo-band {
    background: var(--ink);
    color: white;
    border-radius: var(--r-xl);
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.promo-band::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(200, 240, 0, 0.07);
}

.promo-band::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: 180px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(200, 240, 0, 0.04);
}

.promo-band-text {
    position: relative;
    z-index: 1;
}

.promo-band-kicker {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.promo-band-h {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.promo-band-sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.promo-band-cta {
    position: relative;
    z-index: 1;
    background: var(--accent);
    color: var(--accent-text);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: var(--r);
    font-size: 0.9rem;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform var(--t), box-shadow var(--t);
}

.promo-band-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 240, 0, 0.3);
}

.results-page-wrap {}

.r-breadcrumb {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

.r-bc-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--ink-3);
}

.r-bc-inner a {
    color: var(--ink-3);
    transition: color var(--t);
}

.r-bc-inner a:hover {
    color: var(--ink);
}

.r-bc-inner .sep {
    color: var(--ink-4);
}

.r-bc-inner .cur {
    color: var(--ink);
    font-weight: 600;
}

.results-layout {
    display: flex;
    gap: 0;
    max-width: var(--max);
    margin: 0 auto;
    padding: 2rem;
    align-items: flex-start;
}

.filters-col {
    width: 252px;
    flex-shrink: 0;
    margin-right: 1.5rem;
    position: sticky;
    top: 80px;
}

.filter-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 1.25rem;
}

.filter-head {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-3);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-clr-btn {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ink-2);
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
}

.filter-grp {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.filter-grp:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-grp-title {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.65rem;
    color: var(--ink);
}

.fchips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.fchip {
    padding: 0.3rem 0.65rem;
    border-radius: 5px;
    border: 1.5px solid var(--border);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-2);
    background: none;
    cursor: pointer;
    transition: border-color var(--t), color var(--t), background var(--t);
}

.fchip:hover {
    border-color: var(--ink);
    color: var(--ink);
}

.fchip.on {
    border-color: var(--ink);
    color: var(--ink);
    background: var(--surface-2);
}

.fswatches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.fswatch {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform var(--t), box-shadow var(--t);
    position: relative;
}

.fswatch:hover {
    transform: scale(1.1);
}

.fswatch.on {
    box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--ink);
}

.price-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
}

.price-inp {
    flex: 1;
    padding: 0.5rem 0.65rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 0.82rem;
    color: var(--ink);
    background: var(--surface-2);
    outline: none;
    transition: border-color var(--t);
}

.price-inp:focus {
    border-color: var(--ink);
}

.price-sep {
    color: var(--ink-3);
    font-size: 0.82rem;
}

.btn-apply-filter {
    width: 100%;
    padding: 0.75rem;
    background: var(--ink);
    color: white;
    border: none;
    border-radius: var(--r-sm);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.75rem;
    transition: background var(--t);
}

.btn-apply-filter:hover {
    background: #2A2A2A;
}

.results-main {
    flex: 1;
    min-width: 0;
}

.r-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    gap: 0.75rem;
}

.r-count {
    font-size: 0.85rem;
    color: var(--ink-2);
}

.r-count strong {
    color: var(--ink);
}

.r-controls {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.r-sort {
    padding: 0.5rem 0.9rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 0.82rem;
    color: var(--ink);
    background: var(--surface);
    outline: none;
    cursor: pointer;
    transition: border-color var(--t);
}

.r-sort:focus {
    border-color: var(--ink);
}

.filter-mob-btn {
    display: none;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.9rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 0.82rem;
    font-weight: 600;
    background: var(--surface);
    color: var(--ink-2);
    cursor: pointer;
    transition: border-color var(--t), color var(--t);
}

.filter-mob-btn:hover {
    border-color: var(--ink);
    color: var(--ink);
}

.filter-mob-btn svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.filter-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform var(--t-slow) var(--ease);
    z-index: 2100;
    max-height: 82vh;
    overflow-y: auto;
}

.filter-sheet.open {
    transform: translateY(0);
}

.fsh-handle {
    width: 36px;
    height: 4px;
    background: var(--border-2);
    border-radius: 2px;
    margin: 0 auto 1.25rem;
}

.fsh-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.fsh-title {
    font-size: 1rem;
    font-weight: 800;
}

.fsh-close {
    width: 30px;
    height: 30px;
    border-radius: var(--r-sm);
    background: var(--surface-2);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-2);
}

.fsh-close svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100vw);
    height: 100%;
    background: var(--surface);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform var(--t-slow) var(--ease);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
}

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

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

.cd-title {
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cd-title-count {
    font-size: 0.75rem;
    background: var(--surface-2);
    border-radius: var(--r-pill);
    padding: 0.15rem 0.5rem;
    color: var(--ink-3);
    font-weight: 600;
}

.cd-close {
    width: 32px;
    height: 32px;
    border-radius: var(--r-sm);
    background: var(--surface-2);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-2);
}

.cd-close svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

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

.cd-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--ink-3);
}

.cd-empty-ico {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

.cd-empty-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.cd-empty-sub {
    font-size: 0.82rem;
    margin-top: 0.3rem;
}

.ci {
    display: flex;
    gap: 0.85rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.ci:last-child {
    border-bottom: none;
}

.ci-img {
    width: 72px;
    height: 72px;
    border-radius: var(--r-sm);
    object-fit: cover;
    background: var(--surface-2);
    flex-shrink: 0;
}

.ci-info {
    flex: 1;
    min-width: 0;
}

.ci-name {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ci-meta {
    font-size: 0.75rem;
    color: var(--ink-3);
    margin-bottom: 0.5rem;
}

.ci-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ci-stepper {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    overflow: hidden;
}

.ci-step-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink-2);
    transition: background var(--t), color var(--t);
}

.ci-step-btn:hover {
    background: var(--surface-2);
    color: var(--ink);
}

.ci-qty {
    font-size: 0.85rem;
    font-weight: 700;
    min-width: 28px;
    text-align: center;
}

.ci-price {
    font-size: 0.9rem;
    font-weight: 800;
}

.ci-remove {
    background: none;
    border: none;
    color: var(--ink-4);
    cursor: pointer;
    padding: 0.25rem;
    transition: color var(--t);
}

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

.ci-remove svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.cd-foot {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid var(--border);
}

.cd-coupon-row {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}

.cd-inp {
    flex: 1;
    padding: 0.6rem 0.85rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 0.82rem;
    background: var(--surface-2);
    outline: none;
    transition: border-color var(--t);
}

.cd-inp:focus {
    border-color: var(--ink);
}

.btn-cd-sm {
    padding: 0.6rem 0.9rem;
    background: var(--surface-2);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-2);
    cursor: pointer;
    white-space: nowrap;
    transition: border-color var(--t), color var(--t), background var(--t);
}

.btn-cd-sm:hover {
    border-color: var(--ink);
    color: var(--ink);
}

.cd-result {
    font-size: 0.78rem;
    color: var(--ink-2);
    min-height: 1.2em;
    margin-bottom: 0.85rem;
}

.cd-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cd-total-label {
    font-size: 0.875rem;
    color: var(--ink-2);
}

.cd-total-val {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.btn-checkout-full {
    width: 100%;
    padding: 1rem;
    background: var(--ink);
    color: white;
    border: none;
    border-radius: var(--r);
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: background var(--t), transform var(--t);
}

.btn-checkout-full:hover {
    background: #2A2A2A;
    transform: translateY(-1px);
}

.btn-continue-shopping {
    width: 100%;
    padding: 0.8rem;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink-2);
    cursor: pointer;
    transition: border-color var(--t), color var(--t);
}

.btn-continue-shopping:hover {
    border-color: var(--ink);
    color: var(--ink);
}

.modal-ov {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2500;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.25s var(--ease);
    width: 100vw;
}

.modal-ov.open {
    display: flex;
    opacity: 1;
}

.modal-box {
    background: var(--surface);
    width: min(1100px, calc(100vw - 28px));
    max-width: none;
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    transform: translateY(10px) scale(0.98);
    transition: transform 0.3s var(--ease-spring);
}

.modal-ov.open .modal-box {
    transform: translateY(0) scale(1);
}

.mhd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.75rem 1rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--surface);
    border-radius: var(--r-xl) var(--r-xl) 0 0;
    z-index: 5;

}

.mhd-title {
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.mhd-close {
    width: 32px;
    height: 32px;
    border-radius: var(--r-sm);
    background: var(--surface-2);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-2);
    transition: background var(--t);
}

.mhd-close:hover {
    background: var(--surface-3);
}

.mhd-close svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.mbody {
    padding: 1.75rem;
}

.pm-main-img {
    aspect-ratio: 1/1;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--surface-2);
    margin-bottom: 0.75rem;
}

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

.pm-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    grid-template-areas: "gallery info" "reviews reviews" "related related";
    gap: 2rem;
    align-items: start;
}

.pm-gallery {
    grid-area: gallery;
}

.pm-info {
    grid-area: info;
}

.pm-reviews {
    grid-area: reviews;
    margin-top: 0.25rem;
}

.pm-related {
    grid-area: related;
    margin-top: 0.25rem;
}

.pm-rel-info

.pm-main-img {
    aspect-ratio: 5/4;
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--surface-2);
    margin-bottom: 0.75rem;
}

.pm-thumbs {
    display: flex;
    gap: 0.6rem;
}

.pm-thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--r-sm);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--t);
}

.pm-thumb.on {
    border-color: var(--ink);
}

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

.pm-info {}

.pm-badges {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.pm-badge {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2em 0.6em;
    border-radius: 4px;
}

.pm-stars {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
}

.pm-name {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.pm-price-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.pm-price {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.pm-oldprice {
    font-size: 1rem;
    color: var(--ink-3);
    text-decoration: line-through;
    font-weight: 500;
}

.pm-discount {
    font-size: 0.78rem;
    font-weight: 800;
    background: rgba(229, 57, 53, 0.1);
    color: var(--danger);
    padding: 0.2em 0.5em;
    border-radius: 4px;
}

.pm-desc {
    font-size: 0.87rem;
    color: var(--ink-2);
    line-height: 1.65;
    margin-bottom: 1.25rem;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.pm-section-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-3);
    margin-bottom: 0.6rem;
}

.pm-colors {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.pm-color {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    transition: transform var(--t), box-shadow var(--t);
}

.pm-color:hover {
    transform: scale(1.1);
}

.pm-color.on {
    box-shadow: 0 0 0 2px var(--surface), 0 0 0 4px var(--ink);
}

.pm-sizes {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.pm-size {
    padding: 0.4rem 0.7rem;
    border: 2px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: border-color var(--t), background var(--t), color var(--t);
}

.pm-size:hover {
    border-color: var(--ink);
}

.pm-size.on {
    border-color: var(--ink);
    background: var(--ink);
    color: white;
}

.pm-size.out {
    border-color: var(--border);
    color: var(--ink-4);
    text-decoration: line-through;
    cursor: not-allowed;
}

.pm-cta {
    width: 100%;
    padding: 1rem;
    background: var(--ink);
    color: white;
    border: none;
    border-radius: var(--r);
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    margin-bottom: 0.75rem;
    transition: background var(--t), transform var(--t);
}

.pm-cta:hover {
    background: #2A2A2A;
    transform: translateY(-1px);
}

.pm-reviews {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.pm-reviews-title {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.review-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.review-item:last-child {
    border-bottom: none;
}

.review-hd {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.review-name {
    font-size: 0.8rem;
    font-weight: 700;
}

.review-date {
    font-size: 0.72rem;
    color: var(--ink-3);
}

.review-text {
    font-size: 0.8rem;
    color: var(--ink-2);
    line-height: 1.5;
}

.pm-related {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.pm-related-title {
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.pm-rel-track-wrap {
    position: relative;
    overflow: hidden;
}

.pm-rel-track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pm-rel-track::-webkit-scrollbar {
    display: none;
}

.pm-rel-item {
    width: 25%;
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: border-color var(--t);
}

.pm-rel-item:hover {
    border-color: var(--ink);
}

.pm-rel-img {
    aspect-ratio: 1/1;
    background: var(--surface-2);
    overflow: hidden;
}

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

.pm-rel-info {
    padding: 0.4rem 0.5rem 0.5rem;
    
}

.pm-rel-name {
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pm-rel-price {
    font-size: 0.78rem;
    font-weight: 800;
}

.pm-rel-prev,
.pm-rel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: var(--shadow-sm);
    color: var(--ink);
    transition: box-shadow var(--t);
}

.pm-rel-prev:hover,
.pm-rel-next:hover {
    box-shadow: var(--shadow-md);
}

.pm-rel-prev {
    left: -10px;
}

.pm-rel-next {
    right: -10px;
}

.pm-rel-prev svg,
.pm-rel-next svg {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
}

.generic-modal-box {
    max-width: 480px;
}

.profile-center{display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;margin-bottom:1rem;}
.profile-center .upload-lbl{margin-top:0.65rem;}

.fi-wrap{position:relative;display:flex;align-items:center;}
.fi-wrap .fi{padding-right:3rem;}
.edit-ico{position:absolute;right:10px;top:50%;transform:translateY(-50%);width:34px;height:34px;border-radius:12px;background:var(--surface-2);border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--ink-2);transition:background var(--t),color var(--t),transform var(--t);}
.edit-ico:hover{background:var(--surface-3);color:var(--ink);transform:translateY(-50%) scale(1.05);}
.edit-ico svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;}

.fi[readonly]{opacity:0.9;}
.fi.is-editing{box-shadow:0 0 0 3px rgba(17,17,17,0.08);border-color:var(--ink);background:var(--surface);}
.edit-ico.is-on{background:var(--ink);color:var(--accent);border-color:var(--ink);}


.account-btn{width:auto;min-width:38px;justify-content:flex-start;padding:0 12px;gap:0.55rem;}
.nav-user-name{display:block;font-weight:800;font-size:0.9rem;color:var(--ink);max-width:140px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}

@media (max-width:640px){
  .nav-user-name{display:none;}
  .account-btn{padding:0;width:38px;justify-content:center;}
}

.profile-pic {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
    margin-bottom: 0.75rem;
}

.upload-lbl {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: var(--surface-2);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ink-2);
    cursor: pointer;
    transition: border-color var(--t), color var(--t);
}

.upload-lbl:hover {
    border-color: var(--ink);
    color: var(--ink);
}

.ff {
    margin-bottom: 0.85rem;
}

.fl {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-3);
    margin-bottom: 0.35rem;
}

.fi {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 0.875rem;
    color: var(--ink);
    background: var(--bg);
    outline: none;
    transition: border-color var(--t), box-shadow var(--t);
}

.fi:focus {
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.07);
}

.form-btns {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.btn-save {
    flex: 1;
    padding: 0.8rem;
    background: var(--ink);
    color: white;
    border: none;
    border-radius: var(--r-sm);
    font-size: 0.875rem;
    font-weight: 800;
    cursor: pointer;
    transition: background var(--t);
}

.btn-save:hover {
    background: #2A2A2A;
}

.btn-cancel {
    flex: 1;
    padding: 0.8rem;
    background: none;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink-2);
    cursor: pointer;
    transition: border-color var(--t), color var(--t);
}

.btn-cancel:hover {
    border-color: var(--ink);
    color: var(--ink);
}

.orders-empty-blk {
    text-align: center;
    padding: 2rem 0;
}

.oei {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.oet {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink-2);
}

.oes {
    font-size: 0.82rem;
    color: var(--ink-3);
    margin-top: 0.3rem;
}

.toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    pointer-events: none;
}

.toast {
    background: var(--ink);
    color: white;
    border-radius: var(--r-lg);
    padding: 0.85rem 1rem;
    max-width: 300px;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    box-shadow: var(--shadow-xl);
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.35s var(--ease-spring), opacity 0.3s var(--ease);
    pointer-events: all;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-img {
    width: 44px;
    height: 44px;
    border-radius: var(--r-sm);
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
}

.toast-body {
    flex: 1;
    min-width: 0;
}

.toast-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 0.2rem;
}

.toast-name {
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toast-price {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
}

.toast-view {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--accent);
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
}

.toast-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.6);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 0.8rem;
    transition: background var(--t);
}

.toast-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.6);
    margin-top: auto;
}

.ft-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 3.5rem 2rem 2rem;
}

.ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ft-brand-logo {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 0.75rem;
}

.ft-brand-logo span {
    background: var(--accent);
    color: var(--accent-text);
    padding: 0.05em 0.25em;
    border-radius: 3px;
}

.ft-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 250px;
}

.ft-col-title {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: 1rem;
}

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

.ft-links li {
    margin-bottom: 0.55rem;
}

.ft-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--t);
}

.ft-links a:hover {
    color: white;
}

.ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

@media(max-width:1100px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ft-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-img-col {
        display: none;
    }

    .hero-text {
        padding: 3rem 0;
    }

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

    .pm-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width:640px) {
    .modal-box {
        width: calc(100vw - 16px);
        max-height: 94vh;
        border-radius: 14px;
    }

    .mbody {
        padding: 1.1rem;
    }
}

@media(max-width:768px) {

    .nav-links,
    .search-box,
    .user-wrap {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .hd {
        justify-content: space-between;
    }

    .prod-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .section {
        padding: 3rem 0;
    }

    .sec-inner {
        padding: 0 1rem;
    }

    .cat-grid {
        padding: 0 1rem;
    }

    .results-layout {
        padding: 1rem;
    }

    .filters-col {
        display: none;
    }

    .filter-mob-btn {
        display: flex;
    }

    .r-controls {
        flex-wrap: wrap;
    }

    .promo-band {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        border-radius: var(--r-xl);
    }

    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .ft-brand {
        grid-column: 1/-1;
    }

    .ft-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .toast-container {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
    }

    .toast {
        max-width: 100%;
    }
}

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

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

    .promo-band {
        margin: 0 -1rem;
        border-radius: 0;
    }
}

*::-webkit-scrollbar{
  width:10px;
  background-color: transparent;
}

*::-webkit-scrollbar-track{
  background:transparent;
}

*::-webkit-scrollbar-thumb{
  background:var(--accent);
  border-radius:8px;
  border:2px solid transparent;
}

*::-webkit-scrollbar-thumb:hover{
 background:var(--accent);
}

*{
  scrollbar-width:thin;
  scrollbar-color:var(--accent) #0c0c0c;
}