.container-prod {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
}
.section-header p {
    font-size: 1.1em;
    color: #7f8c8d;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-content {
    display: flex;
    flex-wrap: wrap;
}

.product-image {
    flex: 0 0 40%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    min-height: 300px;
}
.product-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.product-details {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-name {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: bold;
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.spec-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    color: #3498db;
    font-weight: bold;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2px;
}

.spec-value {
    color: #555;
    font-size: 0.95em;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 900px) {
    .product-content { flex-direction: column; }
    .product-image, .product-details { flex: 1 1 100%; min-height: 180px; padding: 15px; }
}
@media (max-width: 600px) {
    .product-card { margin-bottom: 20px; }
    .product-name { font-size: 1.2em; }
    .section-header h2 { font-size: 1.4em; }
    .product-image {
        padding: 5px;
        min-height: unset;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .product-image img {
        max-width: 90vw;
        max-height: 50vw;
        width: auto;
        height: auto;
        object-fit: contain;
        margin: 0 auto;
        display: block;
    }
}