/**
 * Catalog Page Styles - ArchFinishes Design
 * Matches the Shop All Kits mockup with filter bar, sidebar, and product grid
 */

/* ═══════════════════════════════════════════════════════════════════════════
   VARIABLES (ArchFinishes Palette)
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
    --af-catalog-bg: #FAF7F2;
    --af-catalog-surface: #FFFFFF;
    --af-catalog-text: #141414;
    --af-catalog-muted: #A3A3A3;
    --af-catalog-border: #E8E4DE;
    --af-catalog-accent: #C65A3A;
    --af-catalog-accent-hover: #a94e32;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CATALOG BASE
   ═══════════════════════════════════════════════════════════════════════════ */
.af-catalog {
    background: var(--af-catalog-bg);
    min-height: 100vh;
}

.af-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CATALOG HEADER
   ═══════════════════════════════════════════════════════════════════════════ */
.af-catalog-header {
    background: var(--af-catalog-bg);
    padding: 48px 0 24px;
    text-align: center;
}

.af-catalog-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--af-catalog-text);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.af-catalog-subtitle {
    font-size: 0.9375rem;
    color: var(--af-catalog-muted);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FILTER PILLS BAR (Top horizontal bar)
   ═══════════════════════════════════════════════════════════════════════════ */
.af-filter-pills-bar {
    background: var(--af-catalog-surface);
    border-top: 1px solid var(--af-catalog-border);
    border-bottom: 1px solid var(--af-catalog-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.af-filter-pills-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.af-filter-pills-row::-webkit-scrollbar {
    display: none;
}


.af-filter-pills-left {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.af-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    background: var(--af-catalog-surface);
    border: 1px solid var(--af-catalog-border);
    border-radius: 24px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--af-catalog-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.af-filter-pill:hover {
    border-color: var(--af-catalog-text);
}

.af-filter-pill.active {
    background: var(--af-catalog-text);
    border-color: var(--af-catalog-text);
    color: var(--af-catalog-surface);
}

.af-filter-pill .material-symbols-outlined {
    font-size: 16px;
}

.af-filter-pills-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.af-sort-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.af-sort-label {
    font-size: 0.8125rem;
    color: var(--af-catalog-muted);
}

.af-sort-dropdown select {
    padding: 8px 12px;
    background: var(--af-catalog-surface);
    border: 1px solid var(--af-catalog-border);
    border-radius: 6px;
    font-size: 0.8125rem;
    color: var(--af-catalog-text);
    cursor: pointer;
}

.af-search-within {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--af-catalog-bg);
    border: 1px solid var(--af-catalog-border);
    border-radius: 6px;
}

.af-search-within .material-symbols-outlined {
    font-size: 18px;
    color: var(--af-catalog-muted);
}

.af-search-within input {
    border: none;
    background: transparent;
    font-size: 0.8125rem;
    color: var(--af-catalog-text);
    width: 140px;
}

.af-search-within input::placeholder {
    color: var(--af-catalog-muted);
}

.af-search-within input:focus {
    outline: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CATALOG LAYOUT
   ═══════════════════════════════════════════════════════════════════════════ */
.af-catalog-main {
    padding: 32px 0 60px;
}

.af-catalog-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE FILTER TOGGLE
   ═══════════════════════════════════════════════════════════════════════════ */
.af-filter-toggle {
    display: none;
    width: 100%;
    padding: 14px 20px;
    background: #E8DFD5;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0F1724;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.af-filter-toggle .material-symbols-outlined {
    font-size: 20px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SIDEBAR FILTERS
   ═══════════════════════════════════════════════════════════════════════════ */
.af-catalog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 8px;
}

.af-catalog-sidebar::-webkit-scrollbar {
    width: 4px;
}

.af-catalog-sidebar::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 4px;
}

.af-sidebar-header {
    display: none;
}

.af-filters-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.af-filter-group {
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.af-filter-group:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.af-filter-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0F1724;
    margin: 0 0 12px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.af-filter-toggle-icon {
    font-size: 0.625rem;
    color: #6B7280;
    transition: transform 0.2s ease;
}

.af-filter-group.collapsed .af-filter-toggle-icon {
    transform: rotate(180deg);
}

.af-filter-group.collapsed .af-filter-options,
.af-filter-group.collapsed .af-color-swatches,
.af-filter-group.collapsed .af-filter-pills {
    display: none;
}

.af-filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.af-filter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 12px;
}

/* Checkboxes */
.af-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.8125rem;
    color: #374151;
}

.af-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.af-checkbox input[type="checkbox"]:checked {
    background: #1A73E8;
    border-color: #1A73E8;
}

.af-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
}

/* Color Swatches */
.af-color-swatches {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.af-color-swatch {
    cursor: pointer;
}

.af-color-swatch input {
    display: none;
}

.af-swatch {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.af-color-swatch:hover .af-swatch {
    transform: scale(1.1);
}

.af-color-swatch input:checked+.af-swatch {
    border-color: #1A73E8;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #1A73E8;
}

/* Color Filter Swatches (sidebar) */
.af-color-filter-swatches {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.af-color-swatch-label {
    cursor: pointer;
    position: relative;
}

.af-color-swatch-label input {
    display: none;
}

.af-color-swatch-box {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.af-color-swatch-label:hover .af-color-swatch-box {
    transform: scale(1.1);
}

.af-color-swatch-label input:checked+.af-color-swatch-box {
    border-color: #1A73E8;
    box-shadow: 0 0 0 2px #1A73E8;
}

/* Pills */
.af-filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.af-pill {
    cursor: pointer;
}

.af-pill input {
    display: none;
}

.af-pill span {
    display: inline-block;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    font-size: 0.8125rem;
    color: #374151;
    transition: all 0.2s ease;
}

.af-pill:hover span {
    border-color: #9CA3AF;
}

.af-pill input:checked+span {
    background: #1A73E8;
    border-color: #1A73E8;
    color: #fff;
}

.af-apply-filters {
    width: 100%;
    margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SORT BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.af-sort-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    justify-content: flex-end;
}

.af-sort-label {
    font-size: 0.875rem;
    color: #6B7280;
}

.af-sort-options {
    display: flex;
    gap: 4px;
}

.af-sort-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s ease;
}

.af-sort-btn:hover {
    border-color: #9CA3AF;
}

.af-sort-btn.active {
    background: #0F1724;
    border-color: #0F1724;
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CATALOG PRODUCT GRID
   ═══════════════════════════════════════════════════════════════════════════ */
.af-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.af-catalog-grid .af-product-card {
    border: none;
    background: #fff;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.af-catalog-grid .af-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.af-catalog-grid .af-product-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #F5EDE4 0%, #E8DED1 100%);
}

.af-catalog-grid .af-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.af-catalog-grid .af-product-card:hover .af-product-image img {
    transform: scale(1.06);
}

/* Product Badge */
.af-catalog-grid .af-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    font-size: 0.6875rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.af-badge-new {
    background: linear-gradient(135deg, #1A73E8 0%, #0D47A1 100%);
    color: #fff;
}

.af-badge-bestseller {
    background: linear-gradient(135deg, #C4A35A 0%, #A68B3D 100%);
    color: #fff;
}

.af-badge-bundle {
    background: linear-gradient(135deg, #C65A3A 0%, #A44B2E 100%);
    color: #fff;
}

.af-badge-series {
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
    color: #fff;
}

/* Wishlist Button on Product Card */
.af-wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: all 0.2s ease;
    opacity: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.af-product-card:hover .af-wishlist-btn,
.af-wishlist-btn[data-in-wishlist="1"] {
    opacity: 1;
}

.af-wishlist-btn:hover {
    transform: scale(1.1);
    background: #fff;
}

.af-wishlist-btn .material-symbols-outlined {
    font-size: 20px;
    color: #6B7280;
    transition: color 0.2s;
}

.af-wishlist-btn[data-in-wishlist="1"] .material-symbols-outlined {
    color: #C65A3A;
}

.af-wishlist-btn:hover .material-symbols-outlined {
    color: #C65A3A;
}

/* Hover Overlay */
.af-product-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.af-product-image-link:hover .af-product-hover {
    opacity: 1;
}

.af-view-details {
    padding: 10px 20px;
    background: #fff;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0F1724;
}

/* Product Info */
.af-catalog-grid .af-product-info {
    padding: 16px 16px 20px;
}

.af-catalog-grid .af-product-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #121212;
    margin: 0 0 6px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.af-catalog-grid .af-product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.af-catalog-grid .af-product-title a:hover {
    color: #C65A3A;
}

.af-catalog-grid .af-product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #C65A3A;
    margin-bottom: 0;
}

.af-catalog-grid .af-product-price del {
    color: #9CA3AF;
    font-weight: 400;
    margin-right: 8px;
}

.af-catalog-grid .af-product-price ins {
    text-decoration: none;
}

.af-catalog-grid .af-product-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.af-catalog-grid .af-tag {
    padding: 4px 8px;
    background: #F3F4F6;
    border-radius: 4px;
    font-size: 0.6875rem;
    color: #6B7280;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════════════════════════ */
.af-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.af-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
}

.af-pagination .page-numbers:hover {
    border-color: #1A73E8;
    color: #1A73E8;
}

.af-pagination .page-numbers.current {
    background: var(--af-catalog-accent);
    border-color: var(--af-catalog-accent);
    color: #fff;
}

/* Next button */
.af-pagination .next {
    width: auto;
    padding: 0 20px;
    background: var(--af-catalog-text);
    border-color: var(--af-catalog-text);
    color: #fff;
}

.af-pagination .next:hover {
    background: #2a2a2a;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROMO BANNER CARD (In-Grid)
   ═══════════════════════════════════════════════════════════════════════════ */
.af-promo-banner-card {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--af-catalog-accent) 0%, #d4725a 100%);
    border-radius: 12px;
    padding: 28px 32px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
}

.af-promo-banner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(198, 90, 58, 0.3);
}

.af-promo-banner-content {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-shrink: 0;
}

.af-promo-icon {
    font-size: 28px;
    opacity: 0.9;
}

.af-promo-title {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.3;
}

.af-promo-arrow {
    font-size: 22px;
    opacity: 0.8;
    transition: transform 0.2s ease;
}

.af-promo-banner-card:hover .af-promo-arrow {
    transform: translateX(4px);
    opacity: 1;
}

.af-promo-bundle-images {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.af-promo-bundle-images img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: transform 0.2s ease;
}

.af-promo-banner-card:hover .af-promo-bundle-images img {
    border-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .af-promo-banner-card {
        grid-column: span 1;
        flex-direction: column;
        padding: 24px 20px;
        gap: 14px;
        text-align: center;
    }


    .af-promo-banner-content {
        flex-direction: column;
        gap: 6px;
    }

    .af-promo-title {
        font-size: 1rem;
    }

    .af-promo-bundle-images img {
        width: 64px;
        height: 64px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUNDLE BADGE (Corner position)
   ═══════════════════════════════════════════════════════════════════════════ */
.af-badge-bundle {
    position: absolute;
    bottom: 10px;
    right: 10px;
    top: auto;
    left: auto;
    background: var(--af-catalog-accent);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NO PRODUCTS STATE
   ═══════════════════════════════════════════════════════════════════════════ */
.af-no-products {
    text-align: center;
    padding: 80px 24px;
    background: var(--af-catalog-surface);
    border-radius: 12px;
}

.af-no-products .material-symbols-outlined {
    font-size: 64px;
    color: var(--af-catalog-muted);
    margin-bottom: 16px;
}

.af-no-products h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--af-catalog-text);
    margin: 0 0 8px 0;
}

.af-no-products p {
    font-size: 0.9375rem;
    color: var(--af-catalog-muted);
    margin: 0 0 24px 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CATALOG BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */
.af-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--af-catalog-accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.af-btn-primary:hover {
    background: var(--af-catalog-accent-hover);
}

/* ═══════════════════════════════════════════════════════════════════════════
   COMPLETE THE LOOK
   ═══════════════════════════════════════════════════════════════════════════ */
.af-complete-look {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #E5E7EB;
}

.af-complete-look-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0F1724;
    margin: 0 0 20px 0;
}

.af-complete-look-grid {
    display: flex;
    gap: 16px;
}

.af-complete-look-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    text-decoration: none;
    min-width: 180px;
    transition: all 0.2s ease;
}

.af-complete-look-item:hover {
    border-color: #9CA3AF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.af-complete-look-name {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #0F1724;
}

.af-complete-look-image {
    width: 60px;
    height: 45px;
    border-radius: 4px;
    overflow: hidden;
}

.af-complete-look-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .af-catalog-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .af-catalog-hero-content {
        max-width: none;
    }

    .af-catalog-hero-image {
        max-height: 250px;
    }

    .af-catalog-layout {
        grid-template-columns: 220px 1fr;
        gap: 24px;
    }

    .af-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .af-catalog-hero {
        padding: 24px 0;
    }

    .af-catalog-title {
        font-size: 1.5rem;
    }

    .af-filter-toggle {
        display: flex;
    }

    .af-catalog-layout {
        display: block;
    }

    .af-catalog-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        z-index: 1000;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        max-height: none;
        overflow-y: auto;
    }

    .af-catalog-sidebar.active,
    .af-catalog-sidebar.af-sidebar-open {
        transform: translateX(0);
    }


    .af-sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 16px;
        border-bottom: 1px solid #E5E7EB;
        font-size: 1.125rem;
        font-weight: 600;
    }

    .af-sidebar-close {
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
        color: #6B7280;
    }

    .af-sort-bar {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .af-catalog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 100%;
    }


    .af-filter-pills-row {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        overflow-x: visible;
    }

    .af-filter-pills-left {
        display: none;
    }

    .af-filter-pills-right {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .af-sort-dropdown, 
    .af-search-within {
        width: 100%;
        justify-content: space-between;
    }

    .af-search-within input {
        width: 100%;
        flex: 1;
    }


    .af-complete-look-grid {
        flex-direction: column;
    }

    .af-complete-look-item {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .af-catalog-hero-image {
        display: none;
    }

    .af-sort-options {
        width: 100%;
    }

    .af-sort-btn {
        flex: 1;
        text-align: center;
    }
}