/**
 * Frontend Styles for Ohyeah Malta Booking
 */

.ohyeah-booking-form-wrap {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 24px;
    margin: 30px 0;
    max-width: 500px;
    border: 1px solid #f0f0f0;
}

.ohyeah-booking-form-wrap h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 700;
}

.ohyeah-form-section {
    margin-bottom: 20px;
}

.ohyeah-form-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}

.ohyeah-form-section input[type="date"],
.ohyeah-form-section input[type="number"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.ohyeah-time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}

.ohyeah-time-slot {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 8px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.ohyeah-time-slot:hover {
    border-color: #007cba;
    background: #f0f7ff;
}

.ohyeah-time-slot.active {
    background: #007cba;
    border-color: #007cba;
    color: #fff;
}

.ohyeah-passenger-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ohyeah-passenger-input span {
    font-size: 15px;
}

.ohyeah-passenger-input input {
    width: 80px !important;
}

.ohyeah-addon-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.ohyeah-addon-item:last-child {
    border-bottom: none;
}

.ohyeah-addon-item label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.ohyeah-addon-item .addon-icon {
    width: 24px;
    height: 24px;
    margin: 0 10px;
    object-fit: contain;
}

.ohyeah-addon-item .addon-name {
    flex-grow: 1;
}

.ohyeah-addon-item .addon-price {
    color: #666;
    font-size: 13px;
    margin-left: 10px;
}

.ohyeah-booking-summary {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.summary-row.total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
}

#ohyeah-total-price {
    color: #007cba;
    font-size: 22px;
}

#ohyeah-add-to-cart {
    width: 100%;
    background: #007cba;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

#ohyeah-add-to-cart:hover {
    background: #006ba1;
}
