/* Product pages layout styles */

.product-page-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: 600;
    margin: 50px 0;
    padding-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

/* Intro text section below page title */
.product-intro {
    max-width: 800px;
    margin: 0 auto 50px auto;
    text-align: center;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

.product-intro h3 {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 8px;
}

.product-intro p {
    margin-bottom: 10px;
}

/* Centered single image layout (for pages like Gri Su) */
.product-centered-image {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 60px;
}

.product-centered-image img {
    max-width: 100%;
    height: auto;
}

/* A subtle wavy background on the title block or top of the page */
.page-top-bg {
    background: url('') no-repeat center top;
    background-size: contain;
    padding-top: 20px;
}

.product-list-container {
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.product-item {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.product-image {
    flex: 0 0 300px;
    text-align: center;
}

.product-image img {
    max-height: 350px;
    width: auto;
    margin: 0 auto;
}

.product-info {
    flex: 1;
}

.product-info h3 {
    color: var(--primary-blue);
    font-size: 22px;
    margin-bottom: 15px;
}

.product-info p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.product-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--secondary-blue);
    border-color: var(--secondary-blue);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .product-item {
        flex-direction: column;
        text-align: center;
    }

    .product-image {
        flex: 0 0 auto;
    }

    .product-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}