/* ==================== FONTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700&display=swap');

/* ==================== DESIGN TOKENS ==================== */
:root,
html[data-theme="light"] {
    --bg: #f7f5f0;
    --bg-elevated: #ffffff;
    --bg-soft: #efeade;
    --text: #1c1a16;
    --text-muted: #746c5c;
    --border: #e4ddcd;
    --border-strong: #d3c9b3;
    --accent: #b9975b;
    --accent-soft: #ece2cc;
    --btn-bg: #8a6a2f;
    --btn-bg-hover: #715526;
    --btn-text: #fdfbf7;
    --danger: #a33d2e;
    --shadow: 0 2px 14px rgba(28, 26, 22, 0.06);
    --shadow-lift: 0 10px 28px rgba(28, 26, 22, 0.10);
    --radius: 10px;
    --radius-sm: 6px;
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --topbar-height: 66px;
}

html[data-theme="dark"] {
    --bg: #14130f;
    --bg-elevated: #1c1a15;
    --bg-soft: #211f19;
    --text: #efe9dd;
    --text-muted: #9c9484;
    --border: #322e25;
    --border-strong: #423c2e;
    --accent: #d7b56f;
    --accent-soft: #322a1a;
    --btn-bg: #d7b56f;
    --btn-bg-hover: #e6c583;
    --btn-text: #14130f;
    --danger: #d97a63;
    --shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
    --shadow-lift: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    min-height: 100vh;
    transition: background 0.25s ease, color 0.25s ease;
}

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

button {
    font-family: inherit;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* ==================== TOPBAR ==================== */
.topbar {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
}

.topbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.6rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.icon-btn {
    position: relative;
    background: transparent;
    border: 1px solid var(--border);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text);
    font-size: 0.95rem;
    transition: border-color 0.2s, color 0.2s;
    flex-shrink: 0;
}

.icon-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.filter-count-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--btn-bg);
    color: var(--btn-text);
    font-size: 0.62rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

/* ==================== BRAND LOGO - FULL TULISAN DI SEMUA MODE ==================== */
.brand-mark {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.brand-mark-glyph {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    width: 34px;
    height: 34px;
    border: 1px solid var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.brand-mark-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.35rem;
    letter-spacing: 0.2px;
    color: var(--text);
    display: inline-block;
}

.brand-mark-text em {
    font-style: italic;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.85em;
}

/* ==================== SEARCH ==================== */
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-shrink: 0;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 280px;
    width: 100%;
    border-bottom: 1px solid var(--border-strong);
    transition: border-color 0.2s;
}

.search-box:focus-within {
    border-color: var(--accent);
}

.search-icon {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-right: 10px;
    flex-shrink: 0;
}

#searchInput {
    width: 100%;
    padding: 0.4rem 0.2rem;
    font-size: 14px;
    border: none;
    background: transparent;
    outline: none;
    color: var(--text);
    font-family: var(--font-body);
}

#searchInput::placeholder {
    color: var(--text-muted);
}

.clear-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0 0 0 6px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    flex-shrink: 0;
}

.clear-btn:hover {
    color: var(--danger);
}

.suggestions-box {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    background: var(--bg-elevated);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lift);
    border: 1px solid var(--border);
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    min-width: 320px;
}

.suggestions-box.active {
    display: block;
}

.suggestion-item {
    padding: 0.65rem 0.9rem;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.suggestion-item:hover {
    background: var(--bg-soft);
}

.suggestion-icon {
    font-size: 0.8rem;
    color: var(--accent);
    min-width: 20px;
}

.suggestion-text {
    flex: 1;
}

.suggestion-title {
    font-weight: 600;
    font-size: 0.84rem;
    color: var(--text);
}

.suggestion-meta {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ==================== LAYOUT ==================== */
.layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    min-height: calc(100vh - var(--topbar-height));
}

.sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 79;
}

.sidebar-backdrop.show {
    display: block;
}

/* ==================== SIDEBAR ==================== */
.sidebar {
    width: 264px;
    flex-shrink: 0;
    position: sticky;
    top: var(--topbar-height);
    height: calc(100vh - var(--topbar-height));
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    background: var(--bg);
    overflow-y: auto;
}

.sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem 0.8rem;
}

.sidebar-title {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-title i {
    color: var(--accent);
}

.sidebar-head-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.text-link {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

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

.sidebar-close {
    display: none;
}

.sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 0.2rem 1.4rem 2rem;
}

.facet-divider {
    height: 1px;
    background: var(--border);
    margin: 1.1rem 0;
}

.facet-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 0.7rem;
}

.facet-search {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    padding: 0.35rem 0.1rem;
    margin-bottom: 0.6rem;
}

.facet-search i {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.facet-search input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 0.82rem;
    color: var(--text);
    font-family: var(--font-body);
}

.facet-search input::placeholder {
    color: var(--text-muted);
}

.facet-list {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.facet-list-scroll {
    max-height: 190px;
    overflow-y: auto;
    padding-right: 4px;
}

.facet-list::-webkit-scrollbar,
.facet-list-scroll::-webkit-scrollbar,
.sidebar-body::-webkit-scrollbar {
    width: 5px;
}

.facet-list::-webkit-scrollbar-thumb,
.facet-list-scroll::-webkit-scrollbar-thumb,
.sidebar-body::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 10px;
}

.facet-option {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0.4rem 0.3rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text);
    transition: background 0.15s;
}

.facet-option:hover {
    background: var(--bg-soft);
}

.facet-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border: 1px solid var(--border-strong);
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    background: var(--bg-elevated);
}

.facet-option input[type="checkbox"]:checked {
    background: var(--accent);
    border-color: var(--accent);
}

.facet-option input[type="checkbox"]:checked::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid var(--bg-elevated);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}

.facet-option-label {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.facet-option-count {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.facet-empty {
    font-size: 0.78rem;
    color: var(--text-muted);
    padding: 0.4rem 0.2rem;
    font-style: italic;
}

/* ==================== SIDEBAR TOGGLE ==================== */
.sidebar-toggle {
    display: none;
}

.sidebar-close {
    display: none;
}

/* ==================== MAIN CONTENT ==================== */
.content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.content-inner {
    padding: 1.2rem 1.8rem 1rem;
    flex: 1;
}

/* Active chips */
.active-chips-wrapper {
    margin-bottom: 1.2rem;
}

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

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-soft);
    color: var(--text);
    border: 1px solid var(--border-strong);
    padding: 0.3rem 0.6rem;
    border-radius: 30px;
    font-size: 0.74rem;
    cursor: pointer;
}

.chip i {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.chip:hover {
    border-color: var(--accent);
}

/* ==================== PRODUCTS GRID ==================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.4rem;
}

.product-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
    border-color: var(--accent);
}

/* ==================== PRODUCT IMAGE WITH SLIDE ==================== */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--bg-soft);
}

.product-image-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    width: 100%;
}

.product-image-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==================== SLIDE NAVIGATION ARROWS ==================== */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    font-size: 14px;
}

.product-card:hover .slide-nav {
    opacity: 1;
}

.slide-nav:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.slide-nav.prev {
    left: 8px;
}

.slide-nav.next {
    right: 8px;
}

@media (max-width: 768px) {
    .slide-nav {
        opacity: 0.6;
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    .product-card:hover .slide-nav {
        opacity: 0.6;
    }
}

@media (max-width: 480px) {
    .slide-nav {
        opacity: 0.5;
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
}

/* ==================== COLOR SWATCHES ==================== */
.product-colors-wrapper {
    position: relative;
    margin-bottom: 0.5rem;
    padding: 2px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-colors-scroll {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 4px 2px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
}

.product-colors-scroll::-webkit-scrollbar {
    display: none;
}

.color-scroll-btn {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all 0.2s ease;
    padding: 0;
    opacity: 0.5;
}

.color-scroll-btn:hover {
    opacity: 1;
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft);
}

.color-scroll-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.color-swatch {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-swatch:hover {
    transform: scale(1.15);
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.color-swatch::after {
    content: attr(data-color-name);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: var(--text);
    color: var(--bg-elevated);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}

.color-swatch:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.color-swatch.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent), 0 2px 8px rgba(0, 0, 0, 0.15);
}

.color-swatch[style*="#ffffff"] {
    border-color: var(--border-strong);
}

.color-swatch[style*="#f5e6c8"] {
    border-color: var(--border-strong);
}

/* ==================== PRODUCT INFO ==================== */
.product-info {
    padding: 0.9rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-brand {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.product-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
    line-height: 1.4;
}

.product-meta-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.7rem;
    flex-wrap: wrap;
}

.product-tag {
    font-size: 0.62rem;
    padding: 0.15rem 0.5rem;
    border-radius: 30px;
    font-weight: 500;
    background: var(--bg-soft);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.product-code {
    font-size: 0.62rem;
    font-family: 'Courier New', monospace;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.affiliate-btn {
    background: var(--btn-bg);
    color: var(--btn-text);
    border: none;
    padding: 0.6rem 0;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 0.78rem;
    text-decoration: none;
    letter-spacing: 0.2px;
}

.affiliate-btn:hover {
    background: var(--btn-bg-hover);
}

/* ==================== PAGINATION ==================== */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 2.2rem;
    padding-bottom: 2rem;
}

.pagination {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.page-btn {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-muted);
}

.page-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.page-btn.active {
    background: var(--btn-bg);
    color: var(--btn-text);
    border-color: var(--btn-bg);
}

.page-dots {
    padding: 0.5rem 0.3rem;
    color: var(--text-muted);
}

/* ==================== EMPTY STATE ==================== */
.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-muted);
    grid-column: 1 / -1;
}

.empty-state i {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    opacity: 0.6;
    color: var(--accent);
}

.empty-state p {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

.empty-state small {
    font-size: 0.76rem;
    display: block;
    margin-top: 0.3rem;
}

.loading-spinner {
    text-align: center;
    padding: 3rem;
    grid-column: 1 / -1;
    color: var(--accent);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 960px) {
    .sidebar-toggle {
        display: flex;
    }

    .sidebar {
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        height: 100vh;
        z-index: 80;
        width: 280px;
        border-right: none;
        border-left: 1px solid var(--border);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-lift);
        background: var(--bg-elevated);
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .sidebar-close {
        display: flex;
    }

    /* ===== LOGO TETAP FULL DI TABLET ===== */
    .brand-mark-text {
        display: inline-block !important;
        font-size: 1.2rem;
    }

    .brand-mark-glyph {
        width: 30px;
        height: 30px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .topbar-inner {
        padding: 0.5rem 0.8rem;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .content-inner {
        padding: 1rem 0.8rem 0.8rem;
    }

    .products-grid {
        gap: 0.9rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .product-info {
        padding: 0.7rem 0.8rem 0.8rem;
    }

    .product-title {
        font-size: 0.82rem;
    }

    /* ===== LOGO TETAP FULL DI SMARTPHONE ===== */
    .brand-mark {
        gap: 6px;
        flex-shrink: 0;
    }

    .brand-mark-text {
        display: inline-block !important;
        font-size: 1rem;
    }

    .brand-mark-glyph {
        width: 26px;
        height: 26px;
        font-size: 1.1rem;
    }

    /* ===== SEARCH DI MOBILE - LEBIH PANJANG KE KIRI ===== */
    .topbar-actions {
        flex: 1;
        gap: 0.4rem;
    }

    .search-box {
        max-width: none;
        flex: 1;
        min-width: 0;
    }

    #searchInput {
        font-size: 13px;
        padding: 0.3rem 0.1rem;
    }

    .search-icon {
        font-size: 0.8rem;
        margin-right: 6px;
    }

    .suggestions-box {
        min-width: 260px;
        right: -40px;
        left: auto;
    }

    input,
    select,
    textarea {
        font-size: 16px !important;
    }

    .sidebar {
        width: 280px;
    }

    .color-swatch {
        width: 18px;
        height: 18px;
    }
    .color-scroll-btn {
        width: 18px;
        height: 18px;
        font-size: 8px;
    }

    .icon-btn {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .topbar-inner {
        padding: 0.4rem 0.5rem;
        gap: 0.3rem;
    }

    /* ===== LOGO TETAP FULL DI HP KECIL ===== */
    .brand-mark {
        gap: 4px;
        flex-shrink: 0;
    }

    .brand-mark-text {
        display: inline-block !important;
        font-size: 0.75rem;
    }

    .brand-mark-glyph {
        width: 22px;
        height: 22px;
        font-size: 0.85rem;
    }

    .product-title {
        font-size: 0.75rem;
    }

    .affiliate-btn {
        padding: 0.4rem 0;
        font-size: 0.68rem;
    }

    .page-btn {
        padding: 0.3rem 0.5rem;
        font-size: 0.68rem;
    }

    /* ===== SEARCH DI HP KECIL - LEBIH PANJANG ===== */
    .topbar-actions {
        flex: 1;
        gap: 0.3rem;
    }

    .search-box {
        max-width: none;
        flex: 1;
        min-width: 0;
    }

    #searchInput {
        font-size: 12px;
        padding: 0.2rem 0.1rem;
    }

    .search-icon {
        font-size: 0.7rem;
        margin-right: 4px;
    }

    .suggestions-box {
        min-width: 200px;
        right: -10px;
        left: auto;
    }

    .sidebar {
        width: 100%;
        max-width: 300px;
    }

    .color-swatch {
        width: 16px;
        height: 16px;
        border-width: 1.5px;
    }
    .color-scroll-btn {
        width: 16px;
        height: 16px;
        font-size: 7px;
    }

    .icon-btn {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .filter-count-badge {
        font-size: 0.5rem;
        min-width: 14px;
        height: 14px;
        top: -5px;
        right: -5px;
    }
}