:root {
    --sds-primary: #ff5a5f;
    --sds-secondary: #008489;
    --sds-dark: #484848;
    --sds-light: #f7f7f7;
    --sds-white: #ffffff;
    --sds-border: #ebebeb;
    --sds-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.sds-booking-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--sds-dark);
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--sds-white);
    border-radius: 16px;
    box-shadow: var(--sds-shadow);
}

.sds-booking-header {
    text-align: center;
    margin-bottom: 2rem;
}

.sds-booking-header h2 {
    font-size: 2rem;
    color: var(--sds-primary);
    margin-bottom: 0.5rem;
}

.sds-filter-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1.5rem;
    background: var(--sds-light);
    padding: 1.5rem;
    border-radius: 12px;
    align-items: end;
    margin-bottom: 3rem;
}

.sds-input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.sds-input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--sds-border);
    border-radius: 8px;
    background: var(--sds-white);
    font-size: 1rem;
    cursor: pointer;
}

.sds-btn-primary {
    background: var(--sds-primary);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sds-btn-primary:hover {
    background: #e04a4e;
    transform: translateY(-2px);
}

/* Results Grid */
.sds-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.sds-moto-card {
    background: var(--sds-white);
    border: 1px solid var(--sds-border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sds-moto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.sds-moto-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.sds-moto-info {
    padding: 1.5rem;
}

.sds-moto-info h3 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.sds-stock-tag {
    display: inline-block;
    background: #e6f7f7;
    color: var(--sds-secondary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.sds-btn-reserve {
    display: block;
    width: 100%;
    background: var(--sds-secondary);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.sds-btn-reserve:hover {
    background: #006c70;
}

/* Modal */
.sds-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sds-modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.sds-close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
}

.sds-field {
    margin-bottom: 1.2rem;
}

.sds-field label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.sds-field input {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--sds-border);
    border-radius: 8px;
}

.sds-btn-success {
    width: 100%;
    background: #28a745;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
}

.sds-success-box {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.sds-error-box {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.sds-loader {
    text-align: center;
    padding: 3rem;
    color: #666;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .sds-filter-form {
        grid-template-columns: 1fr;
    }
}
