.sp-checkout-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.sp-reservation-timer {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.sp-reservation-timer span {
    color: #dc3545;
    font-size: 24px;
}

.sp-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.sp-checkout-customer h2,
.sp-checkout-summary h2 {
    margin-top: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.sp-form-group {
    margin-bottom: 25px;
}

.sp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.sp-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.sp-form-control:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.sp-form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 13px;
}

.sp-checkout-summary-mobile {
    display: none;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.sp-checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.sp-checkout-item:last-child {
    border-bottom: none;
}

.sp-checkout-item-details {
    flex: 1;
}

.sp-checkout-item-name {
    font-weight: 600;
}

.sp-checkout-item-name small {
    font-weight: normal;
    color: #666;
}

.sp-checkout-item-price {
    color: #666;
    margin-top: 5px;
}

.sp-checkout-item-subtotal {
    font-weight: 600;
    min-width: 80px;
    text-align: right;
}

.sp-checkout-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #333;
}

.sp-total-amount {
    color: #4CAF50;
}

.sp-checkout-actions {
    margin-top: 30px;
}

.sp-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.sp-button-primary {
    background-color: #4CAF50;
    color: white;
}

.sp-button-primary:hover:not(:disabled) {
    background-color: #45a049;
}

.sp-button-primary:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.sp-button-secondary {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.sp-button-secondary:hover {
    background-color: #e2e6ea;
}

.sp-checkout-terms {
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

.sp-notice {
    padding: 15px 20px;
    border-radius: 5px;
    margin: 20px auto;
    max-width: 1200px;
}

.sp-notice-warning {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

/* Mobilā versija */
@media (max-width: 768px) {
    .sp-checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .sp-checkout-summary {
        display: none;
    }
    
    .sp-checkout-summary-mobile {
        display: block;
    }
    
    .sp-checkout-actions {
        margin-top: 20px;
    }
}