/* ================= SECTION BASE ================= */
.prd-detail {
    padding: 70px 0;
}

.prd-detail.bg1 {
    background-color: #ffffff;
}

.prd-detail.srev {
    background-color: #f9fafb;
}

.gbold{
    padding-top: 20px;
}
/* ================= HEADING ================= */
.hstyle {
    font-size: 2.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: capitalize;
    
}

/* ================= PARAGRAPH ================= */
.prd-detail p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
    text-align: justify;
}

/* ================= BUTTON ================= */
.lbox {
    margin-top: 25px;
}

.btn-default {
    display: inline-block;
    padding: 13px 36px;
    background-color: #ffcc00;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #ffcc00;
    transition: all 0.3s ease;
}

.btn-default:hover {
    background: transparent;
    color: #ffcc00;
}
.btn-bulk{
    display: inline-block;
    padding: 13px 36px;
    background-color: #fd7000;
    color: black;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid #fd7000;
    transition: all 0.3s ease;
}
.btn-bulk:hover{
    background: transparent;
    color: #fd7000;
}
/* ================= CAROUSEL ================= */
.owl-carousel {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.owl-carousel img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* ================= DECORATIVE LEAF ================= */
.leaf1 {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.1;
    pointer-events: none;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {

    .hstyle {
        font-size: 2rem;
    }

    .prd-detail {
        padding: 60px 0;
    }

    .owl-carousel img {
        height: 350px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .prd-detail {
        padding: 45px 0;
        text-align: center;
    }

    .hstyle {
        font-size: 1.7rem;
    }

    .prd-detail p {
        text-align: center;
    }

    .lbox {
        text-align: center;
    }

    .owl-carousel img {
        height: 260px;
    }

    /* Stack columns */
    .prd-detail .row {
        flex-direction: column-reverse;
    }

    /* But keep reverse sections correct */
    .prd-detail.srev .row {
        flex-direction: column;
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
    .hstyle {
        font-size: 1.5rem;
    }

    .owl-carousel img {
        height: 220px;
    }
}
