/**
 * Hitz EGiftCard Frontend Styles
 *
 * @author Hitz
 * @copyright Copyright (c) 2024 Hitz
 */

/* Delivery Method Section */
.egiftcard-delivery-section {
    margin: 20px 0;
}

.egiftcard-delivery-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.egiftcard-delivery-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.egiftcard-delivery-btn {
    padding: 10px 20px;
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.egiftcard-delivery-btn:hover {
    border-color: #007bff;
    color: #007bff;
}

.egiftcard-delivery-btn.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* Recipient Details Section */
.egiftcard-recipient-section {
    margin: 20px 0;
}

.egiftcard-name-fields {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.egiftcard-field {
    margin-bottom: 15px;
}

.egiftcard-name-fields .egiftcard-field {
    flex: 1;
    margin-bottom: 0;
}

.egiftcard-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.egiftcard-field .input-text {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.egiftcard-field .input-text:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.egiftcard-field textarea.input-text {
    resize: vertical;
    min-height: 100px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .egiftcard-name-fields {
        flex-direction: column;
        gap: 0;
    }
    
    .egiftcard-name-fields .egiftcard-field {
        margin-bottom: 15px;
    }
    
    .egiftcard-delivery-options {
        flex-direction: column;
    }
    
    .egiftcard-delivery-btn {
        width: 100%;
    }
}

