:root {
    --bg-body: #0e0e0e;
    --bg-page: #1a1a1a;
    --bg-white: #222;
    --nav-bg: #2a2a2a;
    --footer-bg: #111;
    --red: #c0392b;
    --red-hover: #e74c3c;
    --text: #ddd;
    --text-dim: #999;
    --text-light: #666;
    --border: #333;
    --border-dark: #444;
    --font-logo: 'UnifrakturMaguntia', cursive;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --site-width: 1100px;
}

/* Light Mode */
[data-theme="light"] {
    --bg-body: #d4d4d4;
    --bg-page: #f5f5f5;
    --bg-white: #fff;
    --nav-bg: #4a4a4a;
    --footer-bg: #2a2a2a;
    --text: #333;
    --text-dim: #777;
    --text-light: #999;
    --border: #ddd;
    --border-dark: #ccc;
}
[data-theme="light"] .page-wrapper { box-shadow: 0 0 30px rgba(0,0,0,.15); }
[data-theme="light"] .lang-dropdown { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,.12); }
[data-theme="light"] .lang-label { background: #fafafa; }
[data-theme="light"] .lang-option:hover { background: #f5f5f5; }
[data-theme="light"] .header-search input { background: #fff; }
[data-theme="light"] .product-img { background: #e0e0e0; }
[data-theme="light"] .footer-top-bar { background: #363636; }

/* Theme toggle */
.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-dim);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 2px;
    font-size: .85rem;
    transition: border-color .2s, color .2s;
}
.theme-toggle:hover { border-color: var(--red); color: var(--red); }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg-body);
    color: var(--text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--red); color: #fff; }

.site-container { max-width: var(--site-width); margin: 0 auto; padding: 0 16px; }

.page-wrapper {
    max-width: 1130px;
    margin: 0 auto;
    background: var(--bg-page);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.page-wrapper main { flex: 1; }

/* ========== HEADER ========== */
.site-header { background: var(--bg-white); }

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: .74rem;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
}

.header-msg a { color: var(--red); }

.header-links { display: flex; gap: 12px; }
.header-links a { color: var(--text-dim); }
.header-links a:hover { color: var(--red); }

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 10px;
}

.logo-text {
    font-family: var(--font-logo);
    font-size: 2.6rem;
    color: var(--red);
    line-height: 1;
}

.header-right { display: flex; align-items: center; gap: 14px; }

/* Language */
.lang-selector { position: relative; }

.lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 4px 8px;
    cursor: pointer;
    font-size: .78rem;
    border-radius: 2px;
}
.lang-current:hover { border-color: #aaa; }
.lang-current img { border-radius: 1px; }
.lang-current i { font-size: .55rem; color: var(--text-light); }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 3px);
    right: 0;
    background: #2a2a2a;
    border: 1px solid var(--border);
    min-width: 170px;
    z-index: 2000;
    display: none;
    box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.lang-dropdown.open { display: block; }
.lang-label {
    display: block;
    padding: 6px 10px;
    font-size: .6rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border);
    background: #252525;
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px;
    font-size: .78rem;
    color: var(--text);
}
.lang-option:hover { background: #333; color: var(--red); }
.lang-option.active { color: var(--red); font-weight: 600; }
.lang-option img { border-radius: 1px; }

/* Search */
.header-cart-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 18px;
    background: var(--red); color: #fff !important;
    font-family: var(--font-head); font-size: .78rem; font-weight: 600;
    letter-spacing: .5px; text-decoration: none;
    transition: background .15s;
    white-space: nowrap;
}
.header-cart-btn:hover { background: var(--red-hover); color: #fff !important; }
.header-cart-btn i { font-size: .9rem; }

.header-search { display: flex; width: 260px; }
.header-search input {
    flex: 1;
    border: 1px solid var(--border-dark);
    border-right: none;
    padding: 6px 10px;
    font-size: .85rem;
    outline: none;
    color: var(--text);
    background: var(--bg-page);
}
.header-search input::placeholder { color: var(--text-light); }
.header-search input:focus { border-color: var(--red); }
.header-search button {
    background: var(--red);
    border: none;
    color: #fff;
    padding: 0 13px;
    cursor: pointer;
    font-size: .95rem;
}
.header-search button:hover { background: var(--red-hover); }

/* ========== NAV ========== */
.site-nav {
    background: var(--nav-bg);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner { display: flex; align-items: center; }

.nav-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    padding: 7px;
    cursor: pointer;
    display: none;
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-list a {
    display: block;
    padding: 10px 14px;
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 500;
    color: #ccc;
    letter-spacing: 1.2px;
    white-space: nowrap;
}
.nav-list a:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-list a.active { color: #fff; }
.nav-home { background: var(--red) !important; color: #fff !important; }
.nav-sale { color: var(--red) !important; font-weight: 700 !important; }
.nav-dropdown { position: relative; }
.nav-sub { display: none; position: absolute; top: 100%; left: 0; background: var(--nav-bg); min-width: 180px; z-index: 100; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 8px 24px rgba(0,0,0,.4); list-style: none; padding: 4px 0; }
.nav-dropdown:hover .nav-sub { display: block; }
.nav-sub li a { display: block; padding: 9px 16px !important; font-size: .78rem !important; white-space: nowrap; letter-spacing: .5px; }
.nav-sub li a:hover { background: rgba(255,255,255,.08); }

/* ========== BOOTSTRAP CAROUSEL (minimal) ========== */
.carousel { position: relative; }
.carousel-inner { position: relative; width: 100%; overflow: hidden; }
.carousel-item { position: relative; display: none; float: left; width: 100%; margin-right: -100%; backface-visibility: hidden; transition: transform .6s ease-in-out; }
.carousel-item.active, .carousel-item-next, .carousel-item-prev { display: block; }
.carousel-item-next:not(.carousel-item-start), .active.carousel-item-end { transform: translateX(100%); }
.carousel-item-prev:not(.carousel-item-end), .active.carousel-item-start { transform: translateX(-100%); }
.carousel-fade .carousel-item { opacity: 0; transition-property: opacity; transform: none; }
.carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end { z-index: 1; opacity: 1; }
.carousel-fade .active.carousel-item-start, .carousel-fade .active.carousel-item-end { z-index: 0; opacity: 0; transition: opacity 0s .6s; }
.carousel-control-prev, .carousel-control-next { position: absolute; top: 0; bottom: 0; z-index: 2; display: flex; align-items: center; justify-content: center; width: 15%; padding: 0; color: #fff; text-align: center; background: none; border: 0; opacity: .5; transition: opacity .15s ease; cursor: pointer; }
.carousel-control-prev:hover, .carousel-control-next:hover { opacity: .9; }
.carousel-control-prev { left: 0; }
.carousel-control-next { right: 0; }
.carousel-control-prev-icon, .carousel-control-next-icon { display: inline-block; width: 1.5rem; height: 1.5rem; background-repeat: no-repeat; background-position: 50%; background-size: 100% 100%; }
.carousel-control-prev-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e"); }
.carousel-control-next-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }
.carousel-indicators { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; display: flex; justify-content: center; padding: 0; margin-right: 15%; margin-bottom: 1rem; margin-left: 15%; list-style: none; }
.carousel-indicators [data-bs-target] { box-sizing: content-box; flex: 0 1 auto; width: 30px; height: 3px; padding: 0; margin-right: 3px; margin-left: 3px; text-indent: -999px; cursor: pointer; background-color: #fff; background-clip: padding-box; border: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent; opacity: .5; transition: opacity .6s ease; }
.carousel-indicators .active { opacity: 1; }
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

/* ========== HERO ========== */
.hero { padding: 8px 0 0; }
.hero-grid { display: grid; grid-template-columns: 1fr 260px; gap: 6px; min-height: 420px; }

.hero-slider { overflow: hidden; position: relative; border-radius: 4px; }
.hero-slider .carousel-item { position: relative; }

.slide-visual { position: relative; width: 100%; height: 420px; overflow: hidden; }
.slide-img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.slide-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 40%, rgba(0,0,0,.15) 70%, transparent 100%);
}

.slide-caption {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 36px;
    width: 55%;
    z-index: 2;
}
.slide-tag {
    display: inline-block;
    width: fit-content;
    background: var(--red);
    color: #fff;
    font-family: var(--font-head);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    padding: 3px 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.slide-caption h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1.5px;
    line-height: 1.15;
    margin-bottom: 6px;
    text-transform: uppercase;
    text-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.slide-caption p {
    font-size: .82rem;
    color: rgba(255,255,255,.75);
    margin: 0 0 14px;
    line-height: 1.4;
}
.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    background: var(--red);
    color: #fff;
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 20px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background .2s, transform .2s;
}
.slide-btn:hover { background: #a5281e; transform: translateX(3px); color: #fff; }
.slide-btn i { font-size: .7rem; transition: transform .2s; }
.slide-btn:hover i { transform: translateX(3px); }

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 36px; height: 36px;
    top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,.5);
    border: 1px solid rgba(255,255,255,.15);
    opacity: 0;
    transition: opacity .2s;
    border-radius: 2px;
}
.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next { opacity: 1; }
.hero-slider .carousel-control-prev { left: 8px; }
.hero-slider .carousel-control-next { right: 8px; }
.hero-slider .carousel-indicators { bottom: 10px; margin: 0; gap: 4px; }
.hero-slider .carousel-indicators button {
    width: 28px; height: 3px; border: none;
    background: rgba(255,255,255,.3); border-radius: 2px;
    transition: all .25s;
}
.hero-slider .carousel-indicators .active { background: var(--red); width: 40px; }

/* Side Boxes */
.hero-side { display: flex; flex-direction: column; gap: 6px; }

.side-box {
    position: relative;
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    border-radius: 4px;
    text-decoration: none;
    transition: transform .2s;
}
.side-box:hover { transform: translateY(-2px); }
.side-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.side-box:hover .side-bg { transform: scale(1.05); }
.side-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.15) 100%);
}
.side-content {
    position: relative; z-index: 1;
    padding: 14px 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.side-text { flex: 1; }
.side-content strong {
    display: block;
    font-family: var(--font-head);
    font-size: .82rem;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
}
.side-content span { display: block; font-size: .65rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.side-arrow { color: rgba(255,255,255,.4); font-size: .9rem; transition: color .2s, transform .2s; }
.side-box:hover .side-arrow { color: var(--red); transform: translateX(3px); }

/* ========== BAND STRIPS ========== */
.band-strips .site-container { display: flex; flex-direction: column; gap: 6px; padding-top: 8px; }

.band-strip {
    display: block;
    position: relative;
    height: 85px;
    overflow: hidden;
    border-radius: 4px;
    text-decoration: none;
    transition: transform .2s;
}
.band-strip:hover { transform: translateY(-1px); }
.strip-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.band-strip:hover .strip-bg { transform: scale(1.03); }
.strip-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); transition: background .2s; }
.band-strip:hover .strip-overlay { background: rgba(0,0,0,.45); }
.strip-inner {
    position: relative; z-index: 1;
    display: flex; align-items: center;
    height: 100%; padding: 0 24px; gap: 14px;
}
.strip-name {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
}
.strip-sub { font-size: .78rem; color: rgba(255,255,255,.6); flex: 1; }
.strip-arrow { color: rgba(255,255,255,.4); font-size: 1.1rem; transition: color .2s, transform .2s; }
.band-strip:hover .strip-arrow { color: #fff; transform: translateX(4px); }

/* ========== CATEGORIES ========== */
.categories-section { padding: 20px 0 6px; }

.section-title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--red);
    margin-bottom: 10px;
}

.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }

.cat-card {
    position: relative;
    overflow: hidden;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(.4);
    transform: scale(1.12);
    transition: filter .25s;
}
.cat-card:hover .cat-bg { filter: blur(2px) brightness(.5); }
.cat-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.25); }
.cat-content {
    position: relative; z-index: 1;
    display: flex; flex-direction: column;
    align-items: center; gap: 4px;
}
.cat-content span {
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,.6);
}

/* ========== PRODUCTS ========== */
.product-section { padding: 18px 0 10px; }

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

.product-card { background: var(--bg-white); overflow: hidden; }

.product-img {
    display: block;
    height: 230px;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}
.product-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: opacity .3s;
}
.product-img-hover { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .product-img-main { opacity: 0; }
.product-card:hover .product-img-hover { opacity: 1; }

.badge-label {
    position: absolute;
    top: 0; left: 0;
    background: var(--red);
    color: #fff;
    font-family: var(--font-head);
    font-size: .58rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 3px 8px;
    z-index: 1;
}
.badge-hot { background: #e67e22; }
.badge-sale { background: #27ae60; }
.badge-colors {
    position: absolute;
    top: 8px; left: 50%; transform: translateX(-50%);
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(4px);
    color: #fff;
    font-family: var(--font-head);
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: .8px;
    padding: 3px 10px;
    z-index: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-info { padding: 8px 6px 10px; }
.product-info a:hover h3 { color: var(--red); }
.product-info h3 {
    font-family: var(--font-body);
    font-size: .76rem;
    font-weight: 500;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 3px;
}
.product-price {
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
}
.old-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 4px;
    font-size: .78rem;
}

/* ========== CATEGORY PAGE ========== */
.category-breadcrumb { padding: 14px 0 0; }
.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: .75rem;
    color: var(--text-dim);
    padding: 0;
    margin: 0;
}
.breadcrumb-list li + li::before { content: '›'; margin-right: 6px; color: var(--text-light); }
.breadcrumb-list a { color: var(--text-dim); }
.breadcrumb-list a:hover { color: var(--red); }
.breadcrumb-list .active,
.breadcrumb-list .current { color: var(--text); font-weight: 500; }
.pd-breadcrumb { padding: 14px 0 0; }

.category-header { padding: 10px 0 0; }
.category-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}
.category-title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text);
}
.category-count { font-size: .78rem; color: var(--text-dim); }

.category-toolbar { padding: 10px 0 6px; }

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}
.filter-dropdowns { display: flex; gap: 6px; flex-wrap: wrap; }

.filter-dropdown { position: relative; }
.filter-drop-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 6px 12px;
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .8px;
    cursor: pointer;
}
.filter-drop-btn i { font-size: .55rem; color: var(--text-light); }
.filter-drop-btn:hover { border-color: var(--red); }
.filter-drop-btn.open { border-color: var(--red); color: var(--red); }

.filter-drop-panel {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: var(--bg-white);
    border: 1px solid var(--border);
    padding: 10px 12px;
    min-width: 160px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.filter-drop-panel.open { display: flex; flex-direction: column; gap: 6px; }
.filter-drop-panel label {
    font-size: .78rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    white-space: nowrap;
}
.filter-drop-panel label:hover { color: var(--text); }
.filter-drop-panel input[type="checkbox"] {
    accent-color: var(--red);
    width: 14px; height: 14px;
    cursor: pointer;
}

/* Wide brand/band panel */
.filter-panel-wide {
    min-width: 480px;
    padding: 14px 16px;
}
.filter-brand-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px 14px;
    padding-bottom: 8px;
}
.filter-brand-list a {
    font-size: .76rem;
    color: var(--text-dim);
    padding: 3px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.filter-brand-list a:hover { color: var(--text); }
.view-all-link {
    display: block;
    color: var(--red) !important;
    font-weight: 600;
    font-size: .76rem;
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}
.view-all-link:hover { color: var(--red-hover) !important; }

@media (max-width: 575.98px) {
    .filter-panel-wide { min-width: 280px; }
    .filter-brand-list { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.toolbar-right { display: flex; align-items: center; gap: 10px; }
.toolbar-sort { display: flex; align-items: center; gap: 6px; }
.toolbar-sort label { font-size: .75rem; color: var(--text-dim); white-space: nowrap; }
.sort-select {
    background: var(--bg-white);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 6px 10px;
    font-size: .75rem;
    outline: none;
    cursor: pointer;
}

.category-content { padding: 14px 0 24px; }

.product-grid-4col { grid-template-columns: repeat(4, 1fr); }

.category-pagination { padding: 20px 0 0; }
.pagination-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 0; margin: 0;
}
.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    font-family: var(--font-head);
    font-size: .78rem;
    color: var(--text-dim);
    background: var(--bg-white);
    border: 1px solid var(--border);
    letter-spacing: .5px;
}
.page-btn:hover { color: var(--red); border-color: var(--red); }
.page-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
.page-prev, .page-next { font-size: .72rem; gap: 4px; }

@media (max-width: 767.98px) {
    .product-grid-4col { grid-template-columns: repeat(2, 1fr); }
    .filter-bar { flex-direction: column; align-items: flex-start; }
    .category-title { font-size: 1.1rem; }
}
@media (max-width: 575.98px) {
    .category-header-inner { flex-direction: column; gap: 2px; }
    .filter-dropdowns { width: 100%; }
}


/* ========== STATIC PAGES (About, FAQ, etc.) ========== */
.page-content { padding: 24px 0 40px; }
.page-title {
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
}
.page-body {
    font-size: .88rem;
    line-height: 1.85;
    color: var(--text-dim);
}
.page-body h2 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text);
    margin: 28px 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}
.page-body h2:first-child { margin-top: 0; }
.page-body h3 {
    font-family: var(--font-head);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--text);
    margin: 22px 0 8px;
}
.page-body p { margin-bottom: 14px; }
.page-body strong { color: var(--text); }
.page-body a { color: var(--red); }
.page-body a:hover { text-decoration: underline; }
.page-body ul, .page-body ol {
    margin: 10px 0 16px 20px;
    color: var(--text-dim);
}
.page-body li { margin-bottom: 6px; }
.page-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
    font-size: .82rem;
}
.page-body table th, .page-body table td {
    padding: 10px 14px;
    border: 1px solid var(--border);
    text-align: left;
}
.page-body table th {
    background: var(--bg-white);
    color: var(--text);
    font-weight: 600;
}
.page-body blockquote {
    border-left: 3px solid var(--red);
    padding: 10px 16px;
    margin: 14px 0;
    color: var(--text);
    background: var(--bg-white);
    font-style: italic;
}
.page-body hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 24px 0;
}

/* Contact page specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 16px;
}
.contact-card {
    background: var(--bg-white);
    padding: 20px;
    border: 1px solid var(--border);
}
.contact-card h3 {
    font-family: var(--font-head);
    font-size: .85rem;
    color: var(--text);
    margin: 0 0 10px;
    letter-spacing: 1px;
}
.contact-card p {
    font-size: .82rem;
    color: var(--text-dim);
    margin: 0;
    line-height: 1.7;
}
.contact-card i {
    color: var(--red);
    margin-right: 6px;
}

/* FAQ accordion */
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}
.faq-question {
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: .5px;
}
.faq-question:hover { color: var(--red); }
.faq-question i { font-size: .7rem; color: var(--text-light); transition: transform .2s; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    display: none;
    padding-top: 10px;
    font-size: .82rem;
    color: var(--text-dim);
    line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

@media (max-width: 767.98px) {
    .page-title { font-size: 1.2rem; }
    .page-body h2 { font-size: 1rem; }
    .contact-grid { grid-template-columns: 1fr; }
}

/* ========== FOOTER NEWSLETTER ========== */
.footer-newsletter {
    background: var(--red);
    padding: 16px 0;
}
.fn-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.fn-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: .9rem;
    color: #fff;
    letter-spacing: .5px;
}
.fn-text span {
    font-size: .72rem;
    color: rgba(255,255,255,.75);
}
.fn-form {
    display: flex;
    flex-shrink: 0;
}
.fn-form input {
    width: 240px;
    border: none;
    padding: 8px 12px;
    font-size: .82rem;
    outline: none;
    color: #333;
    background: #fff;
}
.fn-form input::placeholder { color: #999; }
.fn-form button {
    background: #222;
    border: none;
    color: #fff;
    padding: 8px 18px;
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    white-space: nowrap;
}
.fn-form button:hover { background: #000; }

/* ========== FOOTER ========== */
.site-footer {
    background: var(--footer-bg);
    color: #bbb;
    overflow: hidden;
}

/* Feature bar */
.footer-top-bar {
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.footer-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 14px;
    border-right: 1px solid rgba(255,255,255,.06);
}
.footer-feature:last-child { border-right: none; }
.footer-feature i { font-size: 1.3rem; color: var(--red); flex-shrink: 0; }
.footer-feature div { min-width: 0; }
.footer-feature strong {
    display: block;
    font-family: var(--font-head);
    font-size: .72rem;
    color: #fff;
    letter-spacing: .5px;
}
.footer-feature span {
    display: block;
    font-size: .65rem;
    color: #999;
    margin-top: 1px;
}

/* Newsletter bar */
.footer-newsletter {
    background: var(--red);
    padding: 16px 0;
}
.fn-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.fn-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: .9rem;
    color: #fff;
    letter-spacing: .5px;
}
.fn-text span {
    font-size: .72rem;
    color: rgba(255,255,255,.75);
}
.fn-form {
    display: flex;
    flex-shrink: 0;
}
.fn-form input {
    width: 240px;
    border: none;
    padding: 8px 12px;
    font-size: .82rem;
    outline: none;
    color: #333;
    background: #fff;
}
.fn-form input::placeholder { color: #999; }
.fn-form button {
    background: #222;
    border: none;
    color: #fff;
    padding: 8px 18px;
    font-family: var(--font-head);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    white-space: nowrap;
}
.fn-form button:hover { background: #000; }

/* Footer main */
.footer-main { padding: 30px 0 22px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
    gap: 24px;
}

.footer-logo .logo-text { font-size: 1.6rem; }

.footer-desc {
    font-size: .78rem;
    color: #999;
    line-height: 1.7;
    margin: 10px 0 14px;
}

.footer-social { display: flex; gap: 6px; flex-wrap: wrap; }
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    color: #999;
    font-size: .85rem;
    transition: all .2s;
}
.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.site-footer h3 {
    font-family: var(--font-head);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-pay-title { margin-top: 14px !important; }

.site-footer ul { list-style: none; padding-left: 0; margin: 0; }
.site-footer ul li { margin-bottom: 5px; }
.site-footer ul a {
    font-size: .78rem;
    color: #999;
    transition: color .15s;
}
.site-footer ul a:hover { color: var(--red); }

.footer-contact li {
    font-size: .78rem;
    color: #999;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    word-break: break-word;
}
.footer-contact a { color: #999; }
.footer-contact a:hover { color: var(--red); }
.footer-contact i {
    color: var(--red);
    width: 14px;
    font-size: .75rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.payment-methods {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.payment-methods span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    padding: 4px 7px;
    font-size: .6rem;
    color: #bbb;
    letter-spacing: .3px;
    white-space: nowrap;
}
.payment-methods i { font-size: .7rem; }

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 12px 0;
    font-size: .7rem;
    color: #666;
}
.footer-bottom .site-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}
.footer-bottom-links { display: flex; gap: 12px; }
.footer-bottom-links a { color: #666; font-size: .7rem; }
.footer-bottom-links a:hover { color: var(--red); }

/* ========== COOKIE ========== */
.cookie-bar {
    position: fixed;
    bottom: 0; left: 50%;
    transform: translateX(-50%) translateY(100%);
    max-width: 1130px; width: 100%;
    background: var(--footer-bg);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: .74rem;
    color: #ccc;
    z-index: 9999;
    flex-wrap: wrap;
    transition: transform .3s;
}
.cookie-bar.show { transform: translateX(-50%) translateY(0); }
.cookie-actions { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.cookie-ok { background: #27ae60; border: none; color: #fff; padding: 5px 11px; font-size: .72rem; cursor: pointer; }
.cookie-deny { background: var(--red); border: none; color: #fff; padding: 5px 11px; font-size: .72rem; cursor: pointer; }
.cookie-actions a { color: #ccc; font-size: .72rem; }

/* ========== BACK TOP ========== */
.back-top {
    position: fixed; bottom: 18px; right: 18px;
    width: 32px; height: 32px;
    background: var(--red);
    border: none; color: #fff;
    font-size: .85rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0; visibility: hidden;
    transition: all .2s;
    z-index: 998;
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--red-hover); }

.pd-main { padding: 10px 0 20px; }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* Gallery */
.pd-gallery {}
.pd-main-img {
    background: #1a1a1a;
    overflow: hidden;
    margin-bottom: 6px;
}
[data-theme="light"] .pd-main-img { background: #e0e0e0; }
.pd-main-img img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    display: block;
}
.pd-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.pd-thumb {
    background: #1a1a1a;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    overflow: hidden;
}
[data-theme="light"] .pd-thumb { background: #e0e0e0; }
.pd-thumb.active { border-color: var(--red); }
.pd-thumb:hover { border-color: var(--border-dark); }
.pd-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

/* Details */
.pd-details { padding-top: 4px; }
.pd-brand {
    display: inline-block;
    font-size: .72rem;
    font-family: var(--font-head);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 4px;
}
.pd-brand:hover { color: var(--red); }
.pd-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.2;
}
.pd-price {
    display: block;
    font-family: var(--font-head);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 12px;
}
.pd-desc {
    font-size: .82rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 16px;
}

.pd-option-group { margin-bottom: 14px; }
.pd-option-label {
    display: block;
    font-size: .72rem;
    font-family: var(--font-head);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 6px;
}
.pd-option-label strong { color: var(--text); }

/* Print On */
.pd-printon-options { display: flex; gap: 6px; flex-wrap: wrap; }
.pd-printon-btn {
  padding: 8px 16px; border: 1px solid var(--border); background: var(--bg-page);
  color: var(--text-dim); font-size: .78rem; font-family: var(--font-head);
  cursor: pointer; transition: all .15s; letter-spacing: .3px; font-weight: 500;
}
.pd-printon-btn:hover { border-color: var(--text-dim); color: var(--text); }
.pd-printon-btn.active { border-color: var(--red); color: var(--text); background: rgba(192,57,43,.08); }
.pd-printon-extra { color: var(--red); font-weight: 600; font-size: .72rem; }
.pd-printon-description { font-size: .72rem; color: var(--text-dim); margin-top: 6px; font-style: italic; line-height: 1.4; }

/* Sizes */
.pd-sizes { display: flex; gap: 4px; flex-wrap: wrap; }
.pd-size {
    min-width: 42px;
    height: 36px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text);
    font-family: var(--font-head);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .5px;
    cursor: pointer;
    transition: all .15s;
    white-space: nowrap;
}
.pd-size:hover { border-color: var(--text-dim); }
.pd-size.active {
    border-color: var(--red);
    background: var(--red);
    color: #fff;
}

/* Colors */
.pd-colors { display: flex; gap: 6px; }
.pd-color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--border-dark);
    cursor: pointer;
    padding: 0;
    transition: border-color .15s;
}
.pd-color-swatch.active { border-color: var(--red); box-shadow: 0 0 0 2px var(--red); }

/* Quantity */
.pd-qty { display: flex; align-items: center; }
.pd-qty-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--text);
    font-size: 1rem;
    cursor: pointer;
    transition: all .15s;
}
.pd-qty-btn:hover { border-color: var(--red); color: var(--red); }
.pd-qty-input {
    width: 44px;
    height: 34px;
    text-align: center;
    border: 1px solid var(--border-dark);
    border-left: none;
    border-right: none;
    background: transparent;
    color: var(--text);
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 600;
    -moz-appearance: textfield;
}
.pd-qty-input::-webkit-outer-spin-button,
.pd-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Add to Cart */
.pd-add-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--red);
    border: none;
    color: #fff;
    font-family: var(--font-head);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background .2s;
    margin-top: 16px;
}
.pd-add-cart:hover { background: var(--red-hover); }
.pd-add-cart i { font-size: 1rem; }

/* Wishlist */
.pd-wishlist {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    font-size: .78rem;
    color: var(--text-dim);
    margin-top: 6px;
}
.pd-wishlist:hover { color: var(--red); }
.pd-wishlist i { font-size: .85rem; }

/* Info items */
.pd-info-items {
    margin-top: 16px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pd-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .74rem;
    color: var(--text-dim);
}
.pd-info-item i { color: var(--red); font-size: .82rem; width: 16px; text-align: center; }

/* ========== PRODUCT TABS ========== */
.pd-tabs-section { padding: 0 0 20px; }
.pd-tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 16px;
}
.pd-tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    padding: 10px 18px;
    font-family: var(--font-head);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-dim);
    cursor: pointer;
    transition: all .15s;
}
.pd-tab-btn:hover { color: var(--text); }
.pd-tab-btn.active {
    color: var(--red);
    border-bottom-color: var(--red);
}

.pd-tab-pane { display: none; }
.pd-tab-pane.active { display: block; }
.pd-tab-pane h3 {
    font-family: var(--font-head);
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 10px;
}
.pd-tab-pane p {
    font-size: .82rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 12px;
}
.pd-tab-pane ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}
.pd-tab-pane ul li {
    font-size: .82rem;
    color: var(--text-dim);
    padding: 4px 0;
    border-bottom: 1px solid var(--border);
}
.pd-tab-pane ul li strong { color: var(--text); }

/* Size table */
.pd-size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .8rem;
    margin-top: 10px;
}
.pd-size-table th,
.pd-size-table td {
    padding: 8px 14px;
    text-align: left;
    border: 1px solid var(--border);
}
.pd-size-table th {
    background: var(--bg-white);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
}
.pd-size-table td { color: var(--text-dim); }
.pd-size-table tr:hover td { background: rgba(192, 57, 43, .05); }

/* Size tabs */
.size-tabs { display: flex; gap: 0; margin-bottom: 14px; }
.size-tab { padding: 6px 16px; background: none; border: none; border-bottom: 2px solid transparent; font-size: .78rem; font-family: var(--font-head); color: var(--text-dim); cursor: pointer; transition: .2s; letter-spacing: .5px; }
.size-tab.active { color: var(--red); border-bottom-color: var(--red); font-weight: 600; }
.size-tab:hover { color: var(--text); }

/* Product features */
.product-features { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
.product-features > h3 {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  color: var(--text); margin-bottom: 24px;
}
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon i { font-size: 1.5rem; color: var(--text); opacity: .65; }
.feature-text {}
.feature-text h4 {
  font-family: var(--font-head); font-size: .82rem; font-weight: 700;
  color: var(--text); margin: 0 0 5px;
}
.feature-text p {
  font-size: .76rem; color: var(--text-dim); line-height: 1.6; margin: 0;
}

/* Care instructions */
.care-instructions {
  margin-top: 28px; padding: 20px 24px;
  background: var(--bg-page); border: 1px solid var(--border);
}
.care-instructions h4 {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.care-instructions h4 i { color: var(--text-dim); font-size: 1.1rem; }
.care-instructions p {
  font-size: .78rem; color: var(--text-dim); line-height: 1.6; margin: 0;
}

@media (max-width: 640px) {
  .feature-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Brands page */
.brands-alpha-nav { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.brands-alpha-link { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; font-size: .75rem; font-family: var(--font-head); font-weight: 600; color: var(--text-dim); background: var(--bg-page); border: 1px solid var(--border); text-decoration: none; transition: .15s; }
.brands-alpha-link:hover { border-color: var(--red); color: var(--red); }
.brands-section { margin-bottom: 28px; }
.brands-letter { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--red); margin-bottom: 12px; padding-bottom: 6px; border-bottom: 1px solid var(--border); letter-spacing: 1px; }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.brand-card { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--bg-page); border: 1px solid var(--border); text-decoration: none; transition: .15s; }
.brand-card:hover { border-color: var(--red); }
.brand-card-img { width: 40px; height: 40px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.brand-card-placeholder { width: 40px; height: 40px; background: var(--bg-white); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 1rem; flex-shrink: 0; }
.brand-card-info { min-width: 0; }
.brand-card-info strong { display: block; font-size: .78rem; color: var(--text); font-family: var(--font-head); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-card-info span { font-size: .68rem; color: var(--text-dim); }

/* Reviews */
.pd-review {
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}
.pd-review:last-child { border-bottom: none; }
.pd-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.pd-review-stars { display: flex; gap: 2px; }
.pd-review-stars i { color: #f1c40f; font-size: .72rem; }
.pd-review-stars i.bi-star { color: var(--text-light); }
.pd-review-name { font-size: .82rem; color: var(--text); }
.pd-review-date { font-size: .7rem; color: var(--text-light); margin-left: auto; }
.pd-review p {
    font-size: .8rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin: 0;
}

/* ========== RESPONSIVE ========== */

/* Tablet landscape */
@media (max-width: 991.98px) {
    .page-wrapper { box-shadow: none; }

    /* Header / Nav */
    .header-top { display: none; }
    .header-search { width: 190px; }
    .nav-toggle { display: block; }
    .site-nav .site-container { position: relative; }
    .nav-list {
        display: none; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--nav-bg); border-bottom: 2px solid var(--red);
        z-index: 999; box-shadow: 0 6px 16px rgba(0,0,0,.3);
    }
    .nav-list.open { display: flex; }
    .nav-list a { padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,.06); font-size: .85rem; }
    .nav-home { display: none !important; }

    /* Home hero */
    .hero-grid { grid-template-columns: 1fr; gap: 6px; min-height: auto; }
    .hero-side { flex-direction: row; gap: 6px; }
    .side-box { min-height: 80px; }
    .slide-visual { height: 340px; }
    .slide-caption { width: 60%; padding: 24px 28px; }
    .slide-caption h2 { font-size: 1.5rem; }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }

    /* Product grids */
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .product-grid-4col { grid-template-columns: repeat(3, 1fr); }
    .product-img { height: 190px; }

    /* Product detail */
    .pd-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
    .pd-main-img img { height: 420px; }
    .pd-thumb img { height: 70px; }

    /* Footer */
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-features { grid-template-columns: repeat(2, 1fr); }
    .footer-feature:nth-child(2) { border-right: none; }
}

/* Tablet portrait */
@media (max-width: 767.98px) {
    .logo-text { font-size: 2rem; }
    .header-search { width: 150px; }

    /* Home hero */
    .hero-side { flex-direction: column; }
    .slide-visual { height: 280px; }
    .slide-caption { padding: 18px 20px; width: 70%; }
    .slide-caption h2 { font-size: 1.25rem; }
    .slide-caption p { font-size: .72rem; }
    .slide-btn { padding: 6px 14px; font-size: .65rem; }
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .cat-card { height: 72px; }
    .cat-content span { font-size: .62rem; }
    .band-strip { height: 65px; }
    .strip-name { font-size: .88rem; }
    .strip-sub { display: none; }
    .section-title { font-size: .9rem; }

    /* Product grids */
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid-4col { grid-template-columns: repeat(2, 1fr); }
    .product-img { height: 170px; }
    .product-info h3 { font-size: .7rem; }

    /* Product detail */
    .pd-grid { grid-template-columns: 1fr; gap: 14px; }
    .pd-main-img img { height: auto; max-height: 480px; }
    .pd-thumb img { height: 60px; }
    .pd-title { font-size: 1.2rem; }
    .pd-price { font-size: 1.3rem; }
    .pd-desc { font-size: .78rem; }
    .pd-option-label { font-size: .68rem; }
    .pd-tab-btn { padding: 8px 12px; font-size: .76rem; }
    .pd-tabs-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .pd-review-header { flex-wrap: wrap; gap: 4px; }
    .pd-review-date { margin-left: 0; }

    /* Category page */
    .filter-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
    .filter-dropdowns { width: 100%; }
    .filter-panel-wide { min-width: auto; width: calc(100vw - 60px); max-width: 480px; }
    .filter-brand-list { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .category-title { font-size: 1.1rem; }
    .pagination-list { gap: 2px; }
    .page-btn { min-width: 30px; height: 30px; font-size: .72rem; padding: 0 7px; }
    .page-prev, .page-next { font-size: .68rem; }

    /* Newsletter */
    .fn-inner { flex-direction: column; text-align: center; gap: 10px; }
    .fn-text strong { font-size: .82rem; }
    .fn-form input { width: 180px; font-size: .78rem; padding: 7px 10px; }
    .fn-form button { padding: 7px 14px; font-size: .68rem; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .footer-features { grid-template-columns: 1fr 1fr; }
    .footer-feature { padding: 12px 10px; gap: 8px; }
    .footer-feature:nth-child(2) { border-right: none; }
    .footer-feature i { font-size: 1.1rem; }
    .footer-feature strong { font-size: .68rem; }
    .footer-feature span { font-size: .6rem; }
    .footer-main { padding: 22px 0 16px; }
    .site-footer h3 { font-size: .7rem; margin-bottom: 8px; }
    .site-footer ul a { font-size: .72rem; }
    .footer-contact li { font-size: .72rem; }
    .footer-bottom .site-container { justify-content: center; text-align: center; flex-direction: column; }
}

/* Mobile */
@media (max-width: 575.98px) {
    .header-search { display: none; }

    /* Home */
    .slide-visual { height: 220px; }
    .slide-caption { width: 80%; padding: 14px 16px; }
    .slide-caption h2 { font-size: 1.05rem; }
    .slide-btn { padding: 5px 12px; font-size: .6rem; letter-spacing: 1.5px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .product-img { height: 150px; }

    /* Product detail */
    .pd-main-img img { height: auto; max-height: 360px; }
    .pd-thumb img { height: 50px; }
    .pd-title { font-size: 1.05rem; }
    .pd-price { font-size: 1.1rem; }
    .pd-desc { font-size: .75rem; }
    .pd-sizes { flex-wrap: wrap; }
    .pd-size { min-width: 36px; height: 32px; font-size: .72rem; padding: 0 8px; }
    .pd-qty-btn { width: 30px; height: 30px; }
    .pd-qty-input { width: 38px; height: 30px; font-size: .8rem; }
    .pd-add-cart { padding: 10px; font-size: .8rem; letter-spacing: 1.5px; }
    .pd-tab-btn { padding: 7px 10px; font-size: .7rem; letter-spacing: .5px; }
    .pd-tab-pane p { font-size: .76rem; }
    .pd-tab-pane ul li { font-size: .76rem; }
    .pd-size-table { font-size: .7rem; }
    .pd-size-table th, .pd-size-table td { padding: 6px 8px; }
    .pd-review p { font-size: .75rem; }
    .pd-review-name { font-size: .76rem; }

    /* Category page */
    .category-header-inner { flex-direction: column; gap: 2px; }
    .category-count { font-size: .7rem; }
    .filter-drop-btn { padding: 5px 10px; font-size: .7rem; }
    .filter-panel-wide { width: calc(100vw - 40px); }
    .filter-brand-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .filter-col-title { font-size: .62rem; }
    .filter-brand-list { grid-template-columns: 1fr 1fr; }
    .sort-select { font-size: .7rem; padding: 5px 8px; }
    .breadcrumb-list { font-size: .68rem; }

    /* Newsletter */
    .fn-form { flex-direction: column; width: 100%; }
    .fn-form input { width: 100%; }
    .fn-form button { width: 100%; padding: 9px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 14px; }
    .footer-brand { grid-column: auto; }
    .footer-features { grid-template-columns: 1fr 1fr; }
    .footer-feature { border-right: none; padding: 10px 8px; }
    .payment-methods { gap: 3px; }
    .payment-methods span { padding: 3px 5px; font-size: .55rem; }
}

@media print {
    .site-nav, .hero, .band-strips, .cookie-bar, .back-top, .categories-section, .footer-top-bar, .footer-newsletter { display: none !important; }
    body { background: #fff; }
}
