/* ============================================================
   Product Page Styles
   ============================================================ */

.floating-buy-box {
    position: sticky;
    top: 90px;
    z-index: 100;
    transition: all 0.3s ease;
}

.floating-buy-box .card {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.floating-buy-box .card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
}

/* ----------------------------------------------
   MOBILE: Buy box moves to bottom naturally
   ---------------------------------------------- */
@media (max-width: 767.98px) {
    .floating-buy-box {
        position: relative !important;
        top: auto !important;
        margin-top: 20px !important;
    }
}

/* ----------------------------------------------
   STICKY BUY BOX SCROLLING (Desktop only)
   ---------------------------------------------- */
@media (min-height: 800px) and (min-width: 768px) {
    .floating-buy-box {
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .floating-buy-box .card-body {
        max-height: calc(100vh - 180px);
        overflow-y: auto;
    }

    .floating-buy-box .card-body::-webkit-scrollbar {
        width: 4px;
    }

    .floating-buy-box .card-body::-webkit-scrollbar-thumb {
        background: #dee2e6;
        border-radius: 4px;
    }

    .floating-buy-box .card-body::-webkit-scrollbar-track {
        background: transparent;
    }
}