:root {
    --font-body: 'Jost', sans-serif;
    --color-bg: #e0dbd3;
    --color-card: #ffffff;
    --color-surface: #d5d0c8;
    --color-text: #1a1a1a;
    --color-muted: #666666;
    --color-border: #ccc9c2;
    --sp-xs: 4px;
    --sp-sm: 8px;
    --sp-md: 16px;
    --sp-lg: 24px;
    --sp-xl: 32px;
    --sp-2xl: 48px;
    --sp-3xl: 64px;
}

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

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-weight: 500;
    margin: 0 0 var(--sp-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

a:hover {
    color: #888;
}

p {
    margin: 0 0 var(--sp-md);
}

.text-muted {
    color: var(--color-muted);
}

.text-left {
    text-align: left;
}

.icon-btn {
    background: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    color: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.desktop-socials {
    display: flex;
    gap: var(--sp-md);
}

.social-menu {
    position: relative;
    display: none;
}

.social-menu-toggle {
    gap: 0;
}

.social-menu-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 190px;
    padding: 6px 0;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
    z-index: 260;
}

.social-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    color: var(--color-text);
    font-size: 0.84rem;
}

.social-menu-item + .social-menu-item {
    border-top: 1px solid var(--color-border);
}

.social-menu-item .social-icon {
    width: 16px;
    height: 16px;
    opacity: 1;
}

.breadcrumb {
    padding: var(--sp-lg) 0 var(--sp-sm);
    font-size: 0.8rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: var(--color-muted);
}

.breadcrumb a:hover {
    color: var(--color-text);
}

/* ── ANNOUNCEMENT BAR ────────────────────────────── */
.announcement {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 0.78rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

/* ── HEADER ─────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

/* Row 1 - social / logo / icons */
.header-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: var(--sp-md) var(--sp-xl);
}

.social-icons {
    display: flex;
    gap: var(--sp-md);
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}

.header-actions {
    display: flex;
    gap: var(--sp-md);
    align-items: center;
    justify-content: flex-end;
}

.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

/* Cart badge */
.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-text);
}

.cart-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #111;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-badge.visible {
    display: flex;
}

.social-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.social-icon:hover {
    opacity: 1;
}

.social-link {
    transition: opacity 0.2s;
}

.social-link .social-icon {
    transition: fill 0.25s ease, opacity 0.25s ease;
    fill: currentColor;
    opacity: 0.7;
}

.social-link:hover .social-icon,
.social-link:active .social-icon {
    opacity: 1;
}

.social-link.ig-link:hover .social-icon,
.social-link.ig-link:active .social-icon {
    fill: #E1306C;
}

.social-link.fb-link:hover .social-icon,
.social-link.fb-link:active .social-icon {
    fill: #1877F2;
}

.social-link.pt-link:hover .social-icon,
.social-link.pt-link:active .social-icon {
    fill: #E60023;
}

.social-link.wa-link:hover .social-icon,
.social-link.wa-link:active .social-icon {
    fill: #25D366;
}

/* Row 2 — category strip */
.category-strip {
    display: flex;
    justify-content: center;
    gap: var(--sp-xl);
    padding: 10px var(--sp-xl);
    border-top: 1px solid var(--color-border);
    font-size: 0.82rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.cat-link {
    cursor: pointer;
    color: var(--color-muted);
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.cat-link:hover,
.cat-link.active {
    color: var(--color-text);
    border-bottom-color: var(--color-text);
}

/* ── CONTAINER ──────────────────────────────────── */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--sp-xl);
}

/* ── HERO ───────────────────────────────────────── */
.hero {
    display: flex;
    align-items: stretch;
    min-height: 780px;
    overflow: visible;
    background: transparent;
    margin-bottom: var(--sp-2xl);
}

.hero-content {
    flex: 0 0 50%;
    padding: var(--sp-3xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: transparent;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: var(--sp-md);
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--color-muted);
    margin-bottom: var(--sp-lg);
}

.hero-image-panel {
    flex: 0 0 50%;
    position: relative;
    overflow: visible;
    min-height: 780px;
    border-radius: 5px;
}

.hero-image-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero-image-panel img.active {
    opacity: 1;
}

/* ── TRUST BAR ──────────────────────────────────── */
.trust-bar {
    display: flex;
    justify-content: space-around;
    padding: var(--sp-lg) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--sp-2xl);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ── CATEGORY PAGE ──────────────────────────────── */
.category-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--sp-3xl);
    margin-top: 0;
}

/* ── FILTER SIDEBAR ─────────────────────────────── */
.filter-sidebar h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--sp-sm);
    font-weight: 600;
}

.filter-group {
    margin-bottom: var(--sp-xl);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--sp-md);
}

/* Search input */
.sidebar-search {
    display: flex;
    border: 1px solid var(--color-border);
    align-items: center;
    padding-right: 10px;
    margin-bottom: var(--sp-lg);
    background: var(--color-bg);
    transition: background 0.2s;
}

.sidebar-search:focus-within {
    background: var(--color-card);
}

.sidebar-search input {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
    font-family: inherit;
    background: transparent;
    font-size: 0.9rem;
}

.filter-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--sp-sm);
    font-size: 0.9rem;
    color: var(--color-muted);
    cursor: pointer;
}

.filter-item input[type="checkbox"] {
    appearance: none;
    width: 15px;
    height: 15px;
    border: 1px solid #bbb;
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.filter-item input[type="checkbox"]:checked {
    background: #111;
    border-color: #111;
}

.filter-item input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 4px;
    width: 4px;
    height: 7px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* ── PRODUCT GRID ───────────────────────────────── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-xl) var(--sp-lg);
}

/* ── PRODUCT CARD ───────────────────────────────── */
.product-card {
    display: flex;
    flex-direction: column;
    padding: var(--sp-sm);
    margin: calc(var(--sp-sm) * -1);
    border-radius: 6px;
    transition: background 0.25s, box-shadow 0.25s;
    background: transparent;
}

.product-card:hover {
    background: var(--color-card);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.11);
    z-index: 10;
}

/* hidden card (filtered out) */
.product-card.hidden {
    display: none;
}

.product-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--color-surface);
    margin-bottom: var(--sp-md);
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.product-image img:first-of-type {
    opacity: 1;
}

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

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #111;
    font-size: 0.68rem;
    padding: 3px 7px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    z-index: 2;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-vendor {
    font-size: 0.72rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.product-swatches {
    display: flex;
    gap: 5px;
    margin-bottom: 8px;
}

.swatch {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
    outline: none;
}

.swatch:hover,
.swatch.active {
    transform: scale(1.3);
    border-color: #111;
}

.product-title {
    font-size: 0.97rem;
    margin: 0 0 var(--sp-xs);
    font-weight: 400;
}

.product-price {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: var(--sp-md);
}

.price-original {
    color: #999;
    font-weight: 400;
    font-size: 0.88em;
    margin-right: 6px;
    text-decoration: line-through;
}

/* ── ADD TO BAG BUTTON ──────────────────────────── */
.btn {
    display: inline-block;
    padding: 13px 22px;
    background: #111;
    color: #fff;
    text-align: center;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 1px solid #111;
    border-radius: 5px;
    transition: all 0.2s ease;
    font-weight: 500;
    font-family: inherit;
}

.btn:hover {
    background: #fff;
    color: #111;
}

.btn-outline {
    background: transparent;
    color: #111;
}

.btn-outline:hover {
    background: #111;
    color: #fff;
}

.btn-full {
    width: 100%;
}

.product-cta {
    margin-top: auto;
    width: 100%;
}

.btn-block {
    width: 100%;
}

.btn-wide {
    min-width: 200px;
}

.link-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: inherit;
    font: inherit;
}

.link-button-danger {
    color: #c0392b;
}

.link-underline {
    text-decoration: underline;
}

.card-link {
    cursor: pointer;
}

.footer-brand {
    margin-bottom: var(--sp-md);
    font-size: 1.15rem;
    text-align: left;
}

.footer-copy,
.newsletter-copy {
    color: var(--color-muted);
    font-size: 0.88rem;
}

.shop-section-head {
    margin-bottom: var(--sp-xl);
}

.shop-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--sp-sm);
}

.shop-breadcrumb {
    font-size: 0.82rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-count {
    font-size: 0.88rem;
    color: var(--color-muted);
}

.shop-title {
    font-size: 2.1rem;
    margin: 0;
}

.mobile-shop-toolbar {
    display: none;
}

.mobile-search {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    border: 1px solid var(--color-border);
    background: var(--color-card);
    padding: 0 12px;
}

.mobile-search input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    padding: 12px 0;
    font-family: inherit;
    font-size: 0.92rem;
    outline: none;
}

.mobile-filter-toggle {
    min-height: 46px;
}

.mobile-filter-shell[hidden] {
    display: none;
}

.mobile-filter-shell {
    position: fixed;
    inset: 0;
    z-index: 320;
}

.mobile-filter-backdrop {
    position: absolute;
    inset: 0;
    border: none;
    background: rgba(17, 17, 17, 0.45);
    cursor: pointer;
}

.mobile-filter-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(100%, 360px);
    height: 100%;
    padding: var(--sp-lg);
    background: var(--color-card);
    overflow-y: auto;
    border-radius: 5px 0 0 5px;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.16);
}

.mobile-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-md);
    margin-bottom: var(--sp-lg);
}

.mobile-filter-header h3 {
    margin: 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-filter-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 1.2rem;
    line-height: 1;
}

.mobile-filter-actions {
    display: flex;
    gap: var(--sp-sm);
    margin-top: var(--sp-lg);
}

.mobile-filter-actions .btn {
    flex: 1;
}

.no-results-panel {
    display: none;
    text-align: center;
    padding: var(--sp-2xl) 0;
}

.pagination-block {
    margin-top: var(--sp-3xl);
    text-align: center;
}

.pagination-copy {
    font-size: 0.88rem;
    color: var(--color-muted);
    margin-bottom: var(--sp-md);
}

.progress-track {
    width: 200px;
    height: 2px;
    background: var(--color-border);
    margin: 0 auto var(--sp-xl);
    position: relative;
}

.progress-fill {
    width: 100%;
    height: 100%;
    background: #111;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-shell {
    padding-top: var(--sp-lg);
    padding-bottom: 0;
}

/* ── NO RESULTS MESSAGE ─────────────────────────── */
#no-results {
    display: none;
    text-align: center;
    padding: var(--sp-3xl);
    color: var(--color-muted);
    grid-column: 1/-1;
    font-size: 0.95rem;
}

/* ── PAGINATION ─────────────────────────────────── */
.pagination {
    text-align: center;
    margin-top: var(--sp-3xl);
    padding-bottom: var(--sp-3xl);
    border-bottom: 1px solid var(--color-border);
}

.pagination p {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: var(--sp-lg);
}

/* ── REVIEWS SLIDER ──────────────────────────────────────── */
.reviews-section {
    background: var(--color-surface);
    padding: var(--sp-3xl) var(--sp-xl);
    margin-top: var(--sp-xl);
    text-align: center;
}

.reviews-section h2 {
    font-size: 2rem;
    margin-bottom: var(--sp-sm);
    text-align: center;
}

.reviews-section .subtitle {
    text-align: center;
    color: var(--color-muted);
    font-size: 1.05rem;
    margin-bottom: var(--sp-2xl);
}

.reviews-slider-outer {
    max-width: 1320px;
    margin: 0 auto;
}

.reviews-slider-viewport {
    overflow: hidden;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 28px;
    will-change: transform;
}

.review-card {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.56);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 5px;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    text-align: left;
    box-sizing: border-box;
    box-shadow: 0 18px 44px rgba(70, 58, 44, 0.14);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.review-card.is-center {
    transform: scale(1.04);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.68);
    box-shadow: 0 24px 52px rgba(70, 58, 44, 0.2);
    z-index: 2;
    position: relative;
}

.stars {
    color: #d4af37;
    margin-bottom: var(--sp-sm);
    letter-spacing: 2px;
    font-size: 1rem;
}

.review-text {
    font-size: 0.92rem;
    font-style: italic;
    margin-bottom: var(--sp-sm);
    color: var(--color-text);
    line-height: 1.65;
}

.reviewer {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-muted);
}

.reviews-controls {
    display: flex;
    justify-content: center;
    gap: var(--sp-md);
    margin-top: var(--sp-xl);
}

.slider-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 12px 28px rgba(70, 58, 44, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.slider-btn:hover {
    background: #111;
    color: #fff;
    border-color: #111;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .review-card.is-center {
        transform: none;
        box-shadow: none;
    }
}

/* ── FOOTER ─────────────────────────────────────── */
footer {
    background: var(--color-surface);
    padding: var(--sp-3xl) var(--sp-xl);
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-2xl);
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--sp-lg);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: var(--sp-sm);
}

.footer-col ul a {
    color: var(--color-muted);
    font-size: 0.92rem;
}

.footer-bottom {
    max-width: 1440px;
    margin: var(--sp-3xl) auto 0;
    padding-top: var(--sp-xl);
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-muted);
    font-size: 0.82rem;
}

.newsletter-form {
    display: flex;
    margin-top: var(--sp-md);
}

.newsletter-form input {
    flex: 1;
    padding: 11px;
    border: 1px solid var(--color-border);
    border-right: none;
    font-family: inherit;
    outline: none;
    background: var(--color-card);
}

.newsletter-form button {
    padding: 11px 18px;
    background: #111;
    color: #fff;
    border: 1px solid #111;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 1px;
}

body.filter-drawer-open {
    overflow: hidden;
}

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

    .filter-sidebar {
        display: none;
    }

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

    .hero {
        flex-direction: column;
        min-height: 0;
        margin-bottom: var(--sp-xl);
        overflow: hidden;
    }

    .hero-content,
    .hero-image-panel {
        flex: unset;
        width: 100%;
    }

    .hero-content {
        padding: var(--sp-2xl) var(--sp-xl);
    }

    .hero-content h1 {
        font-size: clamp(2.3rem, 6vw, 2.8rem);
    }

    .hero-image-panel {
        min-height: 560px;
        overflow: hidden;
    }

    .trust-bar {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--sp-md);
        padding: var(--sp-md) 0;
    }

    .trust-item {
        justify-content: center;
        text-align: center;
    }

    .mobile-shop-toolbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: var(--sp-sm);
        margin-bottom: var(--sp-lg);
    }

    .category-strip {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-left: var(--sp-md);
        padding-right: var(--sp-md);
        gap: var(--sp-lg);
    }

    .category-strip::-webkit-scrollbar {
        display: none;
    }

    .category-strip {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .cat-link {
        scroll-snap-align: start;
        flex-shrink: 0;
        white-space: nowrap;
    }

    .shop-heading-row {
        flex-wrap: wrap;
        gap: var(--sp-sm) var(--sp-md);
    }

    .reviews-section {
        padding: var(--sp-2xl) var(--sp-xl);
    }

    .reviews-section .subtitle {
        margin-bottom: var(--sp-xl);
    }

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

    .cfs,
    .cfs-track {
        overflow: hidden;
    }
}

@media (max-width: 768px) {
    .review-card.is-center {
        transform: none;
        box-shadow: none;
    }

    .announcement {
        padding: 9px var(--sp-md);
        font-size: 0.7rem;
        letter-spacing: 0.95px;
    }

    .social-menu {
        display: block;
    }

    .desktop-socials {
        display: none;
    }

    .header-main {
        grid-template-columns: auto 1fr auto;
        gap: var(--sp-sm);
        padding: var(--sp-md) var(--sp-lg);
    }

    .header-actions {
        gap: var(--sp-sm);
    }

    .logo {
        font-size: 1.15rem;
        letter-spacing: 1.4px;
    }

    .trust-bar {
        grid-template-columns: 1fr;
        padding: var(--sp-md);
    }

    .trust-item {
        justify-content: flex-start;
        text-align: left;
    }
}

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

    .container {
        padding: 0 var(--sp-md);
    }

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

    .header-main {
        padding: var(--sp-md);
    }

    .hero-content {
        padding: var(--sp-xl) 0 var(--sp-lg);
    }

    .hero-content h1 {
        font-size: 2.05rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: var(--sp-md);
    }

    .hero-image-panel {
        min-height: 420px;
    }

    .shop-title {
        font-size: 1.75rem;
    }

    .btn-wide {
        width: 100%;
        min-width: 0;
    }

    .pagination-block {
        margin-top: var(--sp-2xl);
    }

    .reviews-section {
        padding: var(--sp-xl) var(--sp-md);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-right: 1px solid var(--color-border);
        border-bottom: none;
    }
}

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

    .mobile-filter-toggle {
        width: 100%;
    }
}

/* CFS COMPONENT — Exactly matching index - Copy.html logic */
.cfs,
.cfs * {
    box-sizing: border-box;
}

.cfs {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: inherit;
    -webkit-tap-highlight-color: transparent;
    overflow: visible;
}

.cfs-track {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1200px;
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    overflow: visible;
}

.cfs-track.is-dragging {
    cursor: grabbing;
}

.cfs-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(240px, 28vw, 360px);
    aspect-ratio: 2 / 3;
    border-radius: 30px;
    overflow: hidden;
    transition: transform 520ms cubic-bezier(.22, .61, .36, 1), opacity 520ms cubic-bezier(.22, .61, .36, 1), filter 520ms cubic-bezier(.22, .61, .36, 1), visibility 520ms cubic-bezier(.22, .61, .36, 1);
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .24), 0 8px 24px rgba(0, 0, 0, .14);
    background: rgba(255, 255, 255, .04);
}

.cfs-slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: auto;
    min-width: 100%;
    max-width: none;
    transform: translate(-50%, -50%);
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    opacity: 1 !important;
}

.cfs-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: inherit;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.cfs:hover .cfs-nav,
.cfs:focus-within .cfs-nav {
    opacity: 1;
    pointer-events: auto;
}

.cfs-nav:hover,
.cfs-nav:focus-visible {
    background: rgba(255, 255, 255, .18);
    outline: none;
}

.cfs-nav:active {
    transform: translateY(-50%) scale(.96);
}

.cfs-nav svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    display: block;
}

.cfs-nav--prev {
    left: 10px;
}

.cfs-nav--next {
    right: 10px;
}

.cfs-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
}

.cfs-dot {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: currentColor;
    opacity: 0.3;
    cursor: pointer;
    transition: opacity 200ms ease, width 200ms ease;
}

.cfs-dot[aria-selected='true'] {
    opacity: 1;
    width: 22px;
}

@media (max-width: 900px) {
    .cfs-slide {
        width: clamp(200px, 34vw, 300px);
        border-radius: 24px;
    }
}

@media (max-width: 640px) {
    .cfs-slide {
        width: clamp(180px, 52vw, 250px);
        border-radius: 20px;
    }

    .cfs-nav {
        width: 44px;
        height: 44px;
    }

    .cfs-nav--prev {
        left: 2px;
    }

    .cfs-nav--next {
        right: 2px;
    }
}

#section-heading {
    scroll-margin-top: 90px;
}

/* Brand icon crossfade */
.brand-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.brand-img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.brand-img--color {
    opacity: 0;
}

/* Hover / active: show color, hide default */
.social-link:hover .brand-img--default,
.social-link:active .brand-img--default {
    opacity: 0;
}

.social-link:hover .brand-img--color,
.social-link:active .brand-img--color {
    opacity: 1;
}

/* Social menu panel icon sizing */
.social-menu-item .brand-icon-wrap {
    width: 22px;
    height: 22px;
}
