﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*body {
    font-family: Arial, sans-serif;
    background: #f4f7fb;
    color: #1f2937;
    padding: 30px 15px;
}*/

/*.container {
    max-width: 1300px;
    margin: 0 auto;
}*/

.title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #86898e;
}

/*.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    column-count:3;
}*/

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

.product-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e5e7eb;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.product-info {
    padding: 18px;
}

.product-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0b3b75;
}

.product-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 14px;
}

.product-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #0b5ed7;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

    .product-btn:hover {
        background: #084298;
    }

@media (max-width: 768px) {
    .title {
        font-size: 26px;
    }

    .product-name {
        font-size: 20px;
    }
}
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    /*body {
        padding: 20px 10px;
    }*/

    .product-grid {
        gap: 16px;
    }

    .product-info {
        padding: 14px;
    }

    .product-name {
        font-size: 18px;
    }

    .product-desc {
        font-size: 14px;
    }
}
