.product-detail-section {
    background: #f5f6f8;
    min-height: 500px;
    padding: 70px 20px;
}

.product-detail-container {
    max-width: 1100px;
    margin: auto;
    background: white;
    padding: 50px;
    border-radius: 12px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.product-detail-image {
    width: 40%;
}

.product-detail-image img {
    width: 100%;
    max-height: 350px;
    object-fit: contain;
}

.product-detail-content {
    width: 60%;
}

.product-detail-content h1 {
    font-size: 38px;
    color: #111;
    margin-bottom: 20px;
}

.product-detail-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 18px;
}

.product-detail-content strong {
    color: #111;
}

.product-detail-content .btn-primary {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 28px;
    background: #ffb000;
    color: #111;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
}

@media (max-width: 768px) {

    .product-detail-container {
        flex-direction: column;
        padding: 30px 20px;
    }

    .product-detail-image,
    .product-detail-content {
        width: 100%;
    }

    .product-detail-content h1 {
        font-size: 28px;
    }
}


/* =====================================================
   BACK BUTTON STYLES (NEW PREMIUM DESIGN)
   ===================================================== */
   .back-btn-container {
       max-width: 1200px;
       margin: 30px auto 15px auto; /* 105px se kam karke 30px kar diya taaki gap chota ho jaye */
       padding: 0 20px;
   }

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 180, 0, 0.15); /* Light orange background */
    color: #ffb400; /* Tera orange theme */
    padding: 8px 18px;
    border-radius: 25px; /* Pill shape round button */
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(255, 180, 0, 0.3);
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #ffb400;
    color: #000000;
    transform: translateX(-4px); /* Hover par thoda left shift hoga */
    box-shadow: 0 5px 15px rgba(255, 180, 0, 0.2);
}

/* =====================================================
   PRODUCT DETAIL BOX (COMPACT LAYOUT)
   ===================================================== */
.product-detail-section {
    padding-bottom: 40px; /* Niche ka space kam kiya */
}

.product-detail-container {
    display: flex;
    align-items: center; /* Image aur text ko center me rakhega */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 40px; /* Padding kam kardi taaki box chota bane */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eeeeee;
}

/* =====================================================
   IMAGE SECTION (HEIGHT CONTROLLED)
   ===================================================== */
.product-detail-image {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-detail-image img {
    max-height: 280px; /* Image ko bada hone se rokega jisse scroll nahi aayega */
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* =====================================================
   CONTENT SECTION
   ===================================================== */
.product-detail-content {
    flex: 1;
}

.product-detail-content p {
    color: #666666;
    font-size: 15px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.product-detail-content p strong {
    color: #111111;
}

.product-detail-content h1 {
    font-size: 32px;
    color: #111111;
    font-weight: 800;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

/* =====================================================
   SMALL REQUEST QUOTE BUTTON
   ===================================================== */
.btn-quote-small {
    display: inline-block;
    background: #ffb400;
    color: #000000;
    padding: 10px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 10px;
    border: 2px solid #ffb400;
    width: max-content;
}

.btn-quote-small:hover {
    background: transparent;
    color: #ffb400;
}

/* =====================================================
   MOBILE RESPONSIVE
   ===================================================== */
@media screen and (max-width: 768px) {
    .product-detail-container {
        flex-direction: column; /* Mobile pe ek ke niche ek */
        padding: 25px 20px;
        gap: 20px;
        margin: 0 15px;
    }
    
    .product-detail-image img {
        max-height: 200px;
    }
    
    .product-detail-content h1 {
        font-size: 24px;
    }
}