﻿
.procatalog-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 30px;
}

.procatalog-title {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #015030;
    padding: 40px;
    background-color: #f6f6f6;
}

.product-grid-body {
    display: flex;
    justify-content: center;
}

.product-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(390px, 1fr));
    gap: 20px;
    max-width: 800px;
    /*width: 100%;*/
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 390px;
}

.card {
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 390px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .card:hover {
        opacity: 0.93;
    }

    .card img {
        max-width: 100%;
        max-height: 100%;
        display: block;
    }

.button {
    background-color: #B6D7C4;
    color: #444444;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

    .button:hover {
        background-color: #9EC0A3;
    }

.contact-section {
    background: url('/pcshop/images/catalogbg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px;
    margin-top: 30px;
    position: relative;
}

.contact-content {
    /*    max-width: 500px;*/
}

.contact-text {
    font-size: 16px;
    line-height: 2;
}

.submit-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 40px 0;
}
