/* Gift voucher page — conversión */
.gv-page {
    --gv-burgundy: #5c1228;
    --gv-burgundy-deep: #4a0e20;
    --gv-burgundy-soft: #6f1c48;
    --gv-gold: #d4a84b;
    --gv-text: #2a2a2a;
    --gv-muted: #7a7a7a;
    --gv-border: #ddd5d8;
    --gv-bg: #f7f5f4;
    --gv-radius: 14px;
    --gv-shadow: 0 12px 40px rgba(60, 20, 35, 0.1);
    background:
        radial-gradient(ellipse at top, rgba(111, 28, 72, 0.04), transparent 55%),
        linear-gradient(180deg, #faf8f7 0%, #f3f0ef 100%);
    margin: -15px -15px 0;
    padding: 36px 16px 64px;
    color: var(--gv-text);
    font-family: Montserrat, "Helvetica Neue", Arial, sans-serif;
}

.gv-inner {
    max-width: 1080px;
    margin: 0 auto;
}

.gv-hero {
    text-align: center;
    margin-bottom: 32px;
}

.gv-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--gv-burgundy);
    margin: 0 0 10px;
    line-height: 1.15;
}

.gv-hero-icon {
    color: var(--gv-burgundy);
    margin-bottom: 12px;
    line-height: 1;
}

.gv-subtitle {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--gv-muted);
    margin: 0 0 16px;
    text-transform: uppercase;
}

.gv-benefits {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
}

.gv-benefits li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gv-burgundy);
}

.gv-benefits i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(92, 18, 40, 0.1);
    color: var(--gv-burgundy);
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gv-occasions {
    margin: 0 0 22px;
    font-size: 13px;
    color: var(--gv-muted);
}

.gv-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    counter-reset: none;
}

.gv-steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    margin: 8px 0;
    color: var(--gv-muted);
    font-size: 13px;
    font-weight: 500;
    position: relative;
}

.gv-steps li + li {
    border-left: 1px solid #d8d0d3;
}

.gv-steps li:before {
    display: none !important;
    content: none !important;
}

.gv-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gv-burgundy);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    flex-shrink: 0;
}

.gv-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: flex-start;
}

.gv-form-card,
.gv-preview {
    flex: 1 1 420px;
    min-width: 0;
}

.gv-form-card {
    background: #fff;
    border-radius: var(--gv-radius);
    box-shadow: var(--gv-shadow);
    padding: 28px 28px 24px;
    text-align: left !important;
}

.gv-form-card label.gv-label,
#gift-voucher .gv-label {
    display: block;
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gv-burgundy);
    text-align: left;
}

.gv-optional {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #f0ecee;
    color: var(--gv-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    vertical-align: middle;
}

.gv-field-group {
    margin-bottom: 20px;
}

.gv-amount-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.gv-preset {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    background: #fff;
    border: 1.5px solid var(--gv-border);
    border-radius: 8px;
    color: #555;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    padding: 12px 12px;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
    min-width: 86px;
    text-align: center;
}

.gv-preset-featured {
    padding-top: 18px;
    padding-bottom: 10px;
}

.gv-preset-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: var(--gv-burgundy);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 999px;
    line-height: 1.3;
}

.gv-preset:hover {
    border-color: var(--gv-burgundy-soft);
    color: var(--gv-burgundy);
}

.gv-preset.is-active {
    border-color: var(--gv-burgundy);
    color: var(--gv-burgundy);
    background: rgba(92, 18, 40, 0.04);
    box-shadow: inset 0 0 0 1px var(--gv-burgundy);
}

.gv-preset-featured.is-active {
    background: rgba(92, 18, 40, 0.07);
}

.gv-input-wrap,
.gv-textarea-wrap {
    position: relative;
}

.gv-input-prefix,
.gv-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gv-muted);
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}

.gv-input-prefix {
    font-weight: 600;
    color: var(--gv-burgundy);
}

.gv-textarea-icon {
    top: 16px;
    transform: none;
}

#gift-voucher .gv-input,
#gift-voucher input.gv-input,
#gift-voucher input.gv-amount-input {
    width: 100% !important;
    max-width: none;
    box-sizing: border-box;
    border: 1.5px solid var(--gv-border);
    border-radius: 10px;
    padding: 12px 14px 12px 36px;
    font-size: 15px;
    font-family: inherit;
    color: var(--gv-text);
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

#gift-voucher .gv-amount-input {
    font-weight: 600;
    letter-spacing: 0.02em;
}

#gift-voucher .gv-input:focus,
#gift-voucher input.gv-input:focus,
#gift-voucher .gv-textarea:focus {
    outline: none;
    border-color: var(--gv-burgundy);
    box-shadow: 0 0 0 3px rgba(92, 18, 40, 0.12);
}

#gift-voucher .gv-textarea,
#gift-voucher textarea.gv-textarea {
    width: 100% !important;
    max-width: none;
    box-sizing: border-box;
    min-height: 110px;
    height: auto;
    border: 1.5px solid var(--gv-border);
    border-radius: 10px;
    padding: 14px 14px 28px 36px;
    font-size: 14px;
    font-family: inherit;
    color: var(--gv-text);
    resize: vertical;
    line-height: 1.45;
}

.gv-char-count {
    position: absolute;
    right: 12px;
    bottom: 10px;
    font-size: 11px;
    color: #a0a0a0;
    pointer-events: none;
}

.gv-hint {
    margin: 8px 0 0;
    font-size: 12px;
    color: var(--gv-muted);
    line-height: 1.35;
}

.gv-cta-block {
    margin-top: 8px;
}

.gv-submit,
#gift-voucher button.gv-submit,
#gift-voucher .gv-submit,
.gv-submit-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 6px;
    border: 0;
    border-radius: 10px;
    background: var(--gv-burgundy);
    color: #fff !important;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 15px 20px;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.1s ease;
}

.gv-submit:hover,
#gift-voucher button.gv-submit:hover,
.gv-submit-sticky:hover {
    background: var(--gv-burgundy-deep);
    color: #fff;
}

.gv-submit:active,
.gv-submit-sticky:active {
    transform: translateY(1px);
}

.gv-trust {
    margin-top: 14px;
    text-align: center;
}

.gv-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gv-burgundy);
}

.gv-trust-row i {
    margin-right: 4px;
}

.gv-pay-methods {
    display: block;
    max-width: 260px;
    width: 100%;
    height: auto;
    margin: 0 auto 8px;
    opacity: 0.95;
}

.gv-secure {
    display: block;
    margin: 0;
    font-size: 12px;
    color: var(--gv-muted);
    text-align: center;
    line-height: 1.4;
}

.gv-secure i {
    color: var(--gv-burgundy-soft);
}

/* Preview */
.gv-preview-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.gv-preview-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gv-burgundy);
    letter-spacing: 0.02em;
}

.gv-preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(92, 18, 40, 0.08);
    color: var(--gv-burgundy);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 999px;
}

.gv-coupon {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #6f1c48 0%, #5c1228 55%, #4a0e20 100%);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(60, 20, 35, 0.28);
    color: #fff;
    padding: 28px 24px 0;
    text-align: center;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.gv-coupon-art {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 35%, rgba(212, 168, 75, 0.12), transparent 40%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 600' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1.2'%3E%3Cpath d='M260 520V280c20-40 70-70 110-80'/%3E%3Cpath d='M280 360c30-20 70-30 100-28'/%3E%3Cpath d='M250 200h90v70h-90z'/%3E%3Cpath d='M265 200v-35h60v35'/%3E%3Cpath d='M220 480c40-90 20-160-10-220'/%3E%3Cpath d='M180 500c-10-80 10-150 40-200'/%3E%3Cpath d='M320 500c15-60 5-120-20-170'/%3E%3Ccircle cx='300' cy='140' r='18'/%3E%3Ccircle cx='330' cy='155' r='12'/%3E%3Ccircle cx='275' cy='155' r='12'/%3E%3C/svg%3E") right bottom / 70% auto no-repeat;
    pointer-events: none;
}

.gv-coupon-logo,
.gv-coupon-title,
.gv-coupon-amount,
.gv-coupon-card,
.gv-coupon-notes,
.gv-coupon-footer {
    position: relative;
    z-index: 1;
}

.gv-coupon-logo {
    margin-bottom: 8px;
}

.gv-coupon-title {
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 14px;
    color: #fff;
    line-height: 1.25;
}

.gv-coupon-amount {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin: 0 0 22px;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.gv-coupon-card {
    background: #fff;
    color: var(--gv-text);
    border-radius: 12px;
    padding: 20px 18px 16px;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    margin-bottom: 18px;
}

.gv-quote {
    font-family: Georgia, serif;
    font-size: 42px;
    line-height: 0.7;
    color: var(--gv-burgundy);
    margin-bottom: 6px;
    opacity: 0.85;
}

.gv-coupon-message {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.55;
    color: #333;
    min-height: 48px;
    word-break: break-word;
}

.gv-coupon-message strong {
    color: var(--gv-burgundy);
}

.gv-coupon-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    border-top: 1px dashed #d8d0d3;
    padding-top: 14px;
}

.gv-meta-item {
    flex: 1 1 140px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
}

.gv-meta-item i {
    color: var(--gv-burgundy);
    margin-top: 3px;
}

.gv-meta-label {
    display: block;
    color: var(--gv-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.gv-meta-value {
    display: block;
    font-weight: 600;
    color: #333;
    word-break: break-all;
}

.gv-coupon .gv-coupon-notes,
.gv-coupon .gv-coupon-notes p,
.gv-coupon .gv-coupon-notes i {
    color: #ffffff !important;
    opacity: 1 !important;
}

.gv-coupon-notes {
    text-align: left;
    font-size: 12px;
    line-height: 1.5;
    margin: 0 0 18px;
}

.gv-coupon-notes p {
    margin: 0 0 8px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.gv-coupon-notes i {
    margin-top: 2px;
    width: 14px;
    flex-shrink: 0;
}

.gv-coupon-footer {
    margin-top: auto;
    background: rgba(0, 0, 0, 0.22);
    margin-left: -24px;
    margin-right: -24px;
    padding: 12px 24px;
    font-size: 12px;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gv-sticky-cta {
    display: none;
}

.gv-page .flash-notice,
.gv-form .form-error,
#gift-voucher .error,
#gift-voucher ul li {
    color: #a11;
}

@media (max-width: 991px) {
    .gv-title {
        font-size: 32px;
    }

    .gv-coupon-amount {
        font-size: 34px;
    }

    .gv-benefits {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: max-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .gv-steps {
        flex-direction: column;
        align-items: flex-start;
        width: max-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .gv-steps li {
        padding: 4px 0;
        margin: 4px 0;
        width: 100%;
        justify-content: flex-start;
    }

    .gv-steps li + li {
        border-left: 0;
    }
}

@media (max-width: 767px) {
    .gv-page {
        padding: 24px 10px 88px;
        margin: -10px -10px 0;
    }

    .gv-form-card {
        padding: 22px 18px 18px;
        order: 1;
    }

    .gv-preview {
        order: 2;
    }

    .gv-layout {
        flex-direction: column;
    }

    .gv-preset {
        flex: 1 1 calc(33.33% - 8px);
        min-width: 0;
        padding: 12px 6px;
        font-size: 12px;
    }

    .gv-preset-featured {
        padding-top: 18px;
        padding-bottom: 10px;
    }

    .gv-coupon {
        min-height: 0;
        padding: 22px 16px 0;
    }

    .gv-coupon-title {
        font-size: 18px;
    }

    .gv-coupon-amount {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .gv-coupon-footer {
        margin-left: -16px;
        margin-right: -16px;
    }

    .gv-sticky-cta[hidden] {
        display: none !important;
    }

    .gv-sticky-cta:not([hidden]) {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1040;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
        backdrop-filter: blur(8px);
    }

    .gv-submit-sticky {
        margin: 0;
    }

    body.gv-has-sticky #wa,
    body.gv-has-sticky .wa-btn,
    body.gv-has-sticky [id*="whatsapp"] {
        bottom: 78px !important;
    }
}
