/* =========================================
   GLOBAL
========================================= */
.product-page {
    padding: 60px 20px;
}

h3.section-title {
    font-size: 25px;
    font-weight: 700;
    color: #2780bd;
    margin: 60px 0 20px;
}

/* =========================================
   ACCORDION
========================================= */
.product-accordion {
    max-width: 1200px;
    margin: auto;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    background: #f4f6f9;
    border: none;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background: #e9edf2;
}

.accordion-body {
    display: none;
    padding: 50px 0;
}

.accordion-header .icon {
    font-size: 20px;
}

/* =========================================
   PRODUCT GRID LAYOUT
========================================= */
.product-container,
.product-container1,
.product-container2 {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* IMAGE */
.product-image img,
.product-image1 img,
.product-image2 img,
.pump-image,
.cutoff-image {
    width: 100%;
    max-width: 450px;
    display: block;
    margin: auto;
}

/* =========================================
   TEXT CONTENT
========================================= */
.product-content p,
.product-content1 p,
.product-content2 p,
.text-column p {
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 15px;
    color: #333;
}

/* =========================================
   TECHNICAL TABLE
========================================= */
.technical-data,
.technical-data1,
.technical-data2 {
    margin-top: 30px;
    max-width: 550px;
}

.technical-data h4,
.technical-data1 h4,
.technical-data2 h4 {
    background: #e5e5e5;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 0;
    border: 1px solid #ccc;
    font-weight: 600;
}

.technical-data table,
.technical-data1 table,
.technical-data2 table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.technical-data table td,
.technical-data1 table td,
.technical-data2 table td {
    border: 1px solid #ccc;
    padding: 8px 10px;
}

.technical-data table tr:nth-child(even),
.technical-data1 table tr:nth-child(even),
.technical-data2 table tr:nth-child(even) {
    background: #f1f1f1;
}

/* =========================================
   CUT OFF / TWO COLUMN TEXT
========================================= */
.cutoff-text {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* =========================================
   PUMP SECTION
========================================= */
.pump-container {
    max-width: 1200px;
    margin: auto;
}

.pump-visual {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.pump-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* =========================================
   FEATURE LIST
========================================= */
.feature-list {
    list-style: disc;
    padding-left: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 992px) {

    .product-container,
    .product-container1,
    .product-container2,
    .cutoff-text,
    .pump-description {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-image img,
    .product-image1 img,
    .product-image2 img,
    .pump-image,
    .cutoff-image {
        max-width: 350px;
    }
}
