.product-page {
    padding: 80px 0;
    background: #ffffff;
}

.category-filter {
    margin-bottom: 50px;
}

.category-filter__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.category-filter__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    background: #f8f9fa;
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 1px solid #eeeeee;
}

.category-filter__link:hover,
.category-filter__link.active {
    background: #f3b21a;
    color: #ffffff;
    border-color: #f3b21a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 178, 26, 0.2);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.product-card {
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #f3b21a;
}

.product-card__image {
    position: relative;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.1);
}

.product-card__body {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card__title {
    margin: 0 0 10px;
    color: #111111;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-card:hover .product-card__title {
    color: #f3b21a;
}

.product-card__category {
    font-size: 13px;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.product-card__price {
    margin-top: auto;
    color: #e04848;
    font-size: 18px;
    font-weight: 700;
}

.product-card__button {
    margin-top: 15px;
    padding: 8px 20px;
    border-radius: 50px;
    background: #f3b21a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.product-card:hover .product-card__button {
    background: #250900;
}

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

@media (max-width: 991.98px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
    .product-grid { grid-template-columns: 1fr; }
    .category-filter__link { padding: 8px 16px; font-size: 13px; }
}
