/**
 * WP Voucher Frontend Styles
 */

.wp-voucher-fields-wrapper {
    margin: 30px 0;
    padding: 25px;
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.wp-voucher-fields-wrapper h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.3em;
    color: #333;
}

.wp-voucher-description {
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95em;
}

.wp-voucher-field {
    margin-bottom: 20px;
}

.wp-voucher-field:last-child {
    margin-bottom: 0;
}

.wp-voucher-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.95em;
}

.wp-voucher-field label .required {
    color: #e74c3c;
    font-weight: bold;
}

.wp-voucher-field input[type="text"],
.wp-voucher-field input[type="email"],
.wp-voucher-field input[type="date"],
.wp-voucher-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 1em;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.wp-voucher-field input[type="text"]:focus,
.wp-voucher-field input[type="email"]:focus,
.wp-voucher-field input[type="date"]:focus,
.wp-voucher-field textarea:focus {
    border-color: #999;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.wp-voucher-field textarea {
    resize: vertical;
    min-height: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .wp-voucher-fields-wrapper {
        padding: 20px 15px;
    }

    .wp-voucher-field input[type="text"],
    .wp-voucher-field input[type="email"],
    .wp-voucher-field input[type="date"],
    .wp-voucher-field textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Cart display */
.woocommerce-cart-form .wp-voucher-cart-data,
.woocommerce-checkout-review-order .wp-voucher-cart-data {
    font-size: 0.9em;
    color: #666;
}

.woocommerce-cart-form .wp-voucher-cart-data dt,
.woocommerce-checkout-review-order .wp-voucher-cart-data dt {
    font-weight: 600;
    color: #333;
}

/* Order received page */
.wp-voucher-download {
    margin-top: 10px;
}

.wp-voucher-download .button {
    display: inline-block;
    padding: 8px 16px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.2s;
}

.wp-voucher-download .button:hover {
    background: #005a87;
    color: #fff;
}
