/* program-details.css - scoped under .program-page to avoid global collisions */

.program-page {
    font-family: system-ui, -apple-system, "Inter", "Helvetica Neue", Arial, sans-serif;
    color: #0b2f23; /* dark */
}

/* HERO */
.program-hero {
    background-size: cover;
    background-position: center center;
    height: 520px;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.program-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5,28,20,0.10) 10%, rgba(3,18,14,0.65) 70%);
    z-index: 1;
}
.program-hero__content { position: relative; z-index: 2; padding-bottom: 36px; color: #fff; }
.program-hero__meta .badge-ghost {
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 6px 10px;
    margin-right: 6px;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
}
.program-hero__title {
    font-size: 2.1rem;
    line-height: 1.04;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.program-hero__tagline {
    opacity: 0.92;
    margin-bottom: 0;
    margin-top: 8px;
}
.hero-pill {
    background: rgba(255,255,255,0.08);
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
}
.btn-cta {
    background: #0f8c5a;
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
}
.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    color: #fff;
}
.hero-right-small .hero-thumb {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* MAIN layout */
.program-main { padding-top: 36px; padding-bottom: 80px; }
.card { border-radius: 12px; box-shadow: 0 8px 20px rgba(12, 40, 30, 0.06); border: none; }
.card .card-body { padding: 22px; }
.card-heading { margin: 0; font-size: 1.05rem; font-weight: 700; color: #0f8c5a; }

/* outcome badges */
.outcome-badge {
    background: #fff;
    border: 1px solid #e9efe9;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 600;
    color: #0b2f23;
    box-shadow: 0 2px 8px rgba(13, 45, 33, 0.03);
}

/* small pills */
.pill {
    background: #f7fbf8;
    border: 1px solid #e6f3ea;
    color: #0e5b3f;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
}

/* experts */
.expert-photo {
    width: 84px;
    height: 84px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid rgba(15,140,90,0.06);
}

/* venue chips */
.venue-chip {
    background: rgba(15,140,90,0.06);
    color: #0d6b48;
    padding: 6px 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* booking panel */
.booking-card { border-radius: 14px; padding: 0; overflow: hidden; }
.booking-card .card-body { padding: 18px; }
.package-compact { border: 1px solid #eef7f2; border-radius: 8px; padding: 10px; background: #fff; }
.package-compact.selected { border-color: #0f8c5a; box-shadow: 0 6px 18px rgba(15,140,90,0.06); }
.booking-card .btn { font-weight: 600; }

/* sticky mobile bottom */
.fixed-bottom-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eef2ef;
    padding: 12px 16px;
    z-index: 2200;
}

/* subtle utility */
.text-success { color: #0f8c5a !important; }

/* small states */
.status-badge.approved { color: #0f8c5a; font-weight:700; }
.status-badge.in_review { color: #b47b00; font-weight:700; }
.status-badge.rejected { color: #c02a2a; font-weight:700; }

/* responsive tweaks */
@media (max-width: 991px) {
    .program-hero { height: 420px; }
    .hero-right-small { display:none; }
    .program-main { padding: 28px 16px; }
}

/* add in program-details.css or page styles */
.sold-out-badge { font-size: 0.75rem; padding: .35rem .5rem; }
.sold-note { font-size: 0.85rem; }

.package-card.border-success {
    box-shadow: 0 0 12px rgba(0, 128, 0, 0.25);
    border-width: 2px !important;
}

/* Footer Background */
.lifed-footer {
    background: linear-gradient(135deg, #0f2f2f, #132f2f 60%, #0c2424);
    color: #fff;
}

/* Brand Styling */
.lifed-brand {
    letter-spacing: 2px;
    color: #2fd4a3;
}

/* Links */
.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #d8f5ec;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #2fd4a3;
    padding-left: 5px;
}

/* Accent Color */
.lifed-accent {
    color: #2fd4a3;
}

/* Social Icons */
.lifed-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.lifed-social:hover {
    background: #2fd4a3;
    color: #0f2f2f;
    transform: translateY(-3px);
}

/* Bottom Link */
.lifed-link {
    color: #2fd4a3;
    text-decoration: none;
}

.lifed-link:hover {
    text-decoration: underline;
}

.footer-contact-link {
    color: #d8f5ec;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-contact-link:hover {
    color: #2fd4a3;
}

.footer-muted {
    color: rgba(255, 255, 255, 0.75);
}


/* =========================================
   LIFED PROGRAM DETAILS – ACCORDION DESIGN
========================================== */

.lifed-accordion .accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.lifed-accordion .accordion-button {
    background: #ffffff;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 24px;
    color: #1b1b1b;
    border-radius: 14px !important;
    box-shadow: none;
}

.lifed-accordion .accordion-button:not(.collapsed) {
    background: #f5faf7;
    color: #0f8c5a;
    box-shadow: none;
}

.lifed-accordion .accordion-button:focus {
    box-shadow: none;
}

.lifed-accordion .accordion-body {
    padding: 24px;
    background: #ffffff;
}

.lifed-section-card {
    border-radius: 16px;
    border: 1px solid #eef2f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.lifed-section-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #0f8c5a;
}

.lifed-soft-badge {
    background: #f4f9f6;
    border: 1px solid #dbeee4;
    color: #0f8c5a;
    padding: 6px 14px;
    border-radius: 40px;
    font-weight: 500;
}


/* About Program Text */
.program-description-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    white-space: pre-line;
}

/* Improved card feel */
.lifed-section-card {
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    background: #ffffff;
    overflow: hidden;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .lifed-section-card .card-body {
        padding: 28px 22px !important;
    }
}



/* Outcomes Layout */
.lifed-outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f8fbf9;
    border: 1px solid #e4efe9;
    padding: 16px 18px;
    border-radius: 14px;
    transition: all 0.25s ease;
}

.lifed-outcome-item:hover {
    background: #f1f8f4;
    border-color: #cfe6da;
}

.lifed-outcome-dot {
    width: 10px;
    height: 10px;
    background: #0f8c5a;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.lifed-outcome-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Mobile spacing refinement */
@media (max-width: 768px) {
    .lifed-outcome-item {
        padding: 14px 16px;
    }
}

/* Overview Grid */
.lifed-overview-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.lifed-overview-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef2f0;
    gap: 40px;
}

.lifed-overview-row:last-child {
    border-bottom: none;
}

.lifed-overview-label {
    font-weight: 600;
    color: #0f8c5a;
    min-width: 190px;
    flex-shrink: 0;
}

.lifed-overview-value {
    color: #444;
    flex: 1;
    line-height: 1.7;
    text-align: left; /* FIXED */
}

/* For short inline fields (optional refinement) */
.lifed-overview-row.inline-value .lifed-overview-value {
    text-align: right;
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .lifed-overview-row {
        flex-direction: column;
        gap: 8px;
    }

    .lifed-overview-label {
        min-width: auto;
    }

    .lifed-overview-value {
        text-align: left;
    }
}

/* Experiences pill style */
.lifed-pill {
    background: #f6faf8;
    border: 1px solid #dbeee4;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 500;
    color: #2b2b2b;
    transition: all 0.25s ease;
}

.lifed-pill:hover {
    background: #edf7f2;
    border-color: #cfe6da;
}

.lifed-accordion .accordion-item {
    border: 1px solid #eef2f0;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

.lifed-accordion .accordion-button {
    background: #ffffff;
    font-weight: 600;
    padding: 20px 24px;
    box-shadow: none;
}

.lifed-accordion .accordion-button:not(.collapsed) {
    background: #f5faf7;
    color: #0f8c5a;
}

.lifed-accordion .accordion-body {
    background: #ffffff;
    padding: 24px;
}

.lifed-accordion .accordion-button::after {
    background-size: 1.1rem;
    transition: transform 0.25s ease;
}

.lifed-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* Wellness note box */
.lifed-note-box {
    background: #f7fbf9;
    border: 1px solid #e0efe8;
    border-radius: 14px;
    padding: 20px;
}

.lifed-note-title {
    font-weight: 600;
    color: #0f8c5a;
    margin-bottom: 8px;
}

.lifed-note-text {
    color: #444;
    line-height: 1.7;
    white-space: pre-line;
}

/* Elegant content box for long text sections */
.lifed-content-box {
    background: #f8fbf9;
    border: 1px solid #e4efe9;
    border-radius: 16px;
    padding: 24px;
}

.lifed-content-text {
   /* white-space: pre-line;*/
    line-height: 1.8;
    color: #444;
    font-size: 15.5px;
}

/*-----*/

.lifed-schedule-list {
    border: 1px solid #e6f0eb;
    border-radius: 16px;
    overflow: hidden;
}

.lifed-schedule-header,
.lifed-schedule-row {
    display: grid;
    grid-template-columns: 140px 1fr 120px;
    gap: 24px;
    padding: 22px 24px;
    align-items: start;
}

.lifed-schedule-header {
    background: #f3faf6;
    font-weight: 600;
    color: #0f8c5a;
    border-bottom: 1px solid #e6f0eb;
}

.lifed-schedule-row {
    border-bottom: 1px solid #edf3ef;
}

.lifed-schedule-row:last-child {
    border-bottom: none;
}

.lifed-schedule-time {
    font-weight: 600;
    white-space: nowrap;
}

.lifed-schedule-activity {
   /* white-space: pre-line;*/
    line-height: 1.7;
    color: #333;
}

.lifed-schedule-duration {
    text-align: right;
    white-space: nowrap;
    font-weight: 500;
}

.lifed-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.lifed-pillar-card {
    background: #f7fbf9;
    border: 1px solid #e3efe9;
    border-radius: 16px;
    padding: 18px 20px;
    font-weight: 500;
    line-height: 1.6;
    color: #333;
    transition: all 0.25s ease;
}

.lifed-pillar-card:hover {
    background: #eef7f2;
    border-color: #d5eae1;
}

.lifed-sessions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lifed-session-card {
    border: 1px solid #e6f0eb;
    border-radius: 18px;
    padding: 22px 24px;
    background: #ffffff;
    transition: all 0.25s ease;
}

.lifed-session-card:hover {
    border-color: #d6ebe2;
    background: #f9fcfb;
}

.lifed-session-header {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #0f8c5a;
}

.lifed-session-benefits {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.lifed-session-description {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    white-space: normal; /* Important: no pre-line unless truly needed */
}

.lifed-venue-block {
    margin-bottom: 30px;
}

.lifed-venue-title {
    font-size: 18px;
    font-weight: 600;
    color: #0f8c5a;
    margin-bottom: 6px;
}

.lifed-venue-address {
    font-size: 14px;
    color: #666;
    margin-bottom: 14px;
}

.lifed-venue-description {
    white-space: pre-line;
    line-height: 1.7;
    color: #333;
    margin-bottom: 18px;
}

.lifed-venue-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px 20px;
    font-size: 14px;
    color: #444;
}

.lifed-subsection-title {
    font-weight: 600;
    margin-bottom: 14px;
    color: #0f8c5a;
}

.lifed-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.lifed-highlight-pill {
    background: #f7fbf9;
    border: 1px solid #e3efe9;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 14px;
    color: #333;
}

.lifed-transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px 30px;
}

.lifed-transport-item {
    background: #f7fbf9;
    border: 1px solid #e3efe9;
    border-radius: 16px;
    padding: 18px 20px;
}

.lifed-transport-label {
    font-size: 13px;
    font-weight: 600;
    color: #0f8c5a;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.lifed-transport-value {
    font-size: 15px;
    color: #333;
}

.lifed-safety-box {
    background: #f7fbf9;
    border: 1px solid #e3efe9;
    border-radius: 16px;
    padding: 22px 24px;
    white-space: pre-line;
    line-height: 1.75;
    color: #333;
    font-size: 15px;
}

.lifed-experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.lifed-expert-card {
    border: 1px solid #e6f0eb;
    border-radius: 20px;
    padding: 24px;
    background: #ffffff;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lifed-expert-card:hover {
    border-color: #d5eae1;
    background: #f9fcfb;
}

.lifed-expert-header {
    display: flex;
    align-items: center;
    gap: 18px;
}

.lifed-expert-photo {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #e6f0eb;
}

.lifed-expert-name {
    font-size: 17px;
    font-weight: 600;
    color: #0f8c5a;
}

.lifed-expert-role {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.lifed-expert-qualifications {
    font-size: 14px;
    margin-bottom: 8px;
    color: #444;
}

.lifed-expert-bio {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

.lifed-preline {
    white-space: pre-line;
}

.lifed-assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.lifed-assessment-item {
    background: #f7fbf9;
    border: 1px solid #e3efe9;
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 14.5px;
    color: #333;
    transition: all 0.2s ease;
}

.lifed-assessment-item:hover {
    background: #eef7f2;
    border-color: #d6ebe2;
}

.lifed-assessment-note {
    font-size: 14px;
    color: #666;
    padding: 14px 18px;
    background: #f9fcfb;
    border-radius: 12px;
    border: 1px solid #e6f0eb;
}

.lifed-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.lifed-testimonial-card {
    background: #ffffff;
    border: 1px solid #e6f0eb;
    border-radius: 20px;
    padding: 26px;
    position: relative;
    transition: all 0.25s ease;
}

.lifed-testimonial-card:hover {
    border-color: #d6ebe2;
    background: #f9fcfb;
}

.lifed-testimonial-quote {
    font-size: 15px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 18px;
}

.lifed-testimonial-footer {
    border-top: 1px solid #edf3ef;
    padding-top: 14px;
}

.lifed-testimonial-name {
    font-weight: 600;
    color: #0f8c5a;
    font-size: 14.5px;
}

.lifed-testimonial-city {
    font-size: 13px;
    color: #777;
}

.lifed-preline {
    white-space: pre-line;
}

.lifed-unique-box {
    background: linear-gradient(135deg, #f7fbf9, #eef7f2);
    border: 1px solid #e3efe9;
    border-radius: 20px;
    padding: 28px 30px;
    font-size: 15.5px;
    line-height: 1.8;
    color: #333;
    position: relative;
}

.lifed-unique-box::before {
    content: "✦";
    position: absolute;
    top: -12px;
    left: 20px;
    background: #ffffff;
    color: #0f8c5a;
    font-size: 20px;
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid #e3efe9;
}

.lifed-preline {
    white-space: pre-line;
}

/*--- ROOM SECTION ---*/

/* ===== Rooms Section Wrapper ===== */
#rooms-section h5 {
    font-size: 20px;
    font-weight: 600;
    color: #0f8c5a;
}

#rooms-section p {
    line-height: 1.7;
}

/* ===== Room Card Styling ===== */
#rooms-section .card {
    border: 1px solid #e6f0eb;
    border-radius: 20px;
    transition: all 0.25s ease;
}

#rooms-section .card:hover {
    border-color: #d6ebe2;
    background: #f9fcfb;
}

/* ===== Room Title ===== */
#rooms-section h6 {
    font-size: 16px;
}

/* ===== Capacity + Availability Text ===== */
#rooms-section .small.text-muted {
    font-size: 13px;
}

/* ===== Price Styling ===== */
#rooms-section .text-success {
    font-size: 18px;
    font-weight: 700;
    color: #0f8c5a !important;
}

/* ===== Quantity Input Group ===== */
#rooms-section .input-group {
    border-radius: 12px;
    overflow: hidden;
}

#rooms-section .room-qty {
    border-left: 0;
    border-right: 0;
    font-weight: 600;
}

/* ===== + / - Buttons ===== */
#rooms-section .btn-decrease-room,
#rooms-section .btn-increase-room {
    border-color: #d6ebe2;
    background: #ffffff;
    transition: all 0.2s ease;
}

#rooms-section .btn-decrease-room:hover,
#rooms-section .btn-increase-room:hover {
    background: #eef7f2;
    border-color: #cce3d9;
}

/* ===== Line Total ===== */
#rooms-section small.text-muted {
    font-size: 13px;
}

#rooms-section small.text-muted span {
    font-weight: 600;
    color: #333;
}


/*--- PRICING SECTION ---*/

/* ===== Pricing Section Title ===== */
#packages-section h5 {
    font-size: 20px;
    font-weight: 600;
    color: #0f8c5a;
}

/* ===== Package Card Base ===== */
#packages-section .package-card {
    border: 1px solid #e6f0eb;
    border-radius: 22px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
#packages-section .package-card:hover {
    border-color: #cfe8df;
    background: #f9fcfb;
    transform: translateY(-2px);
}

/* ===== Selected State (JS will add class if used) ===== */
#packages-section .package-card.selected,
#packages-section .package-card.border-success {
    border-color: #0f8c5a !important;
    box-shadow: 0 8px 20px rgba(15, 140, 90, 0.08);
}

/* ===== Package Title ===== */
#packages-section h6 {
    font-size: 16px;
}

/* ===== Inclusion Text ===== */
#packages-section .small.text-muted {
    font-size: 14px;
    line-height: 1.7;
}

/* ===== Price Styling ===== */
#packages-section .text-success {
    font-size: 18px;
    font-weight: 700;
    color: #0f8c5a !important;
}

/* ===== Select Button ===== */
#packages-section .select-package {
    border-radius: 30px;
    padding: 6px 18px;
    transition: all 0.2s ease;
}

#packages-section .select-package:hover {
    background: #0f8c5a;
    color: #fff;
    border-color: #0f8c5a;
}

/* ===== Selected Badge Styling ===== */
#packages-section .package-selected-badge {
    border-radius: 20px;
    font-size: 12px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

/*--- BOOKING PANEL ---*/

/* ===== Booking Panel Card ===== */
#booking-panel .card {
    border: 1px solid #e6f0eb;
    border-radius: 22px;
    overflow: hidden;
}

/* Subtle elevation */
#booking-panel .card {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

/* Section title */
#booking-panel h6 {
    font-size: 16px;
    color: #0f8c5a;
}

/* Program title */
#booking-panel .text-muted.small.mb-3 {
    font-size: 13px;
    line-height: 1.5;
}

/* Labels */
#booking-panel .small.text-muted {
    font-size: 12.5px;
    letter-spacing: 0.3px;
}

/* Input & Select */
#booking-panel input,
#booking-panel select {
    border-radius: 12px;
    border: 1px solid #e3efe9;
    font-size: 14px;
}

#booking-panel input:focus,
#booking-panel select:focus {
    border-color: #0f8c5a;
    box-shadow: 0 0 0 0.15rem rgba(15, 140, 90, 0.12);
}

/* Subtotals */
#package-subtotal,
#rooms-subtotal {
    font-size: 14px;
}

/* Total highlight */
#cart-total {
    font-weight: 700;
    font-size: 22px !important;
    color: #0f8c5a !important;
}

/* Pay now highlight */
#pay-now-amount {
    font-size: 20px !important;
    font-weight: 700;
    color: #0f8c5a !important;
}

/* Buttons */
#book-now-btn {
    border-radius: 30px;
    padding: 10px;
    font-weight: 600;
    transition: all 0.2s ease;
}

#book-now-btn:hover {
    background-color: #0d7a4e;
}

#add-to-cart-btn {
    border-radius: 30px;
    padding: 10px;
    font-weight: 600;
}

#add-to-cart-btn:hover {
    background: #eef7f2;
}

/*--- mobile booking tab ---*/
/* ===== Mobile Sticky Bar ===== */
.fixed-bottom {
    border-top: 1px solid #e6f0eb !important;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.06) !important;
}

/* Total text */
#mobile-cart-total {
    font-size: 20px !important;
    color: #0f8c5a !important;
}

/* Mobile Buttons */
#mobile-add-cart,
#mobile-book {
    border-radius: 30px;
    padding: 8px 16px;
    font-weight: 600;
}

#mobile-book:hover {
    background-color: #0d7a4e;
}
