.product-specs {
    font-size: 13px;
    line-height: 1.6;
}

.spec-item {
    margin-bottom: 6px;
}

.spec-name {
    color: #757575;
    font-weight: 500;
}

.spec-value {
    color: #333;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.product-card.product-list:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-list .box-size3 {
    width: 220px;
    min-width: 220px;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.product-list .box-size3 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 991px) {
    .product-list .box-size3 {
        width: 180px;
        min-width: 180px;
        height: 180px;
    }
}

@media (max-width: 767px) {
    .product-list .box-size3 {
        width: 150px;
        min-width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .product-list .box-size3 {
        width: 120px;
        min-width: 120px;
        height: 120px;
    }
}
