body {
    background-color: #f1f3f6;
}

/* Flipkart's signature light grey bg */
.product-view-container {
    background: #fff;
    padding: 20px;
    border-radius: 2px;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .16);
}

/* Image Section */
.image-gallery-box {
    position: sticky;
    top: 100px;
}

.swiper-slide img {
    object-fit: contain;
    width: 100%;
    height: 450px;
}

/* Text Styles */
.fk-product-name {
    font-size: 18px;
    color: #212121;
    font-weight: 400;
    line-height: 1.4;
}

.fk-category {
    color: #878787;
    font-size: 14px;
    font-weight: 500;
}

/* Pricing */
.fk-price {
    font-size: 28px;
    font-weight: 500;
    color: #212121;
}

.fk-old-price {
    font-size: 16px;
    color: #878787;
    text-decoration: line-through;
    margin-left: 10px;
}

.fk-discount {
    font-size: 16px;
    color: #388e3c;
    font-weight: 500;
    margin-left: 12px;
}

/* Action Buttons */
.btn-buy-now {
    background: #fb641b;
    border: none;
    color: #fff;
    padding: 18px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 2px;
    text-transform: uppercase;
    width: 100%;
    height: 5%;
}

.btn-buy-now:hover {
    background: #f45100;
    color: #fff;
}

/* Description */
.section-title-small {
    font-size: 16px;
    font-weight: 500;
    color: #212121;
    margin-bottom: 10px;
}

.description-text {
    font-size: 14px;
    color: #212121;
    line-height: 1.6;
}

.btn-whatsapp {
    background-color: #25d366;
    /* Official WhatsApp Green */
    border: none;
    color: #fff !important;
    padding: 18px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 2px;
    text-transform: uppercase;
    transition: background 0.3s ease;
    height: 5%;
    width: 100%;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    /* Darker WhatsApp Teal */
    color: #fff;
}

.share-icons a {
    transition: color 0.2s ease;
    text-decoration: none;
}

.share-icons .bi-facebook:hover {
    color: #1877F2 !important;
    /* Facebook Blue */
}

.share-icons .bi-whatsapp:hover {
    color: #25D366 !important;
    /* WhatsApp Green */
}

.cursor-pointer {
    cursor: pointer;
}

/* Ensure buttons sit side-by-side nicely on mobile */
@media (max-width: 576px) {

    .btn-buy-now,
    .btn-whatsapp {
        padding: 12px 8px;
        font-size: 13px;
    }
}

.fk-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #2874f0;
    background-color: #f0f5ff;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fk-back-btn i {
    font-size: 18px;
}

.fk-back-btn:hover {
    background-color: #2874f0;
    color: #fff;
}