/**
 * Beaver Station Rental - Public Styles
 *
 * @package    Beaver_Station_Rental
 * @subpackage Beaver_Station_Rental/public/assets/css
 * @since      1.0.0
 */

/* ========================================
   Rental Flow Container
   ======================================== */

.bsr-rental-flow,
.bsr-rental-flow-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ========================================
   Progress Steps
   ======================================== */

.bsr-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 20px;
}

.bsr-progress-steps,
.bsr-progress-bar {
    display: flex;
    justify-content: space-between;
    padding: 0;
    list-style: none;
    position: relative;
    flex: 1;
}

.bsr-progress-steps::before,
.bsr-progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.bsr-progress-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.bsr-progress-step-circle,
.bsr-progress-step .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bsr-progress-step.active .bsr-progress-step-circle,
.bsr-progress-step.active .step-number {
    background: #b9975b;
    border-color: #b9975b;
    color: #fff;
}

.bsr-progress-step.completed .bsr-progress-step-circle,
.bsr-progress-step.completed .step-number {
    background: #4caf50;
    border-color: #4caf50;
    color: #fff;
}

.bsr-progress-step-label,
.bsr-progress-step .step-label {
    font-size: 13px;
    color: #666;
    display: block;
}

.bsr-progress-step.active .bsr-progress-step-label,
.bsr-progress-step.active .step-label {
    color: #b9975b;
    font-weight: 600;
}

/* Start Over Button */
.bsr-start-over {
    flex-shrink: 0;
    align-self: center;
}

.bsr-start-over-link {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.bsr-start-over-link:hover {
    border-color: #d32f2f;
    color: #d32f2f;
    background: #ffebee;
}

/* ========================================
   Step Content Area
   ======================================== */

.bsr-step-content {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.bsr-step,
.bsr-step-1,
.bsr-step-2,
.bsr-step-3,
.bsr-step-4,
.bsr-step-5,
.bsr-step-6 {
    width: 100%;
}

.bsr-step h2,
.bsr-step-title {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 10px;
    color: #333;
}

.bsr-step p,
.bsr-step-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.bsr-rental-form {
    width: 100%;
}

/* ========================================
   Step 1: Choose Type
   ======================================== */

.bsr-rental-type-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.bsr-rental-type-card {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    display: block;
    position: relative;
}

.bsr-rental-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.bsr-rental-type-card:hover {
    border-color: #b9975b;
    box-shadow: 0 4px 12px rgba(185, 151, 91, 0.2);
    transform: translateY(-2px);
}

.bsr-rental-type-card input[type="radio"]:checked + .card-content {
    background: #fef9f0;
}

.bsr-rental-type-card input[type="radio"]:checked ~ .card-content,
.bsr-rental-type-card:has(input[type="radio"]:checked) {
    border-color: #b9975b;
    background: #fef9f0;
}

.card-content {
    pointer-events: none;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.bsr-rental-type-card h3 {
    font-size: 24px;
    margin: 15px 0 10px 0;
    color: #333;
}

.bsr-rental-type-card p {
    color: #666;
    line-height: 1.6;
    margin: 10px 0;
}

.pricing-note {
    font-size: 20px;
    color: #b9975b !important;
    font-weight: 600;
    margin-top: 20px !important;
}

.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.features li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
}

/* ========================================
   Step 2: Event Details Form
   ======================================== */

.bsr-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.bsr-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
}

.bsr-form-row .bsr-form-field {
    margin-bottom: 0;
}

.bsr-field-half {
    flex: 1 1 calc(50% - 8px);
    min-width: 180px;
}

.bsr-field-quarter {
    flex: 1 1 calc(25% - 12px);
    min-width: 100px;
}

@media (max-width: 600px) {
    .bsr-field-half,
    .bsr-field-quarter {
        flex: 1 1 100%;
    }
}

.bsr-form-field {
    margin-bottom: 20px;
}

.bsr-form-field.full-width {
    grid-column: 1 / -1;
}

.bsr-form-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.bsr-form-field label .required {
    color: #d32f2f;
}

.bsr-form-field input[type="text"],
.bsr-form-field input[type="email"],
.bsr-form-field input[type="tel"],
.bsr-form-field input[type="date"],
.bsr-form-field input[type="time"],
.bsr-form-field input[type="number"],
.bsr-form-field select,
.bsr-form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.2s ease;
}

.bsr-form-field input:focus,
.bsr-form-field select:focus,
.bsr-form-field textarea:focus {
    outline: none;
    border-color: #b9975b;
    box-shadow: 0 0 0 3px rgba(185, 151, 91, 0.1);
}

.bsr-form-field textarea {
    min-height: 100px;
    resize: vertical;
}

.bsr-form-field small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 13px;
}

.bsr-checkbox-group,
.bsr-service-options {
    margin: 20px 0;
}

.bsr-checkbox-field,
.bsr-service-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bsr-checkbox-field:hover,
.bsr-service-option:hover {
    background: #f9f9f9;
    border-color: #b9975b;
}

.bsr-checkbox-field input[type="checkbox"],
.bsr-service-option input[type="checkbox"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.bsr-service-option-label {
    flex: 1;
}

.bsr-service-option-price {
    font-weight: 600;
    color: #b9975b;
}

/* Price Calculator */
.bsr-price-calculator {
    background: #fef9f0;
    border: 2px solid #b9975b;
    border-radius: 8px;
    padding: 24px;
    margin: 30px 0;
}

.bsr-price-calculator h3 {
    margin-top: 0;
    color: #b9975b;
}

.bsr-price-breakdown {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.bsr-price-breakdown li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.bsr-price-breakdown li:last-child {
    border-bottom: none;
}

.bsr-price-total {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 700;
    color: #b9975b;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #b9975b;
}

.bsr-deposit-note {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 14px;
    color: #1976d2;
}

/* ========================================
   Step 3: Contract Review
   ======================================== */

.bsr-contract-container {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    background: #fff;
    max-height: 500px;
    overflow-y: auto;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.8;
}

.bsr-contract-container h1,
.bsr-contract-container h2,
.bsr-contract-container h3 {
    color: #333;
}

.bsr-contract-acceptance {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    margin-top: 20px;
}

.bsr-contract-acceptance label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.bsr-contract-acceptance input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

/* ========================================
   Step 4: Signature
   ======================================== */

.bsr-signature-options {
    margin: 30px 0;
}

.bsr-signature-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.bsr-signature-tab {
    flex: 1;
    padding: 12px 24px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    font-weight: 600;
    transition: all 0.2s ease;
}

.bsr-signature-tab.active {
    background: #b9975b;
    border-color: #b9975b;
    color: #fff;
}

.bsr-signature-canvas-wrapper {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
    text-align: center;
}

.bsr-signature-canvas {
    border: 2px dashed #ddd;
    cursor: crosshair;
    border-radius: 4px;
    background: #fafafa;
    max-width: 100%;
}

.bsr-signature-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.bsr-typed-signature-wrapper {
    padding: 20px;
}

.bsr-typed-signature-wrapper input {
    font-family: 'Brush Script MT', cursive;
    font-size: 32px;
    text-align: center;
    padding: 20px;
}

.bsr-signature-preview {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 4px;
    text-align: center;
}

.bsr-signature-legal {
    background: #fff3cd;
    border: 1px solid #ffecb5;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 13px;
    color: #856404;
}

/* ========================================
   Step 5: Payment
   ======================================== */

.bsr-payment-summary {
    background: #e8f5e9;
    border: 2px solid #4caf50;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 30px;
}

.bsr-payment-summary h3 {
    margin-top: 0;
    color: #2e7d32;
}

.bsr-stripe-element {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    background: #fff;
    margin: 20px 0;
}

.bsr-payment-notes {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    margin-top: 20px;
}

.bsr-payment-notes ul {
    margin: 10px 0;
    padding-left: 20px;
}

/* ========================================
   Step 6: Confirmation
   ======================================== */

.bsr-confirmation {
    text-align: center;
    padding: 40px 20px;
}

.bsr-confirmation-icon {
    font-size: 72px;
    color: #4caf50;
    margin-bottom: 20px;
}

.bsr-confirmation h2 {
    color: #2e7d32;
    font-size: 32px;
    margin-bottom: 15px;
}

.bsr-confirmation-details {
    background: #f9f9f9;
    padding: 24px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.bsr-confirmation-details dt {
    font-weight: 600;
    color: #666;
    margin-top: 15px;
}

.bsr-confirmation-details dd {
    margin: 5px 0 0 0;
    font-size: 18px;
    color: #333;
}

.bsr-next-steps {
    background: #e3f2fd;
    padding: 24px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: left;
}

.bsr-next-steps h3 {
    margin-top: 0;
    color: #1976d2;
}

.bsr-next-steps ol {
    margin: 15px 0;
    padding-left: 20px;
}

.bsr-next-steps li {
    margin: 10px 0;
    line-height: 1.6;
}

/* ========================================
   Navigation Buttons
   ======================================== */

.bsr-step-navigation,
.bsr-form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 15px;
}

.bsr-btn,
.bsr-button {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.bsr-btn-primary,
.bsr-button-primary {
    background: #b9975b;
    color: #fff;
    border: none;
}

.bsr-btn-primary:hover,
.bsr-button-primary:hover {
    background: #a68750;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(185, 151, 91, 0.3);
}

.bsr-btn-primary:disabled,
.bsr-button-primary:disabled {
    background: #ddd;
    cursor: not-allowed;
    transform: none;
}

.bsr-btn-secondary,
.bsr-button-secondary {
    background: #fff;
    color: #666;
    border: 2px solid #ddd;
}

.bsr-btn-secondary:hover,
.bsr-button-secondary:hover {
    border-color: #b9975b;
    color: #b9975b;
}

/* ========================================
   Alerts and Messages
   ======================================== */

.bsr-alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin: 20px 0;
}

.bsr-alert-success {
    background: #e8f5e9;
    border: 1px solid #4caf50;
    color: #2e7d32;
}

.bsr-alert-error {
    background: #ffebee;
    border: 1px solid #f44336;
    color: #c62828;
}

.bsr-alert-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

.bsr-alert-info {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    color: #1565c0;
}

/* ========================================
   Loading States
   ======================================== */

.bsr-loading {
    text-align: center;
    padding: 40px;
}

.bsr-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #b9975b;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: bsr-spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes bsr-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ========================================
   Responsive Design
   ======================================== */

@media screen and (max-width: 768px) {
    .bsr-rental-flow,
    .bsr-rental-flow-container {
        padding: 0 15px;
    }

    .bsr-step-content {
        padding: 24px 20px;
    }

    .bsr-progress-header {
        flex-direction: column;
        align-items: stretch;
    }

    .bsr-progress-steps,
    .bsr-progress-bar {
        flex-wrap: wrap;
        gap: 10px;
    }

    .bsr-start-over {
        text-align: center;
        margin-top: 10px;
    }

    .bsr-start-over-link {
        width: 100%;
        text-align: center;
    }

    .bsr-progress-step {
        flex: 1 1 30%;
        min-width: 100px;
    }

    .bsr-progress-step-label {
        font-size: 11px;
    }

    .bsr-rental-types {
        grid-template-columns: 1fr;
    }

    .bsr-form-grid {
        grid-template-columns: 1fr;
    }

    .bsr-step-navigation {
        flex-direction: column-reverse;
    }

    .bsr-btn {
        width: 100%;
    }

    .bsr-signature-tabs {
        flex-direction: column;
    }

    .bsr-price-calculator {
        padding: 16px;
    }
}

@media screen and (max-width: 480px) {
    .bsr-step-title {
        font-size: 22px;
    }

    .bsr-step-description {
        font-size: 14px;
    }

    .bsr-rental-type-card {
        padding: 20px;
    }

    .bsr-signature-canvas {
        max-width: 100%;
        height: auto;
    }
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
    .bsr-progress-steps,
    .bsr-step-navigation,
    .bsr-btn {
        display: none;
    }

    .bsr-step-content {
        border: none;
        box-shadow: none;
    }
}

/* ========================================
   Availability Calendar Shortcode
   ======================================== */

.bsr-availability-calendar {
    max-width: 67.5%;
    margin: 0 auto 2.5vw;
    font-family: inherit;
}

/* Navigation */
.bsr-pub-cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4vw;
    gap: 1vw;
}

.bsr-pub-cal-month-title {
    margin: 0;
    font-size: 1.9vw;
    text-align: center;
    flex: 1;
}

.bsr-pub-cal-arrow,
.bsr-pub-cal-arrow:link,
.bsr-pub-cal-arrow:visited {
    display: inline-block;
    padding: 0.5vw 1.3vw;
    background: #8b7355;
    color: #fff !important;
    text-decoration: none;
    border-radius: 0.35vw;
    font-size: 1.1vw;
    white-space: nowrap;
    transition: background 0.2s;
}

.bsr-pub-cal-arrow:hover,
.bsr-pub-cal-arrow:focus {
    background: #6f5a42;
    color: #fff !important;
    text-decoration: none;
}

/* Legend */
.bsr-pub-cal-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1vw;
    margin-bottom: 1.2vw;
}

.bsr-pub-legend-item {
    display: inline-flex;
    align-items: center;
    font-size: 1.1vw;
    padding: 0.35vw 1vw;
    border-radius: 0.35vw;
    font-weight: 600;
}

.bsr-pub-legend-available {
    background: #e9f7ef;
    color: #1e8449;
    border: 0.1vw solid #a9dfbf;
}

.bsr-pub-legend-reserved {
    background: #fde8d8;
    color: #a04000;
    border: 0.1vw solid #f5cba7;
}

.bsr-pub-legend-blocked {
    background: #f2d7d5;
    color: #922b21;
    border: 0.1vw solid #f1948a;
}

/* Calendar grid — 7 equal columns; aspect-ratio: 1 works on div cells */
.bsr-pub-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    width: 100%;
    border-top: 0.1vw solid #d1c5ba;
    border-left: 0.1vw solid #d1c5ba;
}

.bsr-pub-weekday {
    background: #8b7355;
    color: #fff;
    padding: 0.7vw 0.35vw;
    text-align: center;
    font-size: 1vw;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-right: 0.1vw solid #6f5a42;
    border-bottom: 0.1vw solid #6f5a42;
    box-sizing: border-box;
}

/* Calendar cells — aspect-ratio: 1 on a grid item is reliable */
.bsr-pub-day {
    aspect-ratio: 1 / 1;
    padding: 0.5vw;
    background: #fff;
    border-right: 0.1vw solid #d1c5ba;
    border-bottom: 0.1vw solid #d1c5ba;
    box-sizing: border-box;
    overflow: hidden;
}

.bsr-pub-day.bsr-pub-empty {
    background: #f8f8f8;
}

.bsr-pub-day.bsr-pub-past {
    background: #f5f5f5;
    opacity: 0.6;
}

.bsr-pub-day.bsr-pub-today .bsr-pub-day-number {
    background: #8b7355;
    color: #fff;
    border-radius: 50%;
    width: 2.2vw;
    height: 2.2vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bsr-pub-day.bsr-pub-blocked {
    background: #fdf2f2;
}

.bsr-pub-day.bsr-pub-reserved {
    background: #fff9f3;
}

.bsr-pub-day-number {
    font-weight: 700;
    font-size: 1.3vw;
    margin-bottom: 0.35vw;
    color: #333;
}

/* Day labels */
.bsr-pub-day-labels {
    display: flex;
    flex-direction: column;
    gap: 0.25vw;
    margin-top: 0.35vw;
}

.bsr-pub-label {
    display: block;
    font-size: 0.9vw;
    border-radius: 0.25vw;
    padding: 0.2vw 0.4vw;
    line-height: 1.3;
    font-weight: 600;
}

.bsr-pub-label small {
    display: block;
    font-weight: 400;
    font-size: 0.8vw;
    margin-top: 0.1vw;
}

.bsr-pub-label-blocked {
    background: #f2d7d5;
    color: #922b21;
}

.bsr-pub-label-reserved {
    background: #fde8d8;
    color: #a04000;
}

/* Mobile */
@media (max-width: 600px) {
    .bsr-availability-calendar {
        max-width: 98%;
    }

    .bsr-pub-cal-month-title {
        font-size: 4.5vw;
    }

    .bsr-pub-cal-arrow {
        padding: 1.5vw 3vw;
        font-size: 3vw;
        border-radius: 1vw;
    }

    .bsr-pub-cal-legend {
        gap: 2vw;
        margin-bottom: 2vw;
    }

    .bsr-pub-legend-item {
        font-size: 2.5vw;
        padding: 0.8vw 2vw;
        border-radius: 0.8vw;
    }

    .bsr-pub-weekday {
        font-size: 2.2vw;
        padding: 1.5vw 0.5vw;
    }

    .bsr-pub-day {
        padding: 0.8vw;
    }

    .bsr-pub-day.bsr-pub-today .bsr-pub-day-number {
        width: 5vw;
        height: 5vw;
    }

    .bsr-pub-day-number {
        font-size: 3vw;
        margin-bottom: 0.5vw;
    }

    .bsr-pub-label {
        font-size: 2vw;
        padding: 0.3vw 0.6vw;
    }

    .bsr-pub-label small {
        font-size: 1.8vw;
    }
}

/* ===== Public forms: max-width 57.29vw on desktop ===== */
@media (min-width: 769px) {
    .gform_wrapper {
        max-width: 57.29vw !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* ===== Weekend at the Station info panel ===== */
.bsr-weekend-info-panel {
    background: #f9f6ee;
    border: 1px solid #d4b96a;
    border-radius: 6px;
    margin-top: 12px;
    padding: 16px 20px;
}

.bsr-weekend-info-panel h4 {
    margin: 0 0 12px;
    font-size: 15px;
    color: #5a4200;
}

.bsr-weekend-days {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.bsr-weekend-day {
    flex: 1;
    background: #fff;
    border: 1px solid #e0c97a;
    border-radius: 5px;
    padding: 12px 14px;
    font-size: 13px;
    line-height: 1.5;
}

.bsr-weekend-day .bsr-day-label {
    display: inline-block;
    background: #7a5c00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 3px;
    padding: 2px 8px;
    margin-bottom: 6px;
}

.bsr-weekend-day strong {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: #3a3000;
}

.bsr-weekend-day p {
    margin: 0;
    color: #555;
    font-size: 12px;
}

.bsr-weekend-acknowledge-wrap {
    background: #fff8e6;
    border: 2px solid #d4b96a;
    border-radius: 5px;
    padding: 12px 16px;
}

.bsr-weekend-acknowledge-wrap.bsr-ack-error {
    border-color: #c0392b;
    background: #fff5f5;
}

.bsr-acknowledge-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.5;
    font-weight: normal !important;
}

.bsr-acknowledge-label input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

@media (max-width: 600px) {
    .bsr-weekend-days {
        flex-direction: column;
    }
}

/* ===== Estimated Pricing Breakdown Card ===== */
.bsr-pricing-preview {
    border: 2px solid #c4a44a;
    border-radius: 8px;
    overflow: hidden;
    margin: 28px 0 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.bsr-price-card-header {
    background: linear-gradient(135deg, #4a2e00 0%, #8b6914 100%);
    color: #fff;
    padding: 16px 22px;
}

.bsr-price-card-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 4px;
}

.bsr-price-card-sub {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.bsr-price-weekend-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 10px 22px;
    background: #fdf8ee;
    border-bottom: 1px solid #e8d080;
}

.bsr-price-weekend-tags span {
    background: #fff;
    border: 1px solid #c4a44a;
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #6b4c00;
}

.bsr-price-items {
    padding: 4px 0;
}

.bsr-price-section-head {
    background: #f7f2e8;
    border-top: 1px solid #ede0c0;
    border-bottom: 1px solid #ede0c0;
    padding: 5px 22px;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: #8b6914;
    margin-top: 2px;
}

.bsr-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 9px 22px;
    font-size: 14px;
    border-bottom: 1px solid #f4edd8;
}

.bsr-price-row:last-child {
    border-bottom: none;
}

.bsr-price-row .bsr-price-label {
    color: #444;
    flex: 1;
    padding-right: 16px;
}

.bsr-price-row .bsr-price-label em {
    font-size: 12px;
    color: #777;
    font-style: normal;
}

.bsr-price-row .bsr-price-amount {
    font-weight: 600;
    color: #2a2000;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

/* Total row */
.bsr-price-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 22px;
    background: #fdf5dc;
    border-top: 2px solid #c4a44a;
    font-size: 18px;
    font-weight: 700;
    color: #3a2000;
}

.bsr-price-total-row .bsr-price-label,
.bsr-price-total-row .bsr-price-amount {
    color: #3a2000;
}

/* Payment schedule section */
.bsr-price-payment {
    background: #f5f9f5;
    border-top: 2px solid #c4a44a;
}

.bsr-price-deposit .bsr-price-label,
.bsr-price-deposit .bsr-price-amount {
    color: #1a5c00;
    font-weight: 600;
}

.bsr-price-balance .bsr-price-label {
    color: #555;
}

.bsr-price-balance .bsr-price-amount {
    color: #333;
}

.bsr-price-disclaimer {
    font-size: 11px;
    color: #888;
    padding: 8px 22px 10px;
    margin: 0;
    background: #fff;
    border-top: 1px solid #f0e8d0;
    font-style: italic;
}

@media (max-width: 480px) {
    .bsr-price-card-sub  { font-size: 15px; }
    .bsr-price-total-row { font-size: 16px; }
    .bsr-price-row       { font-size: 13px; padding: 8px 14px; }
    .bsr-price-card-header,
    .bsr-price-weekend-tags,
    .bsr-price-section-head,
    .bsr-price-total-row,
    .bsr-price-disclaimer { padding-left: 14px; padding-right: 14px; }
}
