/* PhoneStamp WooCommerce Plugin - Frontend Styles */

.phonestamp-giftcard-fields {
    margin: 1.5em 0;
    padding: 1.5em;
    border: 1px solid var(--wp--preset--color--contrast, #ddd);
    border-radius: 4px;
    background-color: var(--wp--preset--color--base, #f9f9f9);
}

.phonestamp-giftcard-fields h3 {
    margin-top: 0;
    margin-bottom: 1em;
    color: var(--wp--preset--color--contrast, #333);
    font-weight: 600;
}

.phonestamp-giftcard-fields .form-row {
    margin-bottom: 1em;
}

.phonestamp-giftcard-fields label {
    font-weight: 600;
    color: var(--wp--preset--color--contrast, #333);
}

.phonestamp-giftcard-fields input[type="text"],
.phonestamp-giftcard-fields input[type="email"],
.phonestamp-giftcard-fields textarea {
    width: 100%;
    padding: 0.5em 0.75em;
    border: 1px solid var(--wp--preset--color--contrast, #ccc);
    border-radius: 3px;
    font-size: 1em;
    background-color: var(--wp--preset--color--base, #fff);
    color: var(--wp--preset--color--contrast, #333);
}

.phonestamp-giftcard-fields input[type="text"]:focus,
.phonestamp-giftcard-fields input[type="email"]:focus,
.phonestamp-giftcard-fields textarea:focus {
    border-color: var(--wp--preset--color--primary, var(--wp--custom--color--primary, #0073aa));
    outline: none;
    box-shadow: 0 0 0 1px var(--wp--preset--color--primary, var(--wp--custom--color--primary, #0073aa));
}

.phonestamp-giftcard-fields .required {
    color: var(--woocommerce-error, var(--wp--preset--color--vivid-red, #e2401c));
}

.phonestamp-giftcard-fields textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}