.products {}

.products .container {
    background: var(--gray-bg);
    padding: 40px;
    border-radius: 16px;
}

.products__title {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary);
}

.products__list {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    width: 30%;
    min-width: 250px;
    background: var(--white);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
   box-shadow: var(--shadow);
}

.product-card__image {
    width: 100%;
    height: 200px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    margin-bottom: 16px;
}

.product-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
    text-align: center;
}

.product-card p {
    font-size: 14px;
    color: var(--gray-text);
    line-height: 1.5;
    text-align: center;
}

.product-card__image--computer {
    background-image: url('/products/computer.png');
}

.product-card__image--peripheral {
    background-image: url('/products/peripheral.png');
}

.product-card__image--office {
    background-image: url('/products/office.png');
}

@media (max-width: 769px) {
    .products {
        padding: 40px 0;
    }

    .products__title {
        font-size: 28px;
    }

    .products__list {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 90%;
        max-width: 320px;
    }

    .product-card__image {
        height: 160px;
    }
}