.product-shop-list {
    padding: 0 0 4rem 0;
    /* Увеличенный отступ секции */
    /* background-color: #f8f9fa; */
}

.product-shop-list .product-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 35px;
    /* Увеличенный отступ снизу */
    margin-top: 15px;
    /* Добавлен отступ сверху */
    border: none;
    position: relative;
    background: white;
    height: 100%;
}

.product-shop-list .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.product-shop-list .product-card-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
}

.product-shop-list .product-card:hover .product-card-img {
    transform: scale(1.03);
}

.product-shop-list .product-card-body {
    padding: 25px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.product-shop-list .product-card-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c3e50;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    line-height: 1.3;
}

.product-shop-list .product-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right,  #d8d1b8,#d4af37);
    transition: width 0.3s ease;
}

.product-shop-list .product-card:hover .product-card-title::after {
    width: 100%;
}

.product-shop-list .product-card-title-wrapper {
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.product-shop-list .product-card-desc {
    color: #6c757d;
    font-size: 0.9rem;
    flex-grow: 1;
    margin-bottom: 15px;
}

.product-shop-list .product-card-price {
    font-weight: 700;
    color: forestgreen;
    font-size: 1.25rem;
    margin-bottom: 15px;
    stroke: white;
}

.product-shop-list .product-card-price-text{
    color: #000000;
}

.product-shop-list .product-card-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Новый стиль для кнопок "Подробнее" */
.product-shop-list .detail-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* background-color: rgba(245, 245, 245, 0.7); */
    /* Матовый фон */
    backdrop-filter: blur(5px);
    /* Эффект матового стекла */
}

.product-shop-list .detail-btn a{
    text-decoration: none;
    color: #000000;
}

.product-shop-list .detail-btn a:hover{
    text-decoration: none;
    color: #d4af37;
}

.product-shop-list .detail-btn:hover {
    background-color: rgba(240, 240, 240, 0.9);
    border-color: #d4af37;
    stroke: #d4af37;
    transition: width 0.3s ease;
}

.product-shop-list .detail-btn .btn-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.product-shop-list .detail-btn:hover .btn-icon {
    transform: translateX(3px);
    stroke: #d4af37;
}

.product-shop-list .detail-btn:hover a {
    color: #d4af37;
}

/* Стиль для кнопки "Показать еще" */
.product-shop-list .load-more-btn {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    margin-top: 20px;
}

.product-shop-list .load-more-btn:hover {
    background: rgba(245, 245, 245, 0.9);
    color: #0d6efd;
    border-color: rgba(13, 110, 253, 0.2);
}

/* Остальные стили */
.product-shop-list .hidden-products {
    display: none;
}

.product-shop-list .category-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.product-shop-list .category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #d8d1b8,#d4af37);
}

.product-shop-list .load-more-container {
    margin-top: 3rem;
    text-align: center;
}