/* =====================
   SRS MODAL BASE
   ===================== */
.srs-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.srs-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.srs-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: srsModalIn 0.3s ease;
}

@keyframes srsModalIn {
    from { opacity: 0; transform: scale(0.95) translateY(-20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.srs-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    cursor: pointer;
    color: #666;
    transition: all 0.2s;
    z-index: 10;
}

.srs-modal-close:hover {
    background: #e0e0e0;
    color: #333;
}

.srs-modal-header {
    padding: 25px 25px 0;
}

.srs-modal-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

.srs-modal-body {
    padding: 20px 25px;
}

.srs-modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #e5e5e5;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

/* =====================
   STEPS
   ===================== */
.srs-step {
    display: none;
}

.srs-step.srs-step-active {
    display: block;
}

.srs-step h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.srs-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #2271b1;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
}

/* =====================
   CALENDAR
   ===================== */
.srs-calendar-container {
    background: #fafafa;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e5e5e5;
}

.srs-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.srs-cal-month-year {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.srs-cal-prev,
.srs-cal-next {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.srs-cal-prev:hover,
.srs-cal-next:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.srs-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #888;
    margin-bottom: 10px;
}

.srs-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.srs-cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.srs-cal-day:hover:not(.srs-cal-disabled):not(.srs-cal-empty) {
    background: #e8f4fd;
}

.srs-cal-day.srs-cal-today {
    font-weight: 600;
    background: #f5f5f5;
}

.srs-cal-day.srs-cal-selected {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}

.srs-cal-day.srs-cal-disabled {
    color: #ccc;
    cursor: not-allowed;
}

.srs-cal-day.srs-cal-empty {
    cursor: default;
}

/* =====================
   TIME SELECTORS
   ===================== */
.srs-time-selectors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.srs-time-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    margin-bottom: 6px;
}

.srs-time-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

.srs-time-field select:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
}

.srs-duration-display {
    background: #e8f4fd;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
}

.srs-duration-label {
    color: #555;
    margin-right: 5px;
}

.srs-duration-value {
    font-weight: 600;
    color: #2271b1;
}

/* Rental Type Buttons */
.srs-rental-type-buttons {
    display: flex;
    gap: 8px;
}

.srs-btn-rental-type {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #ddd;
    background: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.srs-btn-rental-type:hover {
    border-color: #2271b1;
}

.srs-btn-rental-type.active {
    background: #2271b1;
    color: #fff;
    border-color: #2271b1;
}

.srs-multiday-picker {
    margin-top: 15px;
    padding: 15px;
    background: #fafafa;
    border-radius: 6px;
}

.srs-multiday-picker label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}

.srs-multiday-picker input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

/* =====================
   LOCATION FIELDS
   ===================== */
.srs-location-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.srs-location-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    margin-bottom: 6px;
}

.srs-location-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
}

.srs-location-field select:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

.srs-location-field select:focus {
    outline: none;
    border-color: #2271b1;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
}

/* Delivery Info */
.srs-delivery-info {
    background: #f0f9ef;
    border: 1px solid #c3e6c3;
    padding: 15px;
    border-radius: 6px;
}

.srs-delivery-fee,
.srs-minimum-order {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.srs-delivery-fee {
    margin-bottom: 8px;
}

.srs-fee-value,
.srs-min-value {
    font-weight: 600;
    color: #2e7d32;
}

/* =====================
   BUTTONS
   ===================== */
.srs-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.srs-btn-primary {
    background: #2271b1;
    color: #fff;
}

.srs-btn-primary:hover {
    background: #1a5a8e;
}

.srs-btn-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.srs-btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.srs-btn-secondary:hover {
    background: #e0e0e0;
}

/* =====================
   SESSION SUMMARY
   ===================== */
.srs-session-summary {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #555;
}

.srs-session-summary span {
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 4px;
}

/* =====================
   SESSION BANNER (on product pages)
   ===================== */
.srs-session-banner {
    background: linear-gradient(135deg, #e8f4fd 0%, #f0f9ef 100%);
    border: 1px solid #c5dde8;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.srs-session-banner .srs-banner-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.srs-session-banner .srs-banner-icon {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.srs-session-banner .srs-banner-label {
    color: #666;
}

.srs-session-banner .srs-banner-value {
    font-weight: 600;
    color: #333;
}

.srs-session-banner .srs-change-link {
    margin-left: auto;
    color: #2271b1;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.srs-session-banner .srs-change-link:hover {
    text-decoration: underline;
}

/* Trigger button when no session */
.srs-select-dates-btn {
    display: block;
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.srs-select-dates-btn:hover {
    background: #1a5a8e;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 480px) {
    .srs-modal-content {
        max-height: 100vh;
        border-radius: 0;
    }
    
    .srs-time-selectors {
        grid-template-columns: 1fr;
    }
    
    .srs-rental-type-buttons {
        flex-direction: column;
    }
    
    .srs-session-summary {
        display: none;
    }
}

/* Availability Info */
.srs-availability-info {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.srs-stock-available {
    color: #28a745;
    background: #d4edda;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 4px;
}

.srs-stock-unavailable {
    color: #dc3545;
    background: #f8d7da;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 4px;
}

.srs-stock-total {
    color: #666;
    background: #f5f5f5;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 4px;
}

.srs-low-stock {
    color: #856404;
    background: #fff3cd;
    padding: 8px 12px;
    border-radius: 4px;
    margin: 10px 0;
}

.srs-not-available {
    color: #721c24;
    background: #f8d7da;
    padding: 8px 12px;
    border-radius: 4px;
    margin: 10px 0;
}

.srs-stock-in-cart {
    color: #0066cc;
    background: #e6f2ff;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 4px;
}

/* Zip Lookup */
.srs-zip-field {
    position: relative;
}

.srs-zip-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.srs-zip-status {
    margin-top: 8px;
    font-size: 14px;
    min-height: 20px;
}

.srs-zip-status.srs-zip-found {
    color: #28a745;
}

.srs-zip-status.srs-zip-not-found {
    color: #dc3545;
}

.srs-location-fields input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.srs-location-help {
    color: #666;
    font-size: 13px;
    margin-top: 15px;
}

/* Time Selection Notice */
.srs-time-notice {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
}

.srs-time-field label .required {
    color: #dc3545;
    font-weight: bold;
}

.srs-required-select:invalid,
.srs-required-select option[value=""] {
    color: #999;
}

.srs-required-select option:not([value=""]) {
    color: #333;
}

/* Shop Page Availability Badges */
.srs-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
}

.srs-badge-available {
    background-color: #d4edda;
    color: #155724;
}

.srs-badge-stock {
    background-color: #e9ecef;
    color: #495057;
}

.srs-badge-lowstock {
    background-color: #fff3cd;
    color: #856404;
}

.srs-badge-soldout {
    background-color: #f8d7da;
    color: #721c24;
}

/* =====================================================
   CHECKOUT - SIXT-INSPIRED DESIGN
   ===================================================== */

/* Order Summary Card (Right Side) */
.srs-checkout-summary {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 24px;
}

.srs-checkout-summary-header {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.srs-checkout-summary-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Product Card in Summary */
.srs-summary-product {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.srs-summary-product-image {
    width: 100px;
    height: 75px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f8f8;
    flex-shrink: 0;
}

.srs-summary-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.srs-summary-product-details {
    flex: 1;
    min-width: 0;
}

.srs-summary-product-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.srs-summary-product-meta {
    font-size: 13px;
    color: #666;
    margin: 0 0 8px 0;
}

.srs-summary-product-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #f0f7ff;
    color: #0066cc;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Event Timeline */
.srs-event-timeline {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.srs-timeline-item {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    position: relative;
}

.srs-timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 44px;
    bottom: -12px;
    width: 2px;
    background: #e0e0e0;
}

.srs-timeline-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.srs-timeline-icon.delivery {
    background: #e8f5e9;
    color: #2e7d32;
}

.srs-timeline-icon.pickup {
    background: #fff3e0;
    color: #e65100;
}

.srs-timeline-content {
    flex: 1;
}

.srs-timeline-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.srs-timeline-address {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.srs-timeline-datetime {
    font-size: 14px;
    color: #444;
}

/* Booking Overview Section */
.srs-booking-overview {
    padding: 20px;
}

.srs-booking-overview-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.srs-overview-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
}

.srs-overview-check {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2e7d32;
    flex-shrink: 0;
}

.srs-overview-text {
    font-size: 14px;
    color: #444;
    line-height: 1.4;
}

.srs-overview-info {
    margin-left: auto;
    color: #888;
    cursor: help;
}

/* =====================================================
   ORDER OPTIONS - SIXT-INSPIRED DESIGN
   ===================================================== */

.srs-checkout-options-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.srs-checkout-options-wrapper .srs-sig-option,
.srs-checkout-options-wrapper .srs-map-option {
    grid-column: 1 / -1;
}

@media (max-width: 600px) {
    .srs-checkout-options-wrapper {
        grid-template-columns: 1fr;
    }
}

.srs-options-section {
    margin-bottom: 0;
}

.srs-options-section-title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.srs-options-section-subtitle {
    font-size: 12px;
    color: #888;
    margin: 0 0 8px 0;
}

/* Card Selection (Radio-style) */
.srs-option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
    margin-bottom: 0;
}

.srs-option-card {
    position: relative;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.srs-option-card:hover {
    border-color: #999;
}

.srs-option-card.selected {
    border-color: #1a1a1a;
    background: #fafafa;
}

.srs-option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    margin: 0;
}

.srs-option-card-radio {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-radius: 50%;
    transition: all 0.2s;
}

.srs-option-card.selected .srs-option-card-radio {
    border-color: #1a1a1a;
    background: #1a1a1a;
}

.srs-option-card.selected .srs-option-card-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.srs-option-card-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    padding-right: 24px;
}

.srs-option-card-subtitle {
    font-size: 13px;
    color: #666;
    margin: 0 0 8px 0;
}

.srs-option-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid #f0f0f0;
}

.srs-option-card-link {
    font-size: 13px;
    color: #0066cc;
    text-decoration: none;
    cursor: pointer;
}

.srs-option-card-link:hover {
    text-decoration: underline;
}

.srs-option-card-price {
    font-size: 14px;
    color: #1a1a1a;
}

.srs-option-card-price.included {
    color: #2e7d32;
    font-weight: 500;
}

/* Add-on Toggles */
.srs-addon-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.srs-addon-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.srs-addon-item:last-child {
    border-bottom: none;
}

.srs-addon-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.srs-addon-content {
    flex: 1;
    min-width: 0;
}

.srs-addon-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.srs-addon-price {
    font-size: 14px;
    color: #666;
}

.srs-addon-price strong {
    color: #1a1a1a;
}

.srs-addon-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.srs-addon-details {
    font-size: 14px;
    color: #0066cc;
    text-decoration: none;
    cursor: pointer;
}

.srs-addon-details:hover {
    text-decoration: underline;
}

/* Toggle Switch */
.srs-toggle {
    position: relative;
    width: 52px;
    height: 28px;
}

.srs-toggle input {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    cursor: pointer;
    margin: 0;
    z-index: 1;
}

.srs-toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ddd;
    border-radius: 28px;
    transition: all 0.3s;
}

.srs-toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.srs-toggle input:checked + .srs-toggle-slider {
    background: #1a1a1a;
}

.srs-toggle input:checked + .srs-toggle-slider::before {
    transform: translateX(24px);
}

/* Dropdown Select Style */
.srs-select-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.srs-select-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: block;
}

.srs-select-field {
    width: 100%;
    padding: 14px 40px 14px 16px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
}

.srs-select-field:hover {
    border-color: #999;
}

.srs-select-field:focus {
    outline: none;
    border-color: #1a1a1a;
}

.srs-select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 16px;
    bottom: 16px;
    font-size: 10px;
    color: #666;
    pointer-events: none;
}

/* Payment Breakdown */
.srs-payment-options {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 16px;
}

.srs-payment-options-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.srs-payment-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.srs-payment-option:hover {
    border-color: #999;
}

.srs-payment-option.selected {
    border-color: #1a1a1a;
    background: #fafafa;
}

.srs-payment-option input[type="radio"] {
    margin-top: 2px;
    accent-color: #1a1a1a;
}

.srs-payment-option-content {
    flex: 1;
}

.srs-payment-option-label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.srs-payment-option-sublabel {
    font-size: 13px;
    color: #666;
}

.srs-payment-option-amount {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Balance Due Alert */
.srs-balance-alert {
    background: #fff8e6;
    border: 1px solid #ffd666;
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.srs-balance-alert-icon {
    font-size: 20px;
}

.srs-balance-alert-content {
    flex: 1;
}

.srs-balance-alert-amount {
    font-size: 16px;
    font-weight: 600;
    color: #b8860b;
}

.srs-balance-alert-date {
    font-size: 13px;
    color: #8b7355;
}

/* Responsive */
@media (max-width: 600px) {
    .srs-option-cards {
        grid-template-columns: 1fr;
    }
    
    .srs-summary-product {
        flex-direction: column;
    }
    
    .srs-summary-product-image {
        width: 100%;
        height: 120px;
    }
    
    .srs-addon-item {
        flex-wrap: wrap;
    }
    
    .srs-addon-actions {
        width: 100%;
        justify-content: space-between;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #f0f0f0;
    }
}

/* ─── Shop Loop Quantity Selector ─── */
.srs-shop-qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin: 8px auto 4px;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    height: 36px;
}

.srs-qty-btn {
    width: 34px;
    height: 100%;
    border: none;
    background: #f7f7f7;
    font-size: 18px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
    line-height: 1;
    padding: 0;
}

.srs-qty-btn:hover {
    background: #e8e8e8;
    color: #111;
}

.srs-qty-btn:active {
    background: #ddd;
}

.srs-qty-input {
    width: 48px;
    height: 100%;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    -moz-appearance: textfield;
    padding: 0;
    margin: 0;
    background: #fff;
}

.srs-qty-input::-webkit-outer-spin-button,
.srs-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.srs-qty-input:focus {
    outline: none;
    background: #f0f7ff;
}

/* =====================
   PRICE PREVIEW
   ===================== */
/* "Price includes additional fees" tooltip */
.srs-price-tooltip-wrap {
    position: relative;
    display: block;
    margin-top: 0;
}

.srs-price-why-link {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
}

.srs-price-why-link:hover {
    color: #2271b1;
}

.srs-price-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    min-width: 320px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    font-size: 13px;
    line-height: 1.5;
}

.srs-price-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 20px;
    border: 6px solid transparent;
    border-top-color: #1a1a1a;
}

.srs-price-why-link:hover + .srs-price-tooltip,
.srs-price-tooltip:hover {
    display: block;
}

.srs-tooltip-row {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    gap: 20px;
}

.srs-tooltip-row span:last-child {
    white-space: nowrap;
    text-align: right;
}

.srs-tooltip-fee span:last-child {
    color: #ff8a80;
}

.srs-tooltip-discount span:last-child {
    color: #69f0ae;
}

.srs-tooltip-total {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 4px;
    padding-top: 6px;
    font-weight: 600;
}

/* Date picker modal enhancements */
/* ===== Global: stop horizontal overflow (the scrollbar bug) ===== */
#srs-date-picker-modal, #srs-date-picker-modal *{box-sizing:border-box;}
#srs-date-picker-modal .srs-modal-content{overflow-x:hidden;}
#srs-date-picker-modal .srs-modal-body{overflow-x:hidden;}

/* Zip field — a zip is short, so don't stretch it across the whole modal */
#srs-date-picker-modal .srs-zip-field{max-width:240px;}

/* ===== SaaS-style footer summary bar ===== */
#srs-date-picker-modal .srs-modal-footer{display:flex;flex-wrap:wrap;align-items:center;gap:10px;}
#srs-date-picker-modal .srs-session-summary{flex-basis:100%;display:flex;flex-wrap:wrap;gap:8px;align-items:center;
    background:#f8fafc;border:1px solid #eef2f7;border-radius:10px;padding:10px 12px;margin-bottom:2px;}
#srs-date-picker-modal .srs-session-summary > span{display:inline-flex;align-items:center;gap:6px;
    background:#fff;border:1px solid #e5e7eb;border-radius:999px;padding:5px 12px;font-size:12.5px;font-weight:600;color:#334155;white-space:nowrap;}
/* Summary chip icons are rendered in JS text (they change for multi-day) */
/* Buttons sit on their own row: Back left, primary (Next/Confirm) right */
#srs-date-picker-modal .srs-btn-primary{min-width:110px;margin-left:auto;}

/* ===== Reusable panel kit (grouped, labeled sections) ===== */
#srs-date-picker-modal .srs-panel{border:1px solid #e9edf3;border-radius:14px;padding:14px 15px;margin-bottom:14px;background:#fff;}
#srs-date-picker-modal .srs-panel:last-child{margin-bottom:0;}
#srs-date-picker-modal .srs-panel-h{display:flex;align-items:center;gap:8px;margin-bottom:11px;}
#srs-date-picker-modal .srs-panel-badge{font-size:10px;font-weight:800;letter-spacing:.04em;color:#2563eb;background:#eff6ff;border-radius:6px;padding:3px 8px;text-transform:uppercase;white-space:nowrap;}
#srs-date-picker-modal .srs-panel-t{font-size:14px;font-weight:700;color:#1e293b;}

/* Sub-field label inside a panel (e.g. "How long do you need it?") */
#srs-date-picker-modal .srs-subfield-label{font-size:13px;font-weight:700;color:#334155;margin:16px 0 9px;padding-top:14px;border-top:1px solid #f1f5f9;}

/* Delivery reassurance note (subtle, its own line) */
#srs-date-picker-modal .srs-time-reassure{margin:12px 0 0;font-size:12px;color:#64748b;}

/* Rental length line */
#srs-date-picker-modal .srs-time-info{display:flex;align-items:center;gap:10px;margin-top:10px;background:#f0f9ff;border:1px solid #d5e8fb;border-radius:9px;padding:10px 13px;font-size:12.5px;color:#334155;}
#srs-date-picker-modal .srs-time-info__note{color:#64748b;}
#srs-date-picker-modal .srs-time-info__dur{margin-left:auto;font-weight:800;color:#1d4ed8;}

/* ===== Step 2 clarity: rental type cards + time fields ===== */
#srs-date-picker-modal .srs-field-intro{font-size:14px;font-weight:700;color:#1e293b;margin:6px 0 10px;}
#srs-date-picker-modal .srs-field-intro--times{margin-top:22px;padding-top:18px;border-top:1px solid #eef2f7;}

/* Rental type as descriptive cards */
#srs-date-picker-modal .srs-rental-type-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;}
#srs-date-picker-modal .srs-btn-rental-type{display:flex;flex-direction:column;align-items:center;text-align:center;gap:3px;
    background:#fff;border:2px solid #e5e7eb;border-radius:12px;padding:14px 10px;cursor:pointer;transition:all .15s;height:auto;}
#srs-date-picker-modal .srs-btn-rental-type:hover{border-color:#93c5fd;background:#f8fbff;transform:translateY(-1px);}
#srs-date-picker-modal .srs-btn-rental-type.active{border-color:#2563eb;background:#eff6ff;box-shadow:0 2px 10px rgba(37,99,235,.15);}
#srs-date-picker-modal .srs-rt-icon{font-size:24px;line-height:1;}
#srs-date-picker-modal .srs-rt-name{font-size:14px;font-weight:700;color:#111;}
#srs-date-picker-modal .srs-rt-desc{font-size:11px;color:#64748b;line-height:1.3;}
#srs-date-picker-modal .srs-btn-rental-type.active .srs-rt-name{color:#1d4ed8;}

/* Return date + return-day pickup time (overnight / multi-day) */
#srs-date-picker-modal .srs-multiday-picker,
#srs-date-picker-modal .srs-return-time{margin-top:12px;background:#f8fafc;border:1px solid #e5e7eb;border-radius:10px;padding:12px 14px;}
#srs-date-picker-modal .srs-multiday-picker label,
#srs-date-picker-modal .srs-return-time label{display:block;font-size:13px;font-weight:700;color:#334155;margin-bottom:6px;}
#srs-date-picker-modal .srs-multiday-picker label small,
#srs-date-picker-modal .srs-return-time label small{display:block;font-weight:400;font-size:11px;color:#94a3b8;margin-top:1px;}
#srs-date-picker-modal .srs-multiday-picker input,
#srs-date-picker-modal .srs-return-time select{width:100%;padding:10px;border:1px solid #cbd5e1;border-radius:8px;font-size:14px;background:#fff;}

/* Time fields */
#srs-date-picker-modal .srs-time-selectors{display:grid;grid-template-columns:1fr 1fr;gap:12px;}
#srs-date-picker-modal .srs-time-field label{display:block;font-size:13px;font-weight:700;color:#334155;margin-bottom:6px;}
#srs-date-picker-modal .srs-time-field label small{display:block;font-weight:400;font-size:11px;color:#94a3b8;margin-top:1px;}
#srs-date-picker-modal .srs-time-field select{width:100%;padding:11px 12px;border:1px solid #cbd5e1;border-radius:8px;font-size:14px;background:#fff;}
#srs-date-picker-modal .srs-time-field select:focus{border-color:#2563eb;outline:none;box-shadow:0 0 0 3px rgba(37,99,235,.12);}
#srs-date-picker-modal .srs-required-select:required:invalid{color:#94a3b8;}

/* Delivery-location result line (green = we deliver / red = we don't) */
#srs-date-picker-modal .srs-location-result{margin-top:12px;border-radius:10px;padding:12px 15px;font-size:14px;line-height:1.5;}
#srs-date-picker-modal .srs-location-result.srs-result-yes{background:#f0fdf4;border:1px solid #bbf7d0;color:#15803d;}
#srs-date-picker-modal .srs-location-result.srs-result-no{background:#fef2f2;border:1px solid #fecaca;color:#b91c1c;}
#srs-date-picker-modal .srs-location-result.srs-result-loading{background:#f8fafc;border:1px solid #eef2f7;color:#64748b;}
#srs-date-picker-modal .srs-location-result strong{font-weight:800;}
#srs-date-picker-modal .srs-location-result .srs-lr-fee{display:inline-block;margin-left:6px;background:#fff;border:1px solid #bbf7d0;border-radius:999px;padding:1px 10px;font-size:12.5px;font-weight:700;}
#srs-date-picker-modal .srs-location-result .srs-lr-call{display:block;margin-top:4px;font-size:12.5px;color:#7f1d1d;}
#srs-date-picker-modal .srs-location-result a{color:inherit;text-decoration:underline;font-weight:700;}
#srs-date-picker-modal .srs-location-field label{display:block;font-size:13px;font-weight:700;color:#334155;margin-bottom:6px;}
#srs-date-picker-modal #srs-zip{width:100%;padding:11px 12px;border:1px solid #cbd5e1;border-radius:8px;font-size:15px;}
#srs-date-picker-modal #srs-zip:focus{border-color:#2563eb;outline:none;box-shadow:0 0 0 3px rgba(37,99,235,.12);}

/* Quiet clarity line — sets the "ready by" expectation, no extra input */
#srs-date-picker-modal .srs-time-clarity{display:flex;align-items:center;gap:8px;margin-top:12px;
    font-size:12px;color:#64748b;background:#f8fafc;border:1px solid #eef2f7;border-radius:8px;padding:9px 12px;}
#srs-date-picker-modal .srs-time-clarity__ico{font-size:14px;}

/* Prominent duration feedback */
#srs-date-picker-modal .srs-duration-display{display:flex;align-items:center;gap:8px;margin-top:16px;
    background:linear-gradient(135deg,#eff6ff,#f0f9ff);border:1px solid #bfdbfe;border-radius:10px;padding:12px 16px;}
#srs-date-picker-modal .srs-duration-icon{font-size:18px;}
#srs-date-picker-modal .srs-duration-label{font-size:13px;color:#475569;font-weight:600;}
#srs-date-picker-modal .srs-duration-value{font-size:15px;font-weight:800;color:#1d4ed8;margin-left:auto;}

@media(max-width:480px){
    #srs-date-picker-modal .srs-rental-type-cards{grid-template-columns:1fr;}
    #srs-date-picker-modal .srs-btn-rental-type{flex-direction:row;justify-content:flex-start;text-align:left;gap:10px;}
    #srs-date-picker-modal .srs-time-selectors{grid-template-columns:1fr;}
}

/* Sticky event bar */
/* Sticky Bar Base Styles */
.srs-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--srs-bar-bg, #333);
    color: var(--srs-bar-text, #fff);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.srs-sticky-bar--top {
    top: 0;
}

.srs-sticky-bar--bottom {
    bottom: 0;
}

.srs-sticky-bar__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.srs-sticky-bar__content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.srs-sticky-bar__icon {
    font-size: 18px;
}

.srs-sticky-bar__divider {
    color: rgba(255,255,255,0.4);
}

.srs-sticky-bar__change {
    color: var(--srs-bar-accent, #ff6b35);
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.srs-sticky-bar__change:hover {
    text-decoration: underline;
}

.srs-sticky-bar__button {
    background: var(--srs-bar-accent, #ff6b35);
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.srs-sticky-bar__button:hover {
    opacity: 0.9;
    color: #fff;
}

.srs-sticky-bar__button--secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--srs-bar-text, #fff);
}

.srs-sticky-bar__button--secondary:hover {
    background: rgba(255,255,255,0.1);
    color: var(--srs-bar-text, #fff);
}

.srs-sticky-bar__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== Compact Style — light SaaS, edge-to-edge ===== */
.srs-sb-modern{
    background:#ffffff !important;
    color:#1e293b;
    padding:0;
    box-shadow:0 -3px 18px rgba(15,23,42,.08);
    border-top:1px solid #e5e7eb;
    transition:transform .35s ease;
}
.srs-sb-modern.srs-sticky-bar--top{border-top:none;border-bottom:1px solid #e5e7eb;box-shadow:0 3px 18px rgba(15,23,42,.08);}
.srs-sb-modern .srs-sticky-bar__container{
    background:transparent;border:none;border-radius:0;box-shadow:none;
    max-width:1200px;margin:0 auto;padding:12px 20px;gap:14px;
}
.srs-sb-modern .srs-sticky-bar__content--compact{display:flex;align-items:center;min-width:0;}

/* Segmented info group */
.srs-sb-seg{display:flex;align-items:center;flex-wrap:wrap;background:#f8fafc;border:1px solid #e9edf3;border-radius:10px;overflow:hidden;}
.srs-sb-item{display:flex;align-items:center;gap:8px;padding:8px 14px;border-right:1px solid #e9edf3;color:#1e293b;text-decoration:none;}
.srs-sb-item:last-child{border-right:none;}
.srs-sb-ico{font-size:15px;line-height:1;}
.srs-sb-ico--lg{font-size:22px;}
.srs-sb-txt{display:flex;flex-direction:column;line-height:1.2;min-width:0;}
.srs-sb-txt small{font-size:9.5px;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:#94a3b8;}
.srs-sb-txt b{font-size:13px;font-weight:700;white-space:nowrap;color:#1e293b;}
.srs-sb-change{font-size:11px;font-weight:800;color:var(--srs-bar-accent,#2563eb) !important;cursor:pointer;}
.srs-sb-change:hover{text-decoration:underline;}
.srs-sb-zip input{border:none;background:transparent;font-size:13px;font-weight:700;width:66px;padding:0;outline:none;color:#1e293b;}
.srs-sb-zip input::placeholder{color:#94a3b8;}

/* Prompt (no date) */
.srs-sb-prompt{display:flex;align-items:center;gap:12px;color:#1e293b;}
.srs-sb-prompt .srs-sb-txt b{font-size:14px;color:#1e293b;}
.srs-sb-prompt .srs-sb-txt small{font-size:12px;color:#94a3b8;text-transform:none;letter-spacing:0;font-weight:400;}

/* Buttons */
.srs-sb-modern .srs-sticky-bar__actions{display:flex;align-items:center;gap:8px;margin-left:auto;}
.srs-sb-btn{border:none;border-radius:10px;padding:11px 20px;font-size:13px;font-weight:700;cursor:pointer;white-space:nowrap;text-decoration:none;display:inline-flex;align-items:center;gap:6px;transition:transform .15s,box-shadow .15s,background .15s;}
.srs-sb-btn--primary{background:var(--srs-bar-accent,#2563eb);color:#fff;box-shadow:0 3px 10px rgba(37,99,235,.25);}
.srs-sb-btn--primary:hover{transform:translateY(-1px);color:#fff;}
.srs-sb-btn--ghost{background:#fff;border:1px solid #e2e8f0;color:#475569;}
.srs-sb-btn--ghost:hover{background:#f8fafc;color:#334155;}

/* Entrance + hide-on-scroll (bottom) */
@keyframes srsSbUp{from{transform:translateY(130%);opacity:.4;}to{transform:translateY(0);opacity:1;}}
.srs-sb-modern.srs-sb-in{animation:srsSbUp .45s cubic-bezier(.16,1,.3,1);}
.srs-sb-modern.srs-sticky-bar--bottom.srs-sb-hidden{transform:translateY(150%);}
.srs-sb-modern.srs-sticky-bar--top.srs-sb-hidden{transform:translateY(-150%);}

@media(max-width:640px){
    .srs-sb-modern .srs-sticky-bar__container{flex-wrap:wrap;gap:10px;}
    .srs-sb-modern .srs-sticky-bar__content--compact{width:100%;}
    .srs-sb-seg{width:100%;}
    .srs-sb-item{flex:1;padding:7px 10px;}
    .srs-sb-modern .srs-sticky-bar__actions{width:100%;}
    .srs-sb-btn{flex:1;justify-content:center;}
}

/* ===== Legacy compact styles (other elements) ===== */
.srs-sb-modern .srs-sticky-bar__content {
    font-size: 14px;
}

/* Expanded Style */
.srs-sticky-bar--expanded .srs-sticky-bar__container {
    padding: 15px 20px;
}

.srs-sticky-bar--expanded .srs-sticky-bar__field {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.srs-sticky-bar--expanded .srs-sticky-bar__label {
    font-size: 10px;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.srs-sticky-bar--expanded .srs-sticky-bar__value {
    font-size: 14px;
    font-weight: 500;
}

.srs-sticky-bar--expanded .srs-sticky-bar__arrow {
    font-size: 20px;
    opacity: 0.5;
}

.srs-sticky-bar--expanded .srs-sticky-bar__field--location {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.srs-sticky-bar--expanded .srs-sticky-bar__field--empty {
    flex-direction: row;
    gap: 10px;
    opacity: 0.7;
}

/* Minimal Style */
.srs-sticky-bar--minimal .srs-sticky-bar__container {
    padding: 10px 20px;
    justify-content: center;
}

.srs-sticky-bar--minimal .srs-sticky-bar__content {
    font-size: 14px;
}

.srs-sticky-bar--minimal .srs-sticky-bar__actions {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .srs-sticky-bar__container {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        padding: 8px 12px;
    }

    .srs-sticky-bar__content {
        flex: 1;
        min-width: 0;
        gap: 6px;
        font-size: 13px;
    }

    .srs-sticky-bar__icon {
        font-size: 14px;
    }

    .srs-sticky-bar__button {
        padding: 8px 14px;
        font-size: 13px;
        flex-shrink: 0;
    }

    .srs-sticky-bar--expanded .srs-sticky-bar__container {
        flex-wrap: wrap;
        padding: 8px 12px;
    }

    .srs-sticky-bar--expanded .srs-sticky-bar__content {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
    }

    .srs-sticky-bar--expanded .srs-sticky-bar__field--location {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }

    .srs-sticky-bar--expanded .srs-sticky-bar__arrow {
        font-size: 14px;
    }

    .srs-sticky-bar--expanded .srs-sticky-bar__label {
        font-size: 9px;
    }

    .srs-sticky-bar--expanded .srs-sticky-bar__value {
        font-size: 12px;
    }

    .srs-sticky-bar__divider {
        display: none;
    }

    .srs-sticky-bar__zip-field {
        padding: 2px 6px;
    }

    .srs-sticky-bar__zip-input {
        font-size: 13px;
        width: 60px;
    }
}

/* Add padding to body when sticky bar is active */
body.srs-has-sticky-bar--top {
    padding-top: 60px;
}

body.srs-has-sticky-bar--bottom {
    padding-bottom: 60px;
}

body.srs-has-sticky-bar--expanded {
    padding-top: 80px;
}

body.srs-has-sticky-bar--expanded.srs-has-sticky-bar--bottom {
    padding-top: 0;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    body.srs-has-sticky-bar--top {
        padding-top: 44px;
    }
    body.srs-has-sticky-bar--bottom {
        padding-bottom: 44px;
    }
    body.srs-has-sticky-bar--expanded {
        padding-top: 52px;
    }
    body.srs-has-sticky-bar--expanded.srs-has-sticky-bar--bottom {
        padding-top: 0;
        padding-bottom: 52px;
    }
}

/* ZIP Code Input Styles */
.srs-sticky-bar__zip-field {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 4px 10px;
}

.srs-sticky-bar__zip-icon {
    font-size: 14px;
    opacity: 0.8;
}

.srs-sticky-bar__zip-input {
    background: transparent;
    border: none;
    color: var(--srs-bar-text, #fff);
    font-size: 14px;
    width: 70px;
    padding: 4px 0;
    outline: none;
}

.srs-sticky-bar__zip-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.srs-sticky-bar__zip-input:focus {
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
}

.srs-sticky-bar__zip-city {
    font-size: 12px;
    opacity: 0.7;
    white-space: nowrap;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Expanded style zip */
.srs-sticky-bar__zip-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.srs-sticky-bar__zip-input--expanded {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 6px 10px;
    width: 80px;
}

.srs-sticky-bar__zip-input--expanded:focus {
    border-color: var(--srs-bar-accent, #ff6b35);
    background: rgba(255,255,255,0.15);
}

.srs-sticky-bar__zip-city-expanded {
    font-size: 13px;
    opacity: 0.8;
}

/* ZIP validation states */
.srs-sticky-bar__zip-input.srs-zip-valid {
    border-color: #4caf50;
}

.srs-sticky-bar__zip-input.srs-zip-invalid {
    border-color: #f44336;
}

.srs-sticky-bar__zip-input.srs-zip-loading {
    opacity: 0.6;
}

.srs-sticky-bar__zip-error {
    position: absolute;
    top: 100%;
    left: 0;
    background: #f44336;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 4px;
    white-space: nowrap;
    z-index: 10;
}

/* ZIP field wrapper for positioning error */
.srs-sticky-bar__zip-field,
.srs-sticky-bar__field--location {
    position: relative;
}

/* Shop availability discovery state */
ul.products li.product{position:relative;transition:opacity .3s ease;}
            li.product.srs-avail-no{opacity:.7;}
            li.product.srs-avail-no img{filter:grayscale(90%);transition:filter .3s ease;}
            li.product.srs-avail-no:hover img{filter:grayscale(0%);}
            .srs-booked-ribbon{position:absolute;top:10px;left:10px;z-index:5;background:#ef4444;color:#fff;
                font-size:11px;font-weight:700;padding:4px 10px;border-radius:999px;box-shadow:0 2px 6px rgba(0,0,0,.2);
                display:inline-flex;align-items:center;gap:4px;pointer-events:none;}
