:root {
    --primary:       #663399;
    --primary-light: #471c72;
    --accent:        #3498db;
    --light-bg:      #f9f9f9;
    --border:        #e0e0e0;
    --white:         #ffffff;
    --success:       #27ae60;
    --grey-text:     #666666;
    --heading:       #2c3e50;
}


/* ══════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════ */
.bg-light        { background-color: var(--light-bg); }
.bg-light-purple { background-color: #efeaf5; }


/* ══════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ══════════════════════════════════════════ */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
    padding: 50px 0 40px;
    border-bottom: 1px solid var(--border);
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--heading);
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}

/* Gallery */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.scroller-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid var(--border);
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
}

.scroller-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroller-item {
    min-width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroller-item img {
    width: 100%;
    height: auto;
}

.thumb-nav-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 5px;
}

.thumb-list {
    display: flex;
    gap: 10px;
    overflow-x: hidden;
    flex: 1;
    justify-content: center;
}

.thumb-btn {
    width: 70px;
    height: auto;
    border-radius: 4px;
    border: 2px solid transparent;
    background: var(--light-bg);
    cursor: pointer;
    padding: 5px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-btn svg {
    width: 30px;
    height: 30px;
    opacity: 0.5;
}

.thumb-btn.active {
    border-color: var(--accent);
    background: var(--white);
}

.scroller-arrow {
    background: var(--white);
    border: 1px solid var(--border);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.scroller-arrow:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* Product info */
a.brand-subtitle {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 15px;
    text-decoration: none;
}

p.benefit-hook {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--primary);
}

.price-line {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--primary);
}

.price-offer {
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--success);
}

.cta-box { margin-top: 30px; }

.btn-buy {
    display: inline-block;
    background: #FF6B00;
    color: var(--white);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s ease, transform 0.2s ease;
    border: 1px solid #E66000;
    cursor: pointer;
    margin: 10px 0 20px;
}

.btn-buy:hover {
    background: #FF8533;
    color: var(--white);
    text-decoration: none;
}

.disclosure {
    font-size: 0.75rem;
    color: var(--grey-text);
    margin-top: 15px;
    font-style: italic;
}

.trust-row {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 20px;
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--border);
    font-size: 0.75rem;
}

.trust-badge:hover {
    background: var(--grey-text);
    color: var(--white);
    text-decoration: none;
}

/* Info grid & cards */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.card h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 10px;
}

/* Video embed */
.video-placeholder {
    background: #222;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.video-placeholder iframe,
.video-placeholder video,
.video-placeholder embed,
.video-placeholder object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0;
}

/* FAQ */
details {
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
    cursor: pointer;
}

summary {
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after               { content: "+"; font-size: 1.2rem; }
details[open] summary::after { content: "−"; }

.faq-content {
    padding-top: 15px;
    color: var(--grey-text);
    font-size: 0.95rem;
}

/* In-content CTA */
.cr-product-cta {
    background: linear-gradient(to bottom, #f2f2f2 0%, var(--white) 100%);
    border-top: 1px solid #e3e3e3;
    border-radius: 12px;
    padding: 32px 24px;
    margin: 40px 0 20px;
    text-align: center;
}

.cr-product-cta h2 {
    font-size: 28px;
    line-height: 1.3;
    margin: 0 0 12px;
    color: #222;
    font-weight: 700;
}

.cr-product-cta p {
    font-size: 17px;
    line-height: 1.6;
    color: #555;
    max-width: 700px;
    margin: 0 auto 22px;
}

@media (max-width: 768px) {
    .product-gallery { order: 1; }
    .hero-content    { order: 2; }
    .info-grid       { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════
   LISTING PAGE
   ══════════════════════════════════════════ */
.listing-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.listing-hero h1 {
    font-size: 2.5rem;
    color: var(--heading);
    margin-bottom: 15px;
    letter-spacing: -1.5px;
}

.listing-hero p {
    font-size: 1.2rem;
    color: var(--grey-text); /* was: var(#666666) — invalid */
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Search bar */
.listing-hero .search-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.listing-hero .search-input {
    width: 80%;
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid var(--border);
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    outline: none;
    transition: border-color 0.2s;
}

.listing-hero .search-input:focus { border-color: var(--accent); }

/* Brand grid */
.listing-section { padding: 60px 0; }

.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.listing-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.listing-image {
    height: 180px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.listing-content {
    padding: 25px;
    text-align: center;
}

.listing-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--heading);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.listing-desc {
    font-size: 0.85rem;
    color: var(--grey-text); /* was: var(#666666) — invalid */
}

.listing-no-results {
    text-align: center;
    padding: 50px;
    display: none;
    color: var(--grey-text); /* was: var(#666666) — invalid */
}

.brand-logo-large {
    width: 400px;
    height: 266px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

@media (max-width: 992px) {
    .brand-logo-large {
        width: 100%;
        max-width: 500px;
    }
}

/* Product section */
.product-section { padding: 0; }

.product-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 15px;
}

.product-section .section-header h2 {
    font-size: 1.8rem;
    color: var(--heading);
}

.product-section .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-section .product-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.product-section .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.product-section .product-image {
    aspect-ratio: 1 / 1;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-section .badge-special {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #994CE5;
    color: var(--white);
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
}

.product-section .product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-section .product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--heading);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-section .product-excerpt {
    font-size: 0.9rem;
    color: var(--grey-text);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-section .product-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-section .product-offer {
    font-size: 0.9rem;
    color: #165700;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-section .view-btn {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}


/* ══════════════════════════════════════════
   SHARED COMPONENTS
   (buttons, section headers, CTA band, reveal)
   ══════════════════════════════════════════ */

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 30px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--primary-light);
    color: var(--white);
    text-decoration: none;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--heading);
    padding: 14px 30px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    text-decoration: none;
}

/* Section headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 15px;
}

.section-kicker {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--heading);
    letter-spacing: -0.5px;
}

.section-title em { font-style: normal; color: var(--primary); }

.section-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.section-link:hover { color: var(--primary); text-decoration: none; }
.section-link svg { width: 12px; height: 12px; transition: transform 0.2s; }
.section-link:hover svg { transform: translateX(3px); }

/* CTA band */
.cta-band {
    background: linear-gradient(to bottom, #f2f2f2 0%, var(--white) 100%);
    border-top: 1px solid #e3e3e3;
    padding: 50px 0;
}

.cta-band-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.3;
    margin-bottom: 8px;
}

.cta-sub {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
    max-width: 500px;
}

.cta-buttons { display: flex; gap: 12px; }

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ══════════════════════════════════════════
   PRODUCTS PAGE
   ══════════════════════════════════════════ */
.products-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
    padding: 36px 0 30px;
    border-bottom: 1px solid var(--border);
}

.products-hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.products-hero-kicker {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.products-hero-title {
    font-size: 2.2rem;
    color: var(--heading);
    letter-spacing: -1.2px;
    font-weight: 800;
    line-height: 1.1;
}

.products-hero-title em { font-style: normal; color: var(--primary); }

.products-hero-desc {
    font-size: 0.95rem;
    color: var(--grey-text);
    line-height: 1.6;
    margin-top: 8px;
    max-width: 520px;
}

.hero-search {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    min-width: 340px;
    flex-shrink: 0;
}

.hero-search input {
    padding: 12px 22px;
    border: none;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #212529;
    background: transparent;
    width: 100%;
    flex: 1;
}

.hero-search button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 26px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.hero-search button:hover { background: var(--primary-light); }

/* Active filters */
.active-filters-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    min-height: 0;
    transition: all 0.2s;
}

.active-filters-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.active-filters-inner:empty { display: none; }

.active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: #f3eefb;
    border: 1px solid #e2d6f3;
    padding: 4px 12px;
    border-radius: 20px;
}

.active-filter-tag .remove {
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    opacity: 0.6;
    transition: opacity 0.15s;
}

.active-filter-tag .remove:hover { opacity: 1; }

.clear-all-btn {
    font-size: 12px;
    font-weight: 600;
    color: var(--grey-text);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    margin-left: 4px;
}

.clear-all-btn:hover { color: var(--heading); }

/* Layout */
.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    padding: 30px 0 60px;
    align-items: start;
}

/* Sidebar */
.sidebar { position: sticky; top: 20px; }

.sidebar-section { margin-bottom: 28px; }

.sidebar-section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--heading);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--light-bg);
}

.sidebar-list { list-style: none; margin: 0; padding: 0; }
.sidebar-list li { margin-bottom: 2px; }

.sidebar-list li button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--grey-text);
    background: none;
    border: none;
    padding: 7px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
}

.sidebar-list li button:hover        { background: var(--light-bg); color: var(--heading); }
.sidebar-list li button.active       { background: #f3eefb; color: var(--primary); font-weight: 700; }

.sidebar-list li button .count {
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    background: var(--light-bg);
    padding: 1px 8px;
    border-radius: 10px;
}

.sidebar-list li button.active .count { background: #e2d6f3; color: var(--primary); }

/* Toolbar */
.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.results-count          { font-size: 14px; color: var(--grey-text); }
.results-count strong   { color: var(--heading); }
.toolbar-right          { display: flex; align-items: center; gap: 12px; }

.sort-select {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--heading);
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--white);
    cursor: pointer;
    outline: none;
}

.sort-select:focus { border-color: var(--primary); }

.view-toggle { display: flex; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }

.view-btn {
    padding: 7px 12px;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

.view-btn:not(:last-child)  { border-right: 1px solid var(--border); }
.view-btn:hover             { background: var(--light-bg); }
.view-btn.active            { background: var(--primary); }
.view-btn.active svg        { stroke: var(--white); }
.view-btn svg               { width: 16px; height: 16px; stroke: var(--grey-text); fill: none; stroke-width: 2; }

/* Product grid & cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
}

.product-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.product-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transform: translateY(-3px);
}

.product-card-thumb {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #eee;
    position: relative;
}

.product-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.4s;
    display: block;
}

.product-card:hover .product-card-thumb img {
    opacity: 1;
    transform: scale(1.03);
}

.product-card-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.product-card-body:hover { text-decoration: none; }

.product-card-brand {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4px;
}

.product-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.3;
    margin-bottom: 6px;
}

.product-card-desc {
    font-size: 0.82rem;
    color: var(--grey-text);
    line-height: 1.5;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.product-card-price { font-size: 1rem; font-weight: 800; color: var(--heading); }

.product-card-price .was {
    font-size: 0.8rem;
    font-weight: 400;
    color: #aaa;
    text-decoration: line-through;
    margin-right: 6px;
}

.product-card-offer {
    font-size: 0.72rem;
    font-weight: 600;
    color: #e67e22;
    background: #fef5ec;
    border: 1px solid #fde8c8;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}

.product-card-cta {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--light-bg);
    border: 1px solid var(--border);
    padding: 5px 14px;
    border-radius: 20px;
    transition: all 0.2s;
    text-decoration: none;
    cursor: pointer;
}

.product-card-cta:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    text-decoration: none;
}

/* List view */
.product-grid.list-view                             { grid-template-columns: 1fr; gap: 16px; }
.product-grid.list-view .product-card               { flex-direction: row; align-items: stretch; }
.product-grid.list-view .product-card-thumb         { width: 180px; min-width: 180px; height: auto; min-height: 160px; }
.product-grid.list-view .product-card-body          { padding: 18px 24px; }
.product-grid.list-view .product-card-desc          { -webkit-line-clamp: 3; }
.product-grid.list-view .product-card-meta          { -webkit-line-clamp: 5; }
.product-grid.list-view .product-card-footer        { border-top: 1px solid var(--border); padding: 10px 20px; }

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 40px;
}

.page-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--grey-text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s;
}

.page-btn:hover    { border-color: var(--primary); color: var(--primary); }
.page-btn.active   { background: var(--primary); color: var(--white); border-color: var(--primary); }
.page-btn.disabled { opacity: 0.4; pointer-events: none; }
.page-ellipsis     { font-size: 13px; color: var(--grey-text); padding: 0 4px; }

/* No results */
.no-results          { text-align: center; padding: 60px 20px; }
.no-results-icon     { font-size: 3rem; margin-bottom: 16px; opacity: 0.25; }
.no-results h3       { font-size: 1.2rem; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.no-results p        { font-size: 0.9rem; color: var(--grey-text); max-width: 400px; margin: 0 auto; }

/* Mobile filter toggle */
.mobile-filter-toggle {
    display: none;
    padding: 10px 20px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: var(--light-bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.mobile-filter-toggle:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

@media (max-width: 900px) {
    .products-layout { grid-template-columns: 1fr; }

    .sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--white);
        z-index: 200;
        padding: 20px;
        overflow-y: auto;
    }

    .sidebar.mobile-open { display: block; }

    .sidebar-close {
        display: block;
        position: absolute;
        top: 16px;
        right: 16px;
        font-size: 24px;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--heading);
    }

    .mobile-filter-toggle          { display: inline-flex; align-items: center; gap: 6px; }
    .hero-search                   { min-width: 0; width: 100%; }
    .products-hero-inner           { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
    .cta-band-inner                                     { grid-template-columns: 1fr; text-align: center; }
    .cta-sub                                            { margin: 0 auto 20px; }
    .cta-buttons                                        { justify-content: center; flex-direction: column; }
    .product-grid.list-view .product-card               { flex-direction: column; }
    .product-grid.list-view .product-card-thumb         { width: 100%; min-width: unset; height: 180px; }
    .product-grid.list-view .product-card-footer        { border-left: none; border-top: 1px solid var(--border); flex-direction: row; min-width: unset; }
}

@media (max-width: 576px) {
    .products-hero-title    { font-size: 1.8rem; }
    .product-grid           { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
    .product-card-thumb     { height: 150px; }
    .product-card-body      { padding: 12px 14px; }
    .product-card-footer    { padding: 10px 14px; }
}


/* ══════════════════════════════════════════
   SHOP PAGE
   ══════════════════════════════════════════ */

/* Hero */
.shop-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
    padding: 50px 0 40px;
    border-bottom: 1px solid var(--border);
}

.shop-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.shop-hero-kicker {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.shop-hero-title {
    font-size: 2.5rem;
    color: var(--heading);
    margin-bottom: 15px;
    letter-spacing: -1.5px;
    font-weight: 800;
    line-height: 1.1;
}

.shop-hero-title em { font-style: normal; color: var(--primary); }
.shop-hero-desc     { font-size: 1.1rem; color: var(--grey-text); line-height: 1.7; max-width: 500px; }
.shop-hero-actions  { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

/* Hero promo card */
.hero-promo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 380px;
    width: 100%;
    text-decoration: none;
}

.hero-promo-card:hover { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); text-decoration: none; }

.hero-promo-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-promo-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.hero-promo-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary-light);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.hero-promo-name  { font-size: 1.3rem; font-weight: 700; color: var(--heading); margin: 8px 0; }
.hero-promo-desc  { font-size: 0.85rem; color: var(--grey-text); line-height: 1.6; margin-bottom: 14px; }
.hero-promo-cta   { font-size: 0.85rem; font-weight: 600; color: var(--accent); }
.hero-promo-card:hover .hero-promo-cta { color: var(--primary); }

/* Shop sections */
.shop-section                   { padding: 60px 0; }
.shop-section:nth-child(even)   { background: var(--light-bg); }

/* Product scroll */
.product-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
}

.product-scroll::-webkit-scrollbar        { height: 6px; }
.product-scroll::-webkit-scrollbar-thumb  { background: var(--border); border-radius: 3px; }

/* Scroll-context card sizing */
.product-scroll .product-card {
    min-width: 260px;
    max-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* Product card badge */
.product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary-light);
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

/* Brand cards */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.brand-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    padding: 28px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.brand-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transform: translateY(-3px);
}

.brand-logo-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--border);
}

.brand-logo-wrap img        { width: 60%; height: 60%; object-fit: contain; }
.brand-logo-placeholder     { font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.brand-card-name            { font-size: 0.95rem; font-weight: 700; color: var(--heading); }
.brand-card-count           { font-size: 0.75rem; color: var(--grey-text); }

/* Category cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.category-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
    position: relative;
}

.category-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transform: translateY(-3px);
}

.category-card-thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.4s;
}

.category-card:hover .category-card-thumb img { opacity: 1; transform: scale(1.03); }

.category-card-body {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-card-name { font-size: 1.05rem; font-weight: 700; color: var(--heading); }

.category-card-arrow {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: color 0.2s;
}

.category-card:hover .category-card-arrow          { color: var(--primary); }
.category-card:hover .category-card-arrow svg      { transform: translateX(3px); }
.category-card-arrow svg                           { width: 12px; height: 12px; transition: transform 0.2s; }

/* Filter bar */
.filter