.shop-page {
    padding: 110px 24px 80px;
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.shop-page__head {
    text-align: center;
    margin-bottom: 40px;
}

.shop-page__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}

.shop-page__subtitle {
    font-size: 13px;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.shop-toolbar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.shop-search {
    display: flex;
    gap: 10px;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
}

.shop-search input[type="search"] {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    border: 1px solid #e5e5e5;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    background: #fafaf8;
}

.shop-search input[type="search"]:focus {
    outline: none;
    border-color: #b08d57;
    background: #fff;
}

.shop-search button {
    padding: 14px 22px;
    border: none;
    background: #0a0a0a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    white-space: nowrap;
}

.shop-search button:hover {
    background: #333;
}

.shop-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.shop-filter-pill {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #e0ddd6;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #4a4a4a;
    background: #fff;
    transition: all 0.25s ease;
}

.shop-filter-pill:hover {
    border-color: #b08d57;
    color: #0a0a0a;
}

.shop-filter-pill.is-active {
    background: #0a0a0a;
    border-color: #0a0a0a;
    color: #fff;
}

.shop-results-meta {
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 28px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(22px, 2.8vw, 40px);
}

.shop-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 24px;
    color: #888;
}

.shop-empty a {
    color: #0a0a0a;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .shop-page {
        padding: 88px 20px 60px;
    }
}

@media (max-width: 768px) {
    .shop-page {
        padding: 80px 16px 48px;
    }

    .shop-page__head {
        margin-bottom: 28px;
    }

    .shop-toolbar {
        margin-bottom: 24px;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .shop-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        margin: 0 -4px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .shop-filters::-webkit-scrollbar {
        display: none;
    }

    .shop-filter-pill {
        flex-shrink: 0;
        padding: 9px 14px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .shop-page {
        padding: 76px 14px 40px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0;
        gap: 20px;
    }

    .shop-search input[type="search"] {
        font-size: 16px;
    }
}
