.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    text-align: center;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.product-card img {
    width: 100%;
    height: 170px;
    object-fit: contain; /* лучше, чем cover для товаров */
    border-radius: 8px;
    margin-bottom: 8px;
}

.product-title {
    font-weight: bold;
    font-size: 1rem;
    margin: 8px 0;

    display: -webkit-box;
    -webkit-line-clamp: 2;       /* максимум 2 строки */
    -webkit-box-orient: vertical;
    overflow: hidden;

    white-space: normal;
    word-break: break-word;
}

.details-btn {
    background: linear-gradient(135deg, #e67e22, #d35400);
    border: none;
    color: #fff;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

.details-btn:hover {
    background: linear-gradient(135deg, #f39c12, #e67e22); /* ярко-оранжевый */
    transform: scale(1.08); /* лёгкое увеличение */
    color: #fff; /* текст остаётся белым */
    text-decoration: none; /* не подчёркивается */
}

.pagination .page-link {
    color: #ff9900;              /* цвет цифр */
    border-color: #ff9900;       /* рамка */
}

.pagination .page-link:hover {
    background-color: #ff9900;
    color: #fff;
    border-color: #ff9900;
}

.pagination .page-item.active .page-link {
    background-color: #ff9900;
    border-color: #ff9900;
    color: #fff;
}

.promo-video-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.promo-video {
    width: 100%;
    height: 100%;   /* можно менять */
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .product-card {
        height: auto; /* снимаем фикс */
        padding: 10px;
    }

    .product-card img {
        height: 140px;
    }

    .product-title {
        font-size: 0.95rem;
        white-space: normal;      /* разрешаем перенос */
        display: -webkit-box;
        -webkit-line-clamp: 2;    /* максимум 2 строки */
        -webkit-box-orient: vertical;
    }

    .details-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
        margin-bottom: 0;
    }
}