/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

:root {
    --peb-primary: #D19F47;
    --peb-primary-dark: #A37930;
    --peb-primary-light: #fef5e8;
    --peb-primary-bg: #fff8f0;
    --peb-gray-50: #f9fafb;
    --peb-gray-100: #f3f4f6;
    --peb-gray-200: #e5e7eb;
    --peb-gray-400: #9ca3af;
    --peb-gray-600: #4b5563;
    --peb-gray-800: #1f2937;
    --peb-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
    --peb-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --peb-radius: 20px;
    --peb-border: #e5e7eb;
    --peb-dark: #1f2937;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.peb-container {
    max-width: 1300px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    padding: 0 15px;
}

.peb-form-wrapper {
    background: #ffffff;
    border-radius: var(--peb-radius);
    box-shadow: var(--peb-shadow);
    overflow: hidden;
}

/* Header Section */
.peb-form-header {
    background: linear-gradient(135deg, var(--peb-primary) 0%, var(--peb-primary-dark) 100%);
    padding: 48px 40px;
    color: white;
    text-align: center;
}

.peb-form-header h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    font-family: "Great Vibes", cursive;
    margin-bottom: 12px;
}

.peb-form-header p {
    opacity: 0.9;
    text-align: center;
    font-size: 18px;
}

/* Two Column Layout - Responsive */
.peb-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 45px;
}

/* LEFT AND RIGHT COLUMN */
.peb-left-col, .peb-right-col {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.peb-field-group {
    margin-bottom: 28px;
}

.peb-field-label {
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: var(--peb-gray-800);
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

.required {
    color: #ef4444;
}

/* Personal Information Fields */
.peb-personal-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.peb-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--peb-gray-200);
    border-radius: 14px;
    font-size: 14px;
    transition: all 0.2s;
    background: white;
}

.peb-input:focus {
    outline: none;
    border-color: var(--peb-primary);
    box-shadow: 0 0 0 3px rgba(209, 159, 71, 0.1);
}

/* Phone Input */
.phone-container .iti {
    width: 100%;
}

/* Calendar Styles - Responsive */
#peb-calendar {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--peb-gray-200);
    overflow-x: auto;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: var(--peb-gray-50);
    border-bottom: 1px solid var(--peb-gray-200);
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 30px;
    color: var(--peb-gray-600);
    transition: all 0.2s;
}

.calendar-nav:hover {
    background: var(--peb-primary-light);
    color: var(--peb-primary);
}

.calendar-month-year {
    font-weight: 600;
    font-size: 15px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--peb-gray-50);
    padding: 10px 0;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--peb-gray-600);
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    border-radius: 50%;
    margin: 5px;
    transition: all 0.2s;
    font-weight: 500;
}

.calendar-day.other-month {
    color: var(--peb-gray-200);
}

.calendar-day.available:hover {
    background: var(--peb-primary-light);
    color: var(--peb-primary);
    transform: scale(1.05);
}

.calendar-day.selected {
    background: var(--peb-primary);
    color: white;
}

.calendar-day.booked {
    background: #fef2f2;
    color: #dc2626;
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day.disabled {
    background: #f3f4f6;
    color: #d1d5db;
    cursor: not-allowed;
    opacity: 0.5;
}

.peb-legend {
    display: flex;
    gap: 20px;
    margin-top: 14px;
    font-size: 12px;
    color: var(--peb-gray-600);
}

.legend-available, .legend-booked {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.legend-available {
    background: var(--peb-primary);
}

.legend-booked {
    background: #fee2e2;
    border: 1px solid #dc2626;
}

/* Time Slots - Responsive */
.time-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.time-btn {
    padding: 10px 18px;
    border: 2px solid var(--peb-gray-200);
    background: white;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
    color: var(--peb-gray-600);
    flex: 0 0 auto;
}

.time-btn:hover {
    border-color: var(--peb-primary);
    background: var(--peb-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(209, 159, 71, 0.3);
}

.time-btn.active {
    background: var(--peb-primary);
    border-color: var(--peb-primary);
    color: white;
}

.other-time-wrapper {
    margin-top: 12px;
}

.other-time-toggle {
    background: none;
    border: 1px dashed var(--peb-gray-400);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    cursor: pointer;
    color: var(--peb-gray-600);
    transition: all 0.2s;
}

.other-time-toggle:hover {
    border-color: var(--peb-primary);
    color: var(--peb-primary);
}

.other-time-input {
    margin-top: 12px;
}

#custom-time {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--peb-gray-200);
    border-radius: 14px;
    font-size: 14px;
}

/* Custom Event Field */
.custom-event-field {
    margin-top: 14px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

#custom-event {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--peb-gray-200);
    border-radius: 14px;
    font-size: 14px;
}

/* Guest Counter - Responsive */
.peb-guests-container {
    background: var(--peb-primary-bg);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--peb-gray-200);
}

.peb-guests-value-display {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px dashed var(--peb-gray-200);
}

.guests-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--peb-primary);
    line-height: 1;
}

.guests-label {
    font-size: 16px;
    color: var(--peb-gray-600);
    margin-left: 5px;
    font-weight: 500;
}

.peb-guests-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.peb-guests-controls button {
    width: 48px;
    height: 48px;
    border: 2px solid var(--peb-gray-200);
    background: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--peb-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.peb-guests-controls button:hover {
    border-color: var(--peb-primary);
    background: var(--peb-primary);
    color: white;
    transform: scale(1.05);
}

#guests-input {
    width: 100px;
    padding: 12px;
    border: 2px solid var(--peb-gray-200);
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    background: white;
}

.peb-guests-slider-wrapper {
    padding: 10px 0;
}

#guests-slider {
    margin: 15px 0;
    height: 6px;
    background: var(--peb-gray-200);
    border-radius: 10px;
}

#guests-slider .ui-slider-range {
    background: var(--peb-primary);
    border-radius: 10px;
}

#guests-slider .ui-slider-handle {
    background: var(--peb-primary);
    border: 3px solid white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    top: -8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.peb-guests-marks {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding: 0 5px;
}

.peb-guests-marks span {
    font-size: 11px;
    color: var(--peb-gray-600);
    font-weight: 500;
    background: white;
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid var(--peb-gray-200);
}

/* Select Wrapper */
.peb-select-wrapper select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--peb-gray-200);
    border-radius: 14px;
    background: white;
    font-size: 14px;
    cursor: pointer;
}

/* Package Options */
.package-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-card {
    display: block;
    border: 2px solid var(--peb-gray-200);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.package-card:hover {
    border-color: var(--peb-primary);
    transform: translateX(5px);
}

.package-card input[type="radio"] {
    display: none;
}

.package-card .package-content {
    padding: 14px 18px;
}

.package-card:has(input:checked) {
    border-color: var(--peb-primary);
    background: var(--peb-primary-bg);
}

.package-name {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: var(--peb-gray-800);
    margin-bottom: 4px;
}

.package-price {
    display: inline-block;
    font-weight: 800;
    font-size: 18px;
    color: var(--peb-primary);
    margin-bottom: 6px;
}

.package-features {
    display: block;
    font-size: 11px;
    color: var(--peb-gray-600);
    line-height: 1.4;
}

/* Notes */
#notes {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--peb-gray-200);
    border-radius: 16px;
    min-height: 100px;
    resize: vertical;
    font-family: inherit;
    font-size: 14px;
}

/* Summary Section - Responsive */
.peb-summary {
    background: var(--peb-gray-50);
    border-radius: 20px;
    padding: 25px 30px;
    margin: 0 40px 32px 40px;
    border: 1px solid var(--peb-border);
}

.peb-summary-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px dashed var(--peb-gray-200);
}

.peb-summary-header svg {
    color: var(--peb-primary);
    width: 24px;
    height: 24px;
}

.peb-summary-header h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.peb-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 25px;
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.summary-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--peb-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--peb-dark);
    background: white;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid var(--peb-gray-200);
    word-break: break-word;
}

/* Submit Button */
.peb-submit {
    width: calc(100% - 80px);
    margin: 0 40px 40px 40px;
    padding: 16px 24px;
    background: var(--peb-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s;
}

.peb-submit:hover {
    background: var(--peb-primary-dark);
    transform: translateY(-2px);
}

/* Message */
#peb-message {
    margin: 0 40px 40px 40px;
    padding: 14px 20px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
}

#peb-message.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

#peb-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Loading Animation */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.peb-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* ============================================ */
/* RESPONSIVE BREAKPOINTS */
/* ============================================ */

/* Tablet */
@media (max-width: 992px) {
    .peb-two-column {
        gap: 35px;
        padding: 35px;
    }
    
    .peb-summary {
        margin: 0 35px 30px 35px;
        padding: 22px 25px;
    }
    
    .peb-submit {
        width: calc(100% - 70px);
        margin: 0 35px 35px 35px;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .peb-two-column {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
    }
    
    .peb-form-header {
        padding: 30px 20px;
    }
    
    .peb-form-header h2 {
        font-size: 32px;
    }
    
    .peb-form-header p {
        font-size: 14px;
    }
    
    .peb-summary {
        margin: 0 25px 25px 25px;
        padding: 20px;
    }
    
    .peb-summary-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .peb-submit {
        width: calc(100% - 50px);
        margin: 0 25px 25px 25px;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .time-buttons {
        gap: 8px;
    }
    
    .time-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .guests-number {
        font-size: 36px;
    }
    
    .peb-guests-controls button {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    
    #guests-input {
        width: 85px;
        font-size: 16px;
        padding: 10px;
    }
    
    .package-card .package-content {
        padding: 12px 15px;
    }
    
    .package-name {
        font-size: 14px;
    }
    
    .package-price {
        font-size: 16px;
    }
    
    .package-features {
        font-size: 10px;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .peb-container {
        padding: 0 10px;
    }
    
    .peb-two-column {
        padding: 20px;
        gap: 20px;
    }
    
    .peb-form-header {
        padding: 25px 15px;
    }
    
    .peb-form-header h2 {
        font-size: 28px;
    }
    
    .peb-field-label {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .peb-input, .peb-select-wrapper select, #custom-time, #custom-event, #notes {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .time-btn {
        padding: 7px 12px;
        font-size: 11px;
    }
    
    .other-time-toggle {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .peb-guests-container {
        padding: 15px;
    }
    
    .guests-number {
        font-size: 32px;
    }
    
    .guests-label {
        font-size: 14px;
    }
    
    .peb-guests-controls {
        gap: 12px;
        margin: 15px 0;
    }
    
    .peb-guests-controls button {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    #guests-input {
        width: 75px;
        font-size: 14px;
        padding: 8px;
    }
    
    .peb-guests-marks span {
        font-size: 9px;
        padding: 2px 6px;
    }
    
    .peb-summary {
        margin: 0 20px 20px 20px;
        padding: 15px;
    }
    
    .peb-summary-header h3 {
        font-size: 16px;
    }
    
    .summary-value {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .peb-submit {
        width: calc(100% - 40px);
        margin: 0 20px 20px 20px;
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .peb-submit svg {
        width: 18px;
        height: 18px;
    }
    
    #peb-message {
        margin: 0 20px 20px 20px;
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* Very Small Phones */
@media (max-width: 380px) {
    .peb-two-column {
        padding: 15px;
    }
    
    .peb-form-header h2 {
        font-size: 24px;
    }
    
    .time-btn {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .guests-number {
        font-size: 28px;
    }
    
    .peb-guests-controls button {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
    
    #guests-input {
        width: 65px;
        font-size: 13px;
    }
    
    .package-card .package-content {
        padding: 10px 12px;
    }
    
    .package-name {
        font-size: 13px;
    }
    
    .package-price {
        font-size: 15px;
    }
    
    .summary-value {
        font-size: 12px;
        padding: 5px 8px;
    }
}

/* ============================================ */
/* POPUP MODAL STYLES - PERFECTLY CENTERED */
/* ============================================ */
.peb-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    animation: pebFadeIn 0.3s ease;
}

@keyframes pebFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.peb-modal-content {
    position: relative;
    background: white;
    width: 100%;
    max-width: 700px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: pebSlideIn 0.4s ease;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes pebSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.peb-modal-content::-webkit-scrollbar {
    width: 5px;
}

.peb-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.peb-modal-content::-webkit-scrollbar-thumb {
    background: #D19F47;
    border-radius: 10px;
}

.peb-modal-header {
    background: linear-gradient(135deg, #D19F47 0%, #A37930 100%);
    padding: 30px 25px;
    text-align: center;
    color: white;
    position: relative;
}

.peb-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.peb-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.peb-modal-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.peb-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 8px 0;
    font-family: "Great Vibes", cursive;
    line-height: 1.3;
}

.peb-modal-header p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.peb-modal-buttons {
    padding: 30px 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    background: #f8fafc;
}

.peb-modal-btn {
    flex: 1;
    min-width: 180px;
    padding: 20px 15px;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.peb-modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.peb-modal-btn .btn-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}

.peb-modal-btn .btn-text {
    font-size: 18px;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

.peb-modal-btn .btn-desc {
    font-size: 12px;
    color: #64748b;
    display: block;
}

.booking-btn {
    border: 2px solid #D19F47;
}

.booking-btn .btn-text {
    color: #D19F47;
}

.booking-btn:hover {
    background: #D19F47;
}

.booking-btn:hover .btn-text,
.booking-btn:hover .btn-desc {
    color: white;
}

.booking-btn:hover .btn-icon {
    filter: brightness(0) invert(1);
}

.appointment-btn {
    border: 2px solid #3b82f6;
}

.appointment-btn .btn-text {
    color: #3b82f6;
}

.appointment-btn:hover {
    background: #3b82f6;
}

.appointment-btn:hover .btn-text,
.appointment-btn:hover .btn-desc {
    color: white;
}

/* Popup Responsive */
@media (max-width: 768px) {
    .peb-modal-content {
        width: 85%;
        max-width: 450px;
        max-height: 85vh;
    }
    
    .peb-modal-header {
        padding: 25px 20px;
    }
    
    .peb-modal-icon {
        font-size: 42px;
    }
    
    .peb-modal-header h2 {
        font-size: 22px;
    }
    
    .peb-modal-buttons {
        padding: 25px 20px;
        gap: 12px;
    }
    
    .peb-modal-btn {
        min-width: 150px;
        padding: 18px 12px;
    }
    
    .peb-modal-btn .btn-icon {
        font-size: 36px;
    }
    
    .peb-modal-btn .btn-text {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .peb-modal-content {
        width: 92%;
        max-width: 380px;
        max-height: 80vh;
        border-radius: 20px;
    }
    
    .peb-modal-buttons {
        flex-direction: column;
        padding: 22px 18px;
        gap: 12px;
    }
    
    .peb-modal-btn {
        min-width: auto;
        width: 100%;
        padding: 16px 12px;
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    
    .peb-modal-btn .btn-icon {
        font-size: 32px;
        margin-bottom: 0;
    }
    
    .peb-modal-btn .btn-text {
        font-size: 16px;
        margin-bottom: 2px;
    }
    
    .peb-modal-btn .btn-desc {
        font-size: 11px;
    }
    
    .btn-content {
        flex: 1;
    }
}

@media (max-width: 380px) {
    .peb-modal-content {
        width: 95%;
        max-width: 340px;
    }
    
    .peb-modal-header {
        padding: 18px 15px;
    }
    
    .peb-modal-icon {
        font-size: 34px;
    }
    
    .peb-modal-header h2 {
        font-size: 18px;
    }
    
    .peb-modal-buttons {
        padding: 18px 15px;
    }
    
    .peb-modal-btn {
        padding: 14px 10px;
    }
    
    .peb-modal-btn .btn-icon {
        font-size: 28px;
    }
}

/* Landscape mode */
@media (max-width: 900px) and (orientation: landscape) {
    .peb-modal-content {
        max-height: 90vh;
        width: 80%;
        max-width: 500px;
    }
    
    .peb-modal-header {
        padding: 18px 20px;
    }
    
    .peb-modal-icon {
        font-size: 32px;
    }
    
    .peb-modal-buttons {
        flex-direction: row;
        padding: 18px 20px;
    }
    
    .peb-modal-btn {
        padding: 12px 10px;
    }
}

/* Desktop Large Screens */
@media (min-width: 1200px) {
    .peb-modal-content {
        max-width: 550px;
    }
}

/* Body scroll lock */
body.peb-modal-open {
    overflow: hidden;
}

/* ============================================ */
/* PERSISTENT BUTTONS STYLES */
/* ============================================ */
.peb-persistent-buttons {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 99999;
    animation: pebSlideUp 0.4s ease;
}

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

.peb-persistent-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
    padding: 15px 20px;
    background: white;
    border-radius: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--peb-gray-200);
}

.peb-persistent-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: white;
}

.peb-persistent-btn .btn-icon {
    font-size: 24px;
}

.peb-persistent-booking {
    border: 2px solid #D19F47;
    color: #D19F47;
}

.peb-persistent-booking:hover {
    background: #D19F47;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(209, 159, 71, 0.3);
}

.peb-persistent-appointment {
    border: 2px solid #3b82f6;
    color: #3b82f6;
}

.peb-persistent-appointment:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.peb-persistent-btn:hover .btn-icon {
    filter: brightness(0) invert(1);
}

/* Mobile responsive for persistent buttons */
@media (max-width: 600px) {
    .peb-persistent-container {
        margin: 0 15px;
        padding: 12px 15px;
        gap: 12px;
        border-radius: 50px;
    }
    
    .peb-persistent-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .peb-persistent-btn .btn-icon {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .peb-persistent-container {
        margin: 0 10px;
        padding: 10px 12px;
        gap: 8px;
    }
    
    .peb-persistent-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .peb-persistent-btn .btn-text {
        font-size: 11px;
    }
    
    .peb-persistent-btn .btn-icon {
        font-size: 16px;
    }
}