/* =========================================
   GENERAL
========================================= */

.our-product-page {
    width: 100%;
    min-height: 100vh;
}

.product-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   HERO
========================================= */

.product-hero {
    padding: 80px 0;
    text-align: center;
    background: #f5f7ff;
}

.product-hero h1 {
    margin: 0 0 15px;
    font-size: 48px;
}

.product-hero p {
    margin: 0;
    font-size: 18px;
}


/* =========================================
   PAYMENT SECTIONS
========================================= */

.payment-section,
.embedded-payment-section,
.payment-frame-section,
.custom-payment-section {
    padding: 60px 0;
}

.payment-section {
    text-align: center;
}

.payment-section h2,
.embedded-payment-section h2,
.payment-frame-section h2 {
    margin-bottom: 15px;
}


/* =========================================
   PAYMENT AREA
========================================= */

#payment-area {
    width: 100%;
    min-height: 1700px;
    margin-top: 30px;
}


/* =========================================
   CUSTOM PAYMENT BUTTON
========================================= */

.custom-payment-button {
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    background: #000;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.custom-payment-button:hover {
    opacity: 0.85;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .product-hero {
        padding: 50px 20px;
    }

    .product-hero h1 {
        font-size: 36px;
    }

    .payment-section,
    .embedded-payment-section,
    .payment-frame-section,
    .custom-payment-section {
        padding: 40px 0;
    }

    .product-container {
        width: 92%;
    }

}