/* ============================================
   CUSTOM OVERRIDES — Dr. Deebanshu Gupta
   Professional Medical Theme — Light Blue & Teal
   ============================================ */

/* ---------- OVERRIDE BOOTSTRAP CSS VARIABLES ---------- */
/* This overrides the compiled style.css Bootstrap theme colors globally */
:root {
    --primary:   #1A6BA0 !important;
    --secondary: #0D8B8B !important;
}

/* Force Bootstrap utility classes to use medical blue */
.bg-primary {
    background-color: #1A6BA0 !important;
    background: linear-gradient(90deg, #1A6BA0, #155e8a) !important;
}

.text-primary {
    color: #1A6BA0 !important;
}

.border-primary {
    border-color: #1A6BA0 !important;
}

/* Override heading color set in style.css (:root h1-h6 = #DC143C) */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: #1A6BA0 !important;
}

/* Override default link colour set in style.css */
a {
    color: #1A6BA0;
}
a:hover {
    color: #134f78;
}

/* ---------- MEDICAL COLOR PALETTE ---------- */
:root {
    --med-blue:       #1A6BA0;   /* primary action / headings */
    --med-blue-dark:  #134f78;   /* hover / deeper shade     */
    --med-teal:       #0D8B8B;   /* secondary / accents       */
    --med-teal-light: #e0f5f5;   /* teal tint backgrounds     */
    --med-sky:        #E8F4FD;   /* page section backgrounds  */
    --med-sky-mid:    #d1eaf8;   /* slightly deeper sky       */
    --med-text:       #2c3e50;   /* dark readable text        */
    --med-muted:      #637080;   /* secondary text            */
    --med-border:     #d6e8f4;   /* card / input borders      */
    --med-white:      #ffffff;
}

/* ---------- GLOBAL POLISH ---------- */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fafcff;
    color: var(--med-text);
}

/* Tighter, bolder headings */
h1, h2, h3, .display-4 {
    font-weight: 800 !important;
    letter-spacing: -0.5px;
    color: var(--med-blue) !important;
}

/* Smooth section spacing */
.container-fluid.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* Scroll-reveal animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- CONTACT INFO CARDS ---------- */
.info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--med-white);
    border: 1px solid var(--med-border);
    border-radius: 16px;
    padding: 24px 28px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 12px rgba(26, 107, 160, 0.06);
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 107, 160, 0.14);
    border-color: transparent;
    text-decoration: none !important;
}

.info-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--med-white);
    flex-shrink: 0;
}

.info-card--blue .info-card__icon {
    background: linear-gradient(135deg, #134f78, #1A6BA0);
}

.info-card--green .info-card__icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.info-card--red .info-card__icon {
    background: linear-gradient(135deg, #0D8B8B, #0a6e6e);
}

.info-card--blue:hover  { border-color: var(--med-blue); }
.info-card--green:hover { border-color: #25D366; }
.info-card--red:hover   { border-color: var(--med-teal); }

.info-card__text h6 {
    color: var(--med-text) !important;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 4px !important;
    font-family: 'Outfit', sans-serif;
}

.info-card__text p {
    color: var(--med-muted);
    font-size: 0.85rem;
    margin: 0 !important;
    line-height: 1.4;
}

/* ---------- SERVICES CARDS ---------- */
.service-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--med-border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: var(--med-white);
    box-shadow: 0 2px 10px rgba(26, 107, 160, 0.06);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26, 107, 160, 0.14);
}

.service-card .service-img-wrapper {
    position: relative;
    overflow: hidden;
}

.service-card .service-img-wrapper img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card:hover .service-img-wrapper img {
    transform: scale(1.08);
}

.service-card .service-img-wrapper .service-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(19, 79, 120, 0.82) 0%, transparent 100%);
}

.service-card .service-img-wrapper .service-overlay h5 {
    color: white !important;
    font-weight: 700;
    margin: 0;
    font-size: 1.1rem;
}

.service-card .service-body {
    padding: 20px;
}

.service-card .service-body p {
    color: var(--med-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* ---------- ONLINE CONSULTATION / BOOKING ---------- */
#online-consultation {
    background: linear-gradient(180deg, var(--med-sky) 0%, var(--med-sky-mid) 100%);
}

#online-consultation .display-4 {
    color: var(--med-blue) !important;
}

.booking-card {
    border-radius: 24px !important;
    overflow: hidden;
    border: 1px solid var(--med-border);
    box-shadow: 0 25px 60px rgba(26, 107, 160, 0.10) !important;
}

.booking-left {
    background: var(--med-white);
}

.booking-right {
    background: linear-gradient(180deg, var(--med-sky) 0%, #e2eff8 100%) !important;
    border-left: 1px solid var(--med-border);
}

.booking-right .form-control {
    border: 1px solid var(--med-border) !important;
    border-radius: 12px !important;
    padding: 14px 16px !important;
    font-size: 0.95rem;
    background: var(--med-white) !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    height: auto !important;
}

.booking-right .form-control:focus {
    border-color: var(--med-blue) !important;
    box-shadow: 0 0 0 3px rgba(26, 107, 160, 0.12) !important;
}

.booking-right textarea.form-control {
    min-height: 80px;
}

.booking-right .input-group-text {
    border-radius: 12px 0 0 12px !important;
    border: 1px solid var(--med-border) !important;
    border-right: none !important;
    background: var(--med-sky) !important;
    font-size: 0.95rem;
    color: var(--med-text);
    padding: 14px 12px !important;
}

.booking-right .input-group .form-control {
    border-radius: 0 12px 12px 0 !important;
}

/* Slot Buttons */
.slot-btn {
    border: 2px solid var(--med-border);
    border-radius: 12px !important;
    background: var(--med-white);
    color: var(--med-text);
    font-weight: 600;
    font-size: 13px !important;
    padding: 10px 4px !important;
    transition: all 0.25s ease;
    width: 100%;
    cursor: pointer;
}

.slot-btn:hover:not(:disabled) {
    border-color: var(--med-blue);
    color: var(--med-blue);
    background: var(--med-sky);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 107, 160, 0.14);
}

.slot-btn.active,
.slot-btn.selected {
    background: linear-gradient(135deg, var(--med-blue) 0%, var(--med-blue-dark) 100%) !important;
    color: white !important;
    border-color: var(--med-blue) !important;
    box-shadow: 0 4px 16px rgba(26, 107, 160, 0.3);
    transform: translateY(-2px);
}

.slot-btn:disabled,
.slot-btn.slot-past {
    background: #f4f7fb !important;
    color: #c0c5cc !important;
    border: 1px dashed #d1d5db !important;
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: line-through;
}

.slot-btn.slot-booked {
    background: #f0f7ff !important;
    color: #9bafc0 !important;
    border: 1px solid #c8ddf0 !important;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Book Appointment Button */
#book-now-btn {
    border-radius: 14px !important;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.3px;
    padding: 16px !important;
    background: linear-gradient(135deg, var(--med-blue) 0%, var(--med-blue-dark) 100%) !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(26, 107, 160, 0.3);
    transition: all 0.3s ease;
}

#book-now-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(26, 107, 160, 0.42);
}

#book-now-btn:disabled {
    background: #b8cfde !important;
    box-shadow: none;
    cursor: not-allowed;
}

@keyframes pulseBtn {
    0%   { box-shadow: 0 6px 20px rgba(26, 107, 160, 0.30); }
    50%  { box-shadow: 0 6px 30px rgba(26, 107, 160, 0.52); }
    100% { box-shadow: 0 6px 20px rgba(26, 107, 160, 0.30); }
}

#book-now-btn:not(:disabled) {
    animation: pulseBtn 2s ease-in-out infinite;
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
    padding: 5rem 0;
    background: #fafcff;
}

.faq-section h2 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: var(--med-blue) !important;
    margin-bottom: 2.5rem !important;
}

.faq-item {
    background: var(--med-white);
    border: 1px solid var(--med-border);
    border-radius: 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 107, 160, 0.05);
}

.faq-item:hover {
    border-color: var(--med-blue);
    box-shadow: 0 4px 16px rgba(26, 107, 160, 0.10);
}

.faq-item .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--med-white);
    border: none;
    width: 100%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--med-text);
    text-align: left;
    transition: background 0.2s ease;
}

.faq-item .faq-question:hover {
    background: var(--med-sky);
}

.faq-item .faq-question .faq-icon {
    font-size: 14px;
    color: var(--med-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-item .faq-answer p {
    color: var(--med-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* ---------- WHATSAPP BUTTON ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
    text-decoration: none !important;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    color: white !important;
    text-decoration: none !important;
}

@keyframes whatsappPulse {
    0%   { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
    50%  { box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); }
}

/* ---------- TESTIMONIALS ---------- */

/* --- Review Cards (Google Reviews) --- */
.review-card {
    background: var(--med-white);
    border: 1px solid var(--med-border);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 10px rgba(26, 107, 160, 0.05);
}

.review-card:hover {
    border-color: var(--med-blue);
    box-shadow: 0 12px 30px rgba(26, 107, 160, 0.10);
    transform: translateY(-4px);
}

/* Quote decoration */
.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 56px;
    line-height: 1;
    color: rgba(26, 107, 160, 0.08);
    font-family: Georgia, serif;
    pointer-events: none;
}

.review-card .review-stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-card .review-text {
    color: #4a5568;
    font-size: 0.92rem;
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 20px;
}

.review-card .review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--med-sky);
}

.review-card .review-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--med-blue);
}

.review-card .review-author h6 {
    color: var(--med-text) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    margin: 0 !important;
}

.review-card .review-author span {
    color: #94a3b8;
    font-size: 0.75rem;
}

.review-card .review-author span i {
    color: #4285f4;
}

/* --- Video Testimonials --- */
#patient {
    background: #fafcff !important;
}

#patient .testimonial-item,
#patient .owl-item,
#review .testimonial-item,
#review .owl-item {
    background: transparent !important;
    padding: 0 8px;
}

.testimonial-item iframe {
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(26, 107, 160, 0.08);
    background: var(--med-white);
}

/* Section headers */
#patient .display-4,
#review .display-4 {
    color: var(--med-blue) !important;
}

/* Carousel dots */
.owl-dots .owl-dot span {
    background: #c8ddf0 !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
}

.owl-dots .owl-dot.active span {
    background: var(--med-blue) !important;
    width: 24px !important;
    border-radius: 12px !important;
}

/* ---------- FOOTER POLISH ---------- */
.container-fluid.bg-primary.text-white {
    background: linear-gradient(160deg, #1A6BA0 0%, #134f78 40%, #0d3a5c 100%) !important;
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
}

/* Subtle pattern overlay */
.container-fluid.bg-primary.text-white::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0,0,0,0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Footer headings */
.container-fluid.bg-primary.text-white h1 {
    color: white !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px;
}

.container-fluid.bg-primary.text-white h4 {
    color: white !important;
    font-weight: 700 !important;
    font-size: 1.15rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(13, 139, 139, 0.5);
    display: inline-block;
}

/* Footer text */
.container-fluid.bg-primary.text-white p {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    line-height: 1.7;
}

.container-fluid.bg-primary.text-white p i {
    color: #7dd3e8 !important;
    width: 20px;
}

/* Quick Links */
.container-fluid.bg-primary.text-white a.text-white {
    color: rgba(255,255,255,0.75) !important;
    transition: all 0.3s ease;
    padding: 4px 0;
    font-size: 0.9rem;
}

.container-fluid.bg-primary.text-white a.text-white:hover {
    color: #7dd3e8 !important;
    padding-left: 6px;
    text-decoration: none;
}

/* Social icon buttons */
.container-fluid.bg-primary.text-white .btn-outline-light {
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-fluid.bg-primary.text-white .btn-outline-light:hover {
    background: var(--med-teal);
    border-color: var(--med-teal);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(13, 139, 139, 0.35);
}

/* Social Widgets in Footer */
.social-widget {
    background: rgba(255,255,255,0.07) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.10) !important;
    border-radius: 12px !important;
    padding: 12px !important;
    margin-bottom: 10px !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.social-widget:hover {
    background: rgba(255,255,255,0.12) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18) !important;
}

.social-widget .social-avatar {
    width: 36px !important;
    height: 36px !important;
    border: none !important;
    border-radius: 8px !important;
}

.social-widget .social-details h5 {
    color: white !important;
    font-size: 13px !important;
    font-weight: 600 !important;
}

.social-widget .social-details p {
    color: rgba(255,255,255,0.5) !important;
    font-size: 10px !important;
}

.social-widget .social-btn {
    padding: 6px 0 !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Footer bottom bar */
.container-fluid.bg-dark.text-white {
    background: #0d2235 !important;
}

/* ---------- FOOTER SOCIAL LINKS ---------- */
.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    transform: translateX(4px);
    text-decoration: none !important;
    color: white !important;
}

.footer-social-pill:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
    transform: translateY(-2px);
    text-decoration: none !important;
    color: white !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

/* ---------- TOPBAR / NAV ---------- */
/* Override the Bootstrap bg-primary topbar and mobile CTA bar */
.container-fluid.bg-primary.py-3 {
    background: linear-gradient(90deg, var(--med-blue) 0%, #155e8a 100%) !important;
}

/* Mobile bottom CTA – "Book Appointment" text */
.downmenu .col-xs-6:first-child a {
    color: var(--med-blue) !important;
}

/* Mobile bottom CTA – "Call Now" bar */
.downmenu .col-xs-6:last-child {
    background-color: var(--med-blue) !important;
}

/* Navbar active / hover link colour */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--med-blue) !important;
}

/* Headings colour override for Bootstrap theme */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    color: var(--med-blue) !important;
}

/* text-secondary used for sub-labels */
.text-secondary {
    color: var(--med-teal) !important;
}

/* Bootstrap primary link colour */
a {
    color: var(--med-blue);
}
a:hover {
    color: var(--med-blue-dark);
}

/* btn-primary */
.btn-primary {
    background: linear-gradient(135deg, var(--med-blue), var(--med-blue-dark)) !important;
    border-color: var(--med-blue) !important;
    color: #fff !important;
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--med-blue-dark), #0c3d5e) !important;
    box-shadow: 0 6px 18px rgba(26, 107, 160, 0.35) !important;
    transform: translateY(-1px);
}

/* spinner */
.spinner-border.text-primary {
    color: var(--med-blue) !important;
}

/* date input focus ring */
input[type="date"].border-primary {
    border-color: var(--med-blue) !important;
}
input[type="date"]:focus {
    border-color: var(--med-blue) !important;
    box-shadow: 0 0 0 3px rgba(26, 107, 160, 0.14) !important;
}

/* fa-check icons in about section */
.fa-check.text-primary {
    color: var(--med-teal) !important;
}

/* ---------- SECTION BACKGROUNDS ---------- */
#about {
    background: var(--med-white);
}

.container-fluid[style*="background-color: #f8f9fa"] {
    background-color: var(--med-sky) !important;
}

/* Services section bg */
.container-fluid[style*="background: #f8fafc"] {
    background: linear-gradient(180deg, var(--med-sky) 0%, #edf4fb 100%) !important;
}

/* ---------- RESPONSIVE ADJUSTMENTS ---------- */
@media (max-width: 768px) {
    .booking-card {
        border-radius: 16px !important;
    }

    .booking-right {
        border-left: none;
        border-top: 1px solid var(--med-border);
    }

    .slot-btn {
        font-size: 12px !important;
        padding: 8px 2px !important;
    }

    .faq-item .faq-question {
        font-size: 0.9rem;
        padding: 16px 18px;
    }

    .service-card .service-img-wrapper img {
        height: 180px;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}

/* ---------- CHECKOUT QR MODAL STYLES ---------- */
.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.checkout-modal-container {
    background: #ffffff;
    width: 90%;
    max-width: 520px;
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    text-align: center;
    transform: translateY(24px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif !important;
}

.checkout-modal-overlay.active .checkout-modal-container {
    transform: translateY(0) scale(1);
}

.checkout-modal-header {
    margin-bottom: 24px;
}

.checkout-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.checkout-modal-header p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

.checkout-details-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 24px;
    text-align: left;
}

.checkout-details-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}

.checkout-details-row:last-child {
    border-bottom: none;
}

.checkout-details-label {
    font-weight: 700;
    color: #64748b;
}

.checkout-details-value {
    font-weight: 800;
    color: #0f172a;
}

.checkout-instruction-box {
    margin-bottom: 24px;
}

.checkout-instruction-box p {
    font-size: 0.95rem;
    color: #1e293b;
    line-height: 1.5;
    margin: 0;
}

.checkout-qr-wrapper {
    background: #ffffff;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 16px;
    display: inline-block;
    margin-bottom: 24px;
    max-width: 220px;
    width: 100%;
    box-sizing: border-box;
}

.checkout-qr-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.checkout-qr-wrapper .no-qr-uploaded {
    font-size: 0.85rem;
    color: #ef4444;
    font-weight: 700;
    padding: 30px 0;
}

.btn-whatsapp-checkout {
    background: #25d366;
    color: #ffffff !important;
    font-size: 1.05rem;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 16px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    text-decoration: none !important;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-whatsapp-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
}

.btn-close-checkout {
    display: block;
    margin-top: 16px;
    color: #94a3b8 !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.btn-close-checkout:hover {
    color: #64748b !important;
}
