/* ================= BACK TO HOME BUTTON ================= */

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #c56a1a;
    text-decoration: none;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.back-home-btn i {
    font-size: 13px;
}

.back-home-btn:hover {
    color: #a85414;
    transform: translateX(-4px);
}

/* Mobile */
@media (max-width: 575px) {
    .back-home-btn {
        font-size: 13px;
    }
}


/* ================= PAGE HERO ================= */

.page-hero {
    position: relative;
    background: linear-gradient(135deg, #fff7f0, #ffffff);
    padding: 140px 0 90px;
    text-align: center;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(197, 106, 26, 0.08);
    border-radius: 50%;
    top: -80px;
    right: -80px;
}

.page-hero h1 {
    font-size: 44px;
    font-weight: 700;
    color: #2c2c2c;
}

.page-hero p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    max-width: 520px;
    margin-inline: auto;
}



/* ================= PRODUCT PAGE ================= */

.product-page {
    padding: 100px 0;
    background-color: #ffffff;
}

/* Product Card */
.product-detail-card {
    margin-bottom: 70px;
    padding: 40px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-detail-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.12);
}

/* Image */
.product-image {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

/* Text */
.product-detail-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.product-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Specs */
.product-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-specs li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
    color: #ffffff;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .product-detail-card {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .product-detail-card h3 {
        font-size: 20px;
    }
}
    .product-desc {
        font-size: 14px;
    }
    .whatsapp-btn {
        padding: 10px 24px;
        font-size: 13px;
    }
     