﻿/**
 * Payat Gift Card â€” Frontend Styles
 *
 * Styling for the gift card amount and recipient fields on the product page.
 * Styling for the gift card fields on the product page.
 */

.payat-gc-fields {
    margin: 20px 0;
    padding: 25px;
    background: #FAF6F1;
    border: 1px solid #E8DDD0;
    border-radius: 10px;
}

.payat-gc-field {
    margin-bottom: 18px;
}

.payat-gc-field:last-child {
    margin-bottom: 0;
}

.payat-gc-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #3D3028;
    margin-bottom: 6px;
}

.payat-gc-field label abbr.required {
    color: #C0392B;
    text-decoration: none;
}

.payat-gc-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #D4C5B5;
    border-radius: 8px;
    font-size: 15px;
    color: #3D3028;
    background: #FFFFFF;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: inherit;
}

.payat-gc-input:focus {
    outline: none;
    border-color: #8B7355;
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.15);
}

.payat-gc-input::placeholder {
    color: #B8A898;
}

.payat-gc-consent {
    margin-top: 14px;
    padding: 12px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e8ddd0;
}

.payat-gc-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: #3d3028;
}

.payat-gc-consent-label input[type="checkbox"] {
    margin-top: 2px;
}

/* Amount field â€” slightly larger */
input#payat_gc_amount {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
}

/* Hint text below the amount field */
.payat-gc-hint {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #A89480;
}

/* Textarea for personal message */
textarea.payat-gc-input {
    resize: vertical;
    min-height: 80px;
}

/* Price label on product page */
.payat-gc-price-label {
    font-size: 16px;
    color: #8B7355;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .payat-gc-fields {
        padding: 18px;
    }

    .payat-gc-input {
        padding: 10px 14px;
        font-size: 14px;
    }

    input#payat_gc_amount {
        font-size: 16px;
    }
}

