/* Book Checkout Shortcode Pro Styles */

.book-checkout-shortcode {
    padding: 40px 20px;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
}

.bcs-container {
    max-width: 550px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.bcs-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
    text-align: center;
}

.bcs-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin: 0 0 30px;
}

.bcs-form-group {
    margin-bottom: 25px;
}

.bcs-label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.bcs-input,
.bcs-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.3s;
    background: white;
}

.bcs-input:focus,
.bcs-select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.bcs-input::placeholder {
    color: #999;
}

textarea.bcs-input {
    resize: vertical;
    font-family: inherit;
}

.bcs-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bcs-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    color: #333;
}

.bcs-radio:hover {
    border-color: #007cba;
    background: rgba(0, 124, 186, 0.05);
}

.bcs-radio input[type="radio"] {
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.bcs-button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bcs-button:hover {
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.bcs-button:active {
    transform: translateY(0);
}

.bcs-button.loading {
    opacity: 0.6;
    pointer-events: none;
}

.bcs-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
}

.bcs-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.bcs-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 600px) {
    .bcs-container {
        padding: 25px;
    }
    
    .bcs-title {
        font-size: 22px;
    }
    
    .bcs-input,
    .bcs-select {
        font-size: 16px;
    }
    
    .bcs-radio {
        font-size: 13px;
        padding: 10px;
    }
    
    .bcs-button {
        font-size: 15px;
        padding: 12px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.book-checkout-shortcode {
    animation: fadeIn 0.3s ease-out;
}
