/* ==========================================
   SHOP PAGE
   ========================================== */

.shop-page {
    padding: 60px 0 80px;
}

/* Page Header */
.shop-header {
    text-align: center;
    margin-bottom: 40px;
}

.shop-title {
    font-size: 38px;
    font-weight: 400;
    color: #191919;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}

.shop-subtitle {
    font-size: 15px;
    color: #888;
    letter-spacing: 0.02em;
}

/* Search Bar */
.shop-search {
    max-width: 520px;
    margin: 0 auto 32px;
    position: relative;
}

.shop-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

.shop-search input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-family: 'Arimo', sans-serif;
    font-size: 15px;
    color: #191919;
    background: #fff;
    outline: none;
    transition: border-color 0.3s ease;
}

.shop-search input:focus {
    border-color: #191919;
}

.shop-search input::placeholder {
    color: #aaa;
}

/* Category Filters */
.shop-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-family: 'Arimo', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1.5px solid #ddd;
    border-radius: 30px;
    background: #fff;
    color: #666;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-btn:hover {
    border-color: #191919;
    color: #191919;
}

.filter-btn.active {
    background: #232323;
    border-color: #232323;
    color: #fff;
}

/* Product Count */
.shop-count {
    font-size: 13px;
    color: #999;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 0.02em;
}

/* Shop Grid — 3 columns for a cleaner look */
.shop-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* No Results */
.shop-no-results {
    text-align: center;
    padding: 60px 0;
}

.shop-no-results p {
    font-size: 16px;
    color: #999;
}

/* ==========================================
   RESPONSIVE — TABLET
   ========================================== */
@media (max-width: 1024px) {
    .shop-title {
        font-size: 32px;
    }

    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================
   RESPONSIVE — MOBILE
   ========================================== */
@media (max-width: 767px) {
    .shop-page {
        padding: 40px 0 60px;
    }

    .shop-title {
        font-size: 26px;
    }

    .shop-subtitle {
        font-size: 14px;
    }

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

    .shop-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 12px;
    }

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

    .product-hover-img {
        display: none;
    }
}
