﻿/* ===== PRODUCT BANNER ===== */
.product-banner {
    padding: 70px 0;
}

.product-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* đảo chiều */
.product-row.reverse {
    flex-direction: row-reverse;
}

/* image */
.product-img {
    flex: 1;
}

.product-img img {
    width: 60%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: transform .4s ease;
}

.product-img img:hover {
    transform: scale(1.04);
}

/* content */
.product-content {
    flex: 1;
}

.product-content h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.product-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

/* button */
.btn-more {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-more:hover {
    background: linear-gradient(135deg, #ff5a00, #ff9f1c);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .product-row,
    .product-row.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .product-content h3 {
        font-size: 24px;
    }
}
