/* ============================================
   SMPP API PAGE STYLES
   ============================================ */

.product-hero {
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 106, 0, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.product-hero h1 {
    font-size: 3.5rem;
}

@media (max-width: 992px) {
    .product-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding-top: 120px !important;
        padding-bottom: 50px !important;
    }
    .product-hero h1 {
        font-size: 2rem;
    }
}