/* Booking Form Plugin - Villa Shems Moon Enhanced Simple Theme */
/* Clean, professional, minimalist design */

/* Root container - Clean white background */
#bfp-booking-form-root {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    padding: 60px 20px;
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
    --bfp-accent: #c18b76;
}

/* Payment Section Styles */
.payment-section {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.payment-option:hover {
    border-color: var(--bfp-accent);
    background: #fff8f5;
}

.payment-option input[type="radio"] {
    margin-right: 15px;
    width: 18px;
    height: 18px;
    accent-color: var(--bfp-accent);
}

.payment-option input[type="radio"]:checked + span {
    color: var(--bfp-accent);
    font-weight: 600;
}

.payment-option input[type="radio"]:checked ~ .payment-option {
    border-color: var(--bfp-accent);
    background: #fff8f5;
}

.skip-payment-btn {
    background: linear-gradient(135deg, var(--bfp-accent), #d4a574);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.skip-payment-btn:hover {
    background: linear-gradient(135deg, #b07a65, var(--bfp-accent));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(193, 139, 118, 0.3);
}

/* Remove background image blur effect */
#bfp-booking-form-root::before {
    display: none;
}

/* Intro container */
.bfp-intro-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 120px);
    padding: 40px 0;
}

/* Main card - White with thin golden-brown border */
.bfp-intro-card {
    background: #ffffff;
    border: 1px solid #d4a574;
    border-radius: 0;
    padding: 80px 60px;
    max-width: 950px;
    width: 100%;
    box-shadow: none;
    position: relative;
    opacity: 0;
    transform: translateY(18px);
    animation: bfpIntroEnter 520ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes bfpIntroEnter {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bfp-intro-card:hover {
    transform: translateY(-2px);
    transition: transform 220ms ease;
}

/* Logo section */
.bfp-intro-logo {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8e8e8;
}

.bfp-intro-logo img {
    width: auto;
    height: auto;
    max-width: 220px;
    max-height: 140px;
    border: none;
    box-shadow: none;
    margin-bottom: 0;
    object-fit: contain;
    border-radius: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.bfp-intro-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 2px;
    margin: 24px 0 8px 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.bfp-intro-subtitle {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-weight: 300;
    color: #666666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Content section */
.bfp-intro-content {
    color: #000000;
    line-height: 1.9;
    font-size: 16px;
    font-weight: 400;
}

.bfp-intro-content p {
    margin-bottom: 32px;
    color: #000000;
    font-size: 16px;
    line-height: 1.9;
}

/* Bullet points - standard black bullets */
.bfp-intro-bullets {
    list-style: disc;
    padding-left: 28px;
    margin: 36px 0;
}

.bfp-intro-bullets li {
    padding-left: 0;
    margin-bottom: 22px;
    position: relative;
    color: #000000;
    line-height: 1.9;
    list-style-position: outside;
    font-size: 15px;
}

.bfp-intro-bullets li::before {
    display: none;
}

.bfp-intro-bullets li strong {
    color: #000000;
    font-weight: 600;
}

.bfp-intro-bullets li a.bfp-inline-link {
    color: #0066cc;
    text-decoration: underline;
    border-bottom: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.bfp-intro-bullets li a.bfp-inline-link:hover {
    color: #0052a3;
}

/* Underline text */
.bfp-intro-underline {
    font-weight: 600;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

/* Steps list - numbered */
.bfp-intro-steps {
    margin: 28px 0 28px 28px;
    color: #000000;
    line-height: 1.9;
    list-style: decimal;
    padding-left: 28px;
}

.bfp-intro-steps li {
    margin-bottom: 16px;
    color: #000000;
    list-style-position: outside;
    font-size: 15px;
}

.bfp-intro-steps li strong {
    color: #000000;
    font-weight: 600;
}

/* Links section */
.bfp-intro-link-heading {
    margin-top: 36px;
    margin-bottom: 16px;
}

.bfp-intro-link-main {
    color: #0066cc;
    text-decoration: underline;
    font-weight: 500;
    font-size: 16px;
    font-style: normal;
    transition: all 0.3s ease;
}

.bfp-intro-link-main:hover {
    color: #0052a3;
}

.bfp-intro-links {
    list-style: disc;
    padding-left: 28px;
    margin: 20px 0;
    display: block;
}

.bfp-intro-links li {
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #0066cc;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    margin-bottom: 8px;
    list-style-position: outside;
    line-height: 1.8;
}

.bfp-intro-links li a {
    color: #0066cc;
    text-decoration: underline;
}

.bfp-intro-links li:hover {
    background: transparent;
    border: none;
    color: #0052a3;
}

.bfp-intro-links li:hover a {
    color: #0052a3;
}

/* Form */
.bfp-intro-form {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e8e8e8;
}

.bfp-intro-label {
    color: #000000;
    font-weight: 500;
    margin-bottom: 16px;
    font-size: 16px;
    display: block;
    letter-spacing: 0.3px;
}

.bfp-guests-input {
    width: 100%;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 0;
    color: #000000;
    font-size: 16px;
    font-family: inherit;
    margin-bottom: 32px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    line-height: 1.5;
}

.bfp-guests-input:focus {
    outline: none;
    border-color: #999999;
    box-shadow: none;
}

.bfp-guests-input::placeholder {
    color: #999999;
}

/* Checkboxes */
.bfp-checkbox-group {
    margin: 32px 0;
}

.bfp-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    cursor: pointer;
    color: #000000;
    transition: all 0.3s ease;
    font-size: 15px;
    line-height: 1.8;
}

.bfp-checkbox:hover {
    color: #000000;
}

.bfp-checkbox input[type="checkbox"] {
    margin-right: 14px;
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--bfp-accent);
    flex-shrink: 0;
}

/* Submit button - simple style */
.bfp-intro-btn {
    width: 100%;
    padding: 16px 30px;
    background: var(--bfp-accent);
    border: 1px solid var(--bfp-accent);
    border-radius: 0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    box-shadow: none;
    margin-top: 40px;
    line-height: 1.5;
}

.bfp-intro-btn:hover {
    filter: brightness(0.92);
    box-shadow: none;
    transform: none;
}

.bfp-intro-btn:active {
    transform: none;
    box-shadow: none;
}

/* Booking form container */
.bfp-container {
    max-width: 1200px;
    margin: 60px auto;
    background: #ffffff;
    border: 1px solid #d4a574;
    border-radius: 0;
    padding: 50px 50px;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.bfp-container h2 {
    color: #000000;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: none;
    padding-bottom: 0;
    line-height: 1.4;
}

/* Form fields */
.bfp-form-group {
    margin-bottom: 24px;
}

.bfp-form-group label {
    display: block;
    color: #000000;
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 15px;
}

.bfp-form-group input,
.bfp-form-group select {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 0;
    color: #000000;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.bfp-form-group input:focus,
.bfp-form-group select:focus {
    outline: none;
    border-color: #999999;
    box-shadow: none;
}

/* Form rows - horizontal layout */
.bfp-form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.bfp-form-row label {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    color: #000000;
    font-weight: 400;
    font-size: 15px;
}

.bfp-form-row label input,
.bfp-form-row label select {
    width: 100%;
    padding: 12px 16px;
    margin-top: 8px;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 0;
    color: #000000;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.bfp-form-row label input:focus,
.bfp-form-row label select:focus {
    outline: none;
    border-color: #999999;
    box-shadow: none;
}

/* Continue button section */
.continue-section {
    margin: 32px 0;
    text-align: left;
}

.continue-btn {
    padding: 14px 32px;
    background: var(--bfp-accent);
    border: 1px solid var(--bfp-accent);
    border-radius: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s ease;
    box-shadow: none;
}

.continue-btn:hover {
    filter: brightness(0.92);
    box-shadow: none;
    transform: none;
}

.continue-btn:active {
    transform: none;
    box-shadow: none;
}

/* Additional info section */
.additional-info {
    margin: 40px 0;
}

.additional-info label {
    display: block;
    color: #000000;
    font-weight: 400;
    margin-bottom: 12px;
    font-size: 15px;
}

.additional-info textarea {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 0;
    color: #000000;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
    box-sizing: border-box;
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.additional-info textarea:focus {
    outline: none;
    border-color: #999999;
    box-shadow: none;
}

.additional-info textarea::placeholder {
    color: #999999;
}

/* Services container */
.services-container {
    margin-top: 40px;
    max-width: 100%;
    overflow-x: auto;
}

.service-category {
    margin-bottom: 40px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 30px;
}

/* Category header with optional Menu button */
.service-category .category-header,
.datewise-menu-selection .menu-category .category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 12px;
}

#bfp-booking-form-root .service-category .category-header,
#bfp-booking-form-root .datewise-menu-selection .menu-category .category-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    color: #000000 !important;
    width: 100% !important;
    background: #ffffff !important;
    position: relative;
    z-index: 1;
}

.service-category .category-header span,
.datewise-menu-selection .menu-category .category-header span {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
}

#bfp-booking-form-root .service-category .category-header span,
#bfp-booking-form-root .datewise-menu-selection .menu-category .category-header span {
    display: inline-block !important;
    color: #000000 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#bfp-booking-form-root .category-header {
    opacity: 1 !important;
    visibility: visible !important;
    background: #ffffff !important;
    position: relative;
    z-index: 2;
}

#bfp-booking-form-root .category-header span {
    color: #111111 !important;
    font-weight: 700 !important;
}

#bfp-booking-form-root .category-header a.bfp-menu-btn,
#bfp-booking-form-root .category-header a.bfp-menu-btn:visited {
    color: #ffffff !important;
}

#bfp-booking-form-root #meal-selection .datewise-menu-selection .menu-category .category-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 12px !important;
    margin: 0 0 16px 0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
    background: #ffffff !important;
}

#bfp-booking-form-root #meal-selection .datewise-menu-selection .menu-category .category-header span {
    display: inline-block !important;
    color: #111111 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

.service-category .category-header span,
.datewise-menu-selection .menu-category .category-header span {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
}

#bfp-booking-form-root .category-header .bfp-menu-btn {
    margin-left: auto !important;
    flex: 0 0 auto;
}

/* Themed Menu button next to MEALS */
.bfp-menu-btn {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bfp-accent);
    color: #ffffff;
    border: 1px solid var(--bfp-accent);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.bfp-menu-btn:hover {
    filter: brightness(0.92);
}

.service-category h3 {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 12px;
}

/* Datewise menu selection */
.datewise-menu-selection {
    margin-top: 40px;
}

.datewise-menu-selection .menu-category {
    margin-bottom: 50px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    padding: 30px;
    overflow-x: auto;
}

/* Remove old h3 header styling in favor of .category-header */
.datewise-menu-selection .menu-category h3 {
    display: block;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.datewise-menu-selection .menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.datewise-menu-selection .menu-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    transition: box-shadow 250ms ease, transform 250ms ease, border-color 250ms ease;
}

.datewise-menu-selection .menu-item {
    scroll-margin-top: 90px;
}

.datewise-menu-selection .menu-item-body {
    overflow: hidden;
    max-height: 0px;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 420ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 250ms ease, transform 250ms ease;
    will-change: max-height, opacity, transform;
}

.datewise-menu-selection .menu-item.bfp-open .menu-item-body {
    opacity: 1;
    transform: translateY(0);
}

.datewise-menu-selection .menu-item.bfp-open {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.datewise-menu-selection .menu-item-header {
    display: grid;
    grid-template-columns: 1fr auto 24px;
    align-items: center;
    column-gap: 12px;
    cursor: pointer;
}


.datewise-menu-selection .menu-item-header .menu-item-name {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.datewise-menu-selection .menu-item-header .menu-item-name .bfp-menu-btn {
    flex: 0 0 auto;
}

.datewise-menu-selection .menu-item-name {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.datewise-menu-selection .menu-item-price {
    white-space: nowrap;
    font-weight: 600;
}

.datewise-menu-selection .menu-item-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    color: #666666;
    font-weight: 800;
    line-height: 1;
    background: rgba(0, 0, 0, 0.03);
}

.datewise-menu-selection .menu-item-toggle::before {
    content: '+';
}

.datewise-menu-selection .menu-item.bfp-open .menu-item-toggle::before {
    content: '−';
}

.datewise-menu-selection .menu-item-header:focus {
    outline: 2px solid #d4a574;
    outline-offset: 2px;
}

.datewise-menu-selection .menu-item-name {
    color: #000000;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

.datewise-menu-selection .menu-item-price {
    color: #000000;
    font-weight: 400;
    text-align: right;
    font-size: 15px;
}

.datewise-menu-selection .menu-dates-row {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 8px 0;
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
}

.datewise-menu-selection .date-input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 90px;
    scroll-snap-align: start;
}

.datewise-menu-selection .date-header {
    color: #000000;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    padding: 6px 10px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.4;
}

.datewise-menu-selection .menu-item-total {
    color: #000000;
    font-weight: 600;
    text-align: right;
    font-size: 15px;
    min-width: 110px;
}

.datewise-menu-selection .menu-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.datewise-menu-selection .menu-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.datewise-menu-selection .bfp-item-btn {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    color: #111111;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.datewise-menu-selection .bfp-item-btn:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.datewise-menu-selection .bfp-item-continue {
    background: var(--bfp-accent);
    border-color: var(--bfp-accent);
    color: #ffffff;
}

.datewise-menu-selection .bfp-item-continue:hover {
    filter: brightness(0.92);
}

.datewise-menu-selection .menu-item.bfp-collapsed {
    padding: 14px 18px;
}

.datewise-menu-selection input[type="number"] {
    width: 70px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 0;
    color: #000000;
    font-size: 14px;
    text-align: center;
    font-family: inherit;
    transition: all 0.2s ease;
}

.datewise-menu-selection input[type="number"]:focus {
    outline: none;
    border-color: #999999;
    box-shadow: none;
}

/* Grand total */
.grand-total-container {
    margin-top: 50px;
    padding: 30px;
    background: #f8f8f8;
    border: 1px solid #d4a574;
    border-radius: 0;
    text-align: center;
}

.grand-total-container h3 {
    color: #000000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: 0;
}

#grand-total {
    color: #000000;
    font-size: 32px;
    font-weight: 700;
}

/* Submit button */
.bfp-submit-btn {
    width: 100%;
    padding: 14px 30px;
    background: var(--bfp-accent);
    border: 1px solid var(--bfp-accent);
    border-radius: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s ease;
    box-shadow: none;
    margin-top: 40px;
}

.bfp-submit-btn:hover {
    filter: brightness(0.92);
    box-shadow: none;
    transform: none;
}

.bfp-submit-btn:active {
    transform: none;
    box-shadow: none;
}

.skip-to-payment {
    padding: 14px 32px;
    background: var(--bfp-accent);
    border: 1px solid var(--bfp-accent);
    border-radius: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.2s ease;
    box-shadow: none;
    width: 100%;
    max-width: 420px;
}

.skip-to-payment:hover {
    filter: brightness(0.92);
}

/* Responsive */
@media screen and (max-width: 768px) {
    #bfp-booking-form-root {
        padding: 30px 15px;
    }
    
    .bfp-intro-card {
        padding: 40px 30px;
    }
    
    .bfp-intro-logo {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .bfp-intro-logo img {
        max-width: 120px;
        max-height: 60px;
    }
    
    .bfp-intro-title {
        font-size: 28px;
    }
    
    .bfp-container {
        padding: 35px 25px;
        margin: 30px auto;
    }
    
    .bfp-container h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .bfp-form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .bfp-form-row label {
        min-width: 100%;
    }
    
    .continue-section {
        text-align: center;
    }
    
    .continue-btn {
        width: 100%;
    }
    
    .datewise-menu-selection .menu-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .datewise-menu-selection .menu-item-name,
    .datewise-menu-selection .menu-item-price,
    .datewise-menu-selection .menu-item-total {
        text-align: left;
    }
    
    .datewise-menu-selection .menu-dates-row {
        width: 100%;
        overflow-x: auto;
    }
    
    .quantity-inputs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .datewise-menu-selection .menu-dates-row,
    .datewise-menu-selection .menu-item {
        min-width: 600px;
    }
}

/* Extra small mobile devices */
@media screen and (max-width: 480px) {
    .bfp-intro-logo img {
        max-width: 100px;
        max-height: 50px;
    }
    
    .bfp-intro-logo {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
}
