.enr-public-ui,
.enr-checkout-modal {
    --enr-wine: var(--enr-brand-wine, #3b0d12);
    --enr-ruby: var(--enr-brand-ruby, #8e0e16);
    --enr-gold: var(--enr-brand-gold, #d4b06a);
    --enr-beige: var(--enr-brand-beige, #f2d7b0);
    --enr-ink: var(--enr-brand-charcoal, #0b0b0d);
    --enr-paper: #fffdf9;
    --enr-muted: #746b67;
    --enr-line: rgba(59, 13, 18, .14);
    --enr-soft: rgba(242, 215, 176, .22);
    --enr-success: #177342;
    --enr-error: #a0202b;
    --enr-warning: #9a6412;
    color: var(--enr-ink);
    font-family: inherit;
    line-height: 1.55;
    box-sizing: border-box;
}

.enr-public-ui *,
.enr-public-ui *::before,
.enr-public-ui *::after,
.enr-checkout-modal *,
.enr-checkout-modal *::before,
.enr-checkout-modal *::after {
    box-sizing: border-box;
}

.enr-public-ui button,
.enr-public-ui input,
.enr-public-ui select,
.enr-public-ui textarea,
.enr-checkout-modal button,
.enr-checkout-modal input,
.enr-checkout-modal select,
.enr-checkout-modal textarea {
    font: inherit;
}

.enr-public-ui h2,
.enr-public-ui h3,
.enr-public-ui p,
.enr-public-ui dl,
.enr-public-ui dd,
.enr-public-ui figure,
.enr-checkout-modal h2,
.enr-checkout-modal h3,
.enr-checkout-modal p,
.enr-checkout-modal dl,
.enr-checkout-modal dd {
    margin-top: 0;
}

.enr-raffles-grid-wrap,
.enr-raffle-detail,
.enr-standalone-checkout,
.enr-verifier-shortcode {
    width: 100%;
}

.enr-raffles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 30px);
}

.enr-columns-1 .enr-raffles-grid { grid-template-columns: 1fr; }
.enr-columns-2 .enr-raffles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.enr-columns-3 .enr-raffles-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.enr-columns-4 .enr-raffles-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.enr-raffle-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--enr-paper);
    border: 1px solid var(--enr-line);
    border-radius: 22px;
    box-shadow: 0 14px 38px rgba(33, 15, 17, .08);
}

.enr-raffle-card-media,
.enr-raffle-detail-media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--enr-wine), #6a1822);
}

.enr-raffle-card-media {
    aspect-ratio: 4 / 3;
}

.enr-raffle-card-image,
.enr-raffle-detail-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.enr-raffle-image-placeholder {
    display: grid;
    place-items: center;
    min-height: 260px;
    color: var(--enr-gold);
    background:
        radial-gradient(circle at 30% 20%, rgba(212, 176, 106, .28), transparent 32%),
        linear-gradient(135deg, var(--enr-wine), #701c28);
}

.enr-raffle-image-placeholder span {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border: 1px solid rgba(212, 176, 106, .7);
    border-radius: 50%;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: .08em;
}

.enr-raffle-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
    padding: 7px 12px;
    color: var(--enr-wine);
    background: rgba(255, 253, 249, .94);
    border: 1px solid rgba(212, 176, 106, .72);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.enr-raffle-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.enr-raffle-card h3,
.enr-raffle-detail h2,
.enr-verifier-heading h2,
.enr-checkout-dialog-title {
    color: var(--enr-wine);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.08;
}

.enr-raffle-card h3 {
    margin-bottom: 10px;
    font-size: clamp(24px, 2.2vw, 32px);
}

.enr-raffle-card-body > p {
    margin-bottom: 20px;
    color: var(--enr-muted);
}

.enr-raffle-card-note {
    margin: -2px 0 18px !important;
    color: var(--enr-ruby) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.45 !important;
}

.enr-raffle-card-price,
.enr-raffle-detail-price {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 0;
    border-top: 1px solid var(--enr-line);
    border-bottom: 1px solid var(--enr-line);
}

.enr-raffle-card-price small,
.enr-raffle-detail-price small {
    color: var(--enr-muted);
}

.enr-raffle-card-price strong,
.enr-raffle-detail-price strong {
    color: var(--enr-ruby);
    font-size: 22px;
}

.enr-raffle-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 18px;
    margin-top: 16px;
    color: var(--enr-muted);
    font-size: 13px;
}

.enr-raffle-meta strong {
    color: var(--enr-wine);
}

.enr-progress {
    margin-top: 15px;
}

.enr-progress-track {
    overflow: hidden;
    height: 8px;
    background: rgba(59, 13, 18, .1);
    border-radius: 999px;
}

.enr-progress-track span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--enr-ruby), var(--enr-gold));
    border-radius: inherit;
}

.enr-progress small {
    display: block;
    margin-top: 6px;
    color: var(--enr-muted);
    text-align: right;
}

.enr-raffle-card-actions {
    margin-top: auto;
    padding-top: 22px;
}


/* =========================================================
   Raffle cards — visual refresh 1.1.1
   ========================================================= */

.enr-raffle-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #fffdf9;
    border: 1px solid rgba(59, 13, 18, .13);
    border-radius: 20px;
    box-shadow: 0 16px 38px rgba(54, 19, 25, .09);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.enr-raffle-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 176, 106, .62);
    box-shadow: 0 22px 46px rgba(54, 19, 25, .14);
}

.enr-raffle-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--enr-wine), #6a1822);
    border-bottom: 1px solid rgba(59, 13, 18, .12);
}

.enr-raffle-card-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .28s ease;
}

.enr-raffle-card:hover .enr-raffle-card-image {
    transform: scale(1.025);
}

.enr-raffle-card .enr-raffle-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    max-width: calc(100% - 30px);
    padding: 7px 14px;
    color: #4a2600;
    background: linear-gradient(180deg, #f5d67a, #c99325);
    border: 1px solid rgba(255, 248, 210, .88);
    border-radius: 999px;
    box-shadow: 0 5px 14px rgba(61, 32, 0, .18);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .055em;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: none;
}

.enr-raffle-card .enr-raffle-badge--tech,
.enr-raffle-card .enr-raffle-badge--tecnologia,
.enr-raffle-card .enr-raffle-badge--tecnología {
    color: #fff;
    background: linear-gradient(135deg, var(--enr-wine), var(--enr-ruby));
    border-color: rgba(255, 255, 255, .42);
}

.enr-raffle-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.enr-raffle-card h3 {
    min-height: 2.2em;
    margin: 0 0 19px;
    color: var(--enr-wine);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(24px, 2vw, 31px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.025em;
}

.enr-raffle-card-facts {
    display: grid;
    align-items: stretch;
    width: 100%;
    padding: 17px 0;
    border-top: 1px solid rgba(59, 13, 18, .12);
    border-bottom: 1px solid rgba(59, 13, 18, .12);
}

.enr-raffle-card-facts--3 {
    grid-template-columns: .92fr .72fr 1.36fr;
}

.enr-raffle-card-facts--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enr-raffle-card-fact {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 0 10px;
    text-align: center;
}

.enr-raffle-card-fact + .enr-raffle-card-fact {
    border-left: 1px solid rgba(59, 13, 18, .11);
}

.enr-raffle-card-fact-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 30px;
    color: #c98c13;
}

.enr-raffle-card-fact-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.enr-raffle-card-fact-copy {
    min-width: 0;
    display: block;
}

.enr-raffle-card-fact-copy small,
.enr-raffle-card-fact-copy strong {
    display: block;
    margin: 0;
}

.enr-raffle-card-fact-copy small {
    color: #716967;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.25;
}

.enr-raffle-card-fact-copy strong {
    margin-top: 4px;
    color: #171214;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.22;
    overflow-wrap: anywhere;
}

.enr-raffle-card-fact--date .enr-raffle-card-fact-copy strong {
    font-size: 13px;
}

.enr-raffle-card-fact-copy strong.is-pending {
    color: var(--enr-ruby);
}

.enr-raffle-card-progress {
    margin-top: 18px;
}

.enr-raffle-card-progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 9px;
    color: #342b2d;
    font-size: 12px;
    line-height: 1.35;
}

.enr-raffle-card-progress-head span {
    font-weight: 650;
}

.enr-raffle-card-progress-head strong {
    color: #51484a;
    font-weight: 700;
    white-space: nowrap;
}

.enr-raffle-card-progress .enr-progress-track {
    height: 8px;
    background: #e9e5e2;
    box-shadow: inset 0 1px 2px rgba(33, 15, 17, .08);
}

.enr-raffle-card-progress .enr-progress-track span {
    min-width: 4px;
    background: linear-gradient(90deg, var(--enr-wine), var(--enr-ruby));
}

.enr-raffle-card-actions {
    margin-top: auto;
    padding-top: 20px;
}

.enr-raffle-card-actions .enr-button-primary {
    min-height: 52px;
    gap: 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, #650717, #930d23);
    box-shadow: 0 10px 22px rgba(80, 7, 20, .2);
    font-size: 14px;
    font-weight: 800;
}

.enr-raffle-card-actions .enr-button-primary:hover {
    background: linear-gradient(135deg, #75081b, #a51029);
    box-shadow: 0 14px 28px rgba(80, 7, 20, .28);
}

.enr-raffle-card-actions .enr-button-arrow {
    width: 19px;
    height: 19px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .18s ease;
}

.enr-raffle-card-actions .enr-button-primary:hover .enr-button-arrow {
    transform: translateX(3px);
}

.enr-columns-4 .enr-raffle-card-facts--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.enr-columns-4 .enr-raffle-card-facts--3 .enr-raffle-card-fact--date {
    grid-column: 1 / -1;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(59, 13, 18, .11);
    border-left: 0;
}

.enr-button {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    text-align: center;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.enr-button:hover {
    transform: translateY(-1px);
}

.enr-button:focus-visible,
.enr-public-ui input:focus-visible,
.enr-public-ui select:focus-visible,
.enr-checkout-modal input:focus-visible,
.enr-checkout-modal select:focus-visible,
.enr-checkout-close:focus-visible,
.enr-verifier-tabs button:focus-visible {
    outline: 3px solid rgba(212, 176, 106, .55);
    outline-offset: 2px;
}

.enr-button-primary {
    width: 100%;
    color: #fff !important;
    background: linear-gradient(135deg, var(--enr-wine), var(--enr-ruby));
    box-shadow: 0 10px 22px rgba(59, 13, 18, .18);
}

.enr-button-primary:hover {
    color: #fff !important;
    box-shadow: 0 14px 26px rgba(59, 13, 18, .24);
}

.enr-button-secondary {
    margin-top: 12px;
    color: var(--enr-wine) !important;
    background: #fff;
    border-color: var(--enr-line);
}

.enr-button-disabled {
    width: 100%;
    color: #6d6461;
    background: #eee9e5;
    cursor: not-allowed;
}

.enr-public-empty,
.enr-public-message {
    width: 100%;
    padding: 22px;
    background: var(--enr-paper);
    border: 1px solid var(--enr-line);
    border-radius: 16px;
}

.enr-public-empty {
    display: grid;
    gap: 5px;
    text-align: center;
}

.enr-public-empty span,
.enr-public-message {
    color: var(--enr-muted);
}

.enr-public-message.is-warning {
    color: #70470c;
    background: #fff8e7;
    border-color: rgba(154, 100, 18, .3);
}

.enr-public-message.is-empty {
    text-align: center;
}

.enr-raffle-detail {
    padding: clamp(18px, 3vw, 34px);
    background: var(--enr-paper);
    border: 1px solid var(--enr-line);
    border-radius: 24px;
    box-shadow: 0 18px 46px rgba(33, 15, 17, .08);
}

.enr-raffle-detail-grid {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 4vw, 60px);
    align-items: start;
}

.enr-raffle-detail-media {
    min-height: 420px;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
}

.enr-raffle-detail-copy {
    padding: 10px 0;
}

.enr-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--enr-ruby);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.enr-raffle-detail h2,
.enr-verifier-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(36px, 5vw, 60px);
}

.enr-raffle-lead {
    color: var(--enr-muted);
    font-size: 18px;
}

.enr-raffle-description {
    margin: 24px 0;
    color: #413a37;
}

.enr-raffle-inline-checkout {
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1px solid var(--enr-line);
}

.enr-modal-open {
    overflow: hidden;
}

.enr-checkout-modal[hidden] {
    display: none !important;
}

.enr-checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: grid;
    place-items: center;
    padding: 24px;
}

.enr-checkout-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 13, .72);
    backdrop-filter: blur(6px);
}

.enr-checkout-dialog {
    position: relative;
    z-index: 1;
    overflow-y: auto;
    width: min(940px, 100%);
    max-height: calc(100vh - 48px);
    padding: clamp(22px, 3vw, 38px);
    background: var(--enr-paper);
    border: 1px solid rgba(212, 176, 106, .5);
    border-radius: 22px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

.enr-checkout-dialog-title {
    margin-bottom: 18px;
    padding-right: 48px;
    font-size: clamp(28px, 4vw, 42px);
}

.enr-checkout-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--enr-wine);
    background: #fff;
    border: 1px solid var(--enr-line);
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.enr-checkout {
    width: 100%;
}

.enr-standalone-checkout .enr-checkout {
    padding: clamp(22px, 4vw, 40px);
    background: var(--enr-paper);
    border: 1px solid var(--enr-line);
    border-radius: 22px;
    box-shadow: 0 18px 46px rgba(33, 15, 17, .08);
}

.enr-checkout-notice {
    display: grid;
    gap: 4px;
    margin-bottom: 18px;
    padding: 15px 17px;
    color: var(--enr-muted);
    background: var(--enr-soft);
    border: 1px solid var(--enr-line);
    border-radius: 13px;
}

.enr-checkout-notice strong {
    color: var(--enr-wine);
}

.enr-checkout-notice.is-error {
    color: var(--enr-error);
    background: #fff2f3;
    border-color: rgba(160, 32, 43, .25);
}

.enr-checkout-notice.is-warning {
    color: var(--enr-warning);
    background: #fff8e7;
    border-color: rgba(154, 100, 18, .25);
}

.enr-checkout-notice.is-loading strong::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    border: 2px solid rgba(59, 13, 18, .2);
    border-top-color: var(--enr-ruby);
    border-radius: 50%;
    vertical-align: -2px;
    animation: enr-spin .8s linear infinite;
}

.enr-checkout-summary {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    padding: 15px;
    background: rgba(242, 215, 176, .16);
    border: 1px solid var(--enr-line);
    border-radius: 16px;
}

.enr-checkout-summary-image {
    overflow: hidden;
    display: grid;
    place-items: center;
    width: 90px;
    height: 90px;
    color: var(--enr-gold);
    background: var(--enr-wine);
    border-radius: 12px;
    font-weight: 800;
}

.enr-checkout-summary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enr-checkout-summary small,
.enr-checkout-summary p,
.enr-checkout-summary span {
    color: var(--enr-muted);
}

.enr-checkout-summary h3 {
    margin: 3px 0 5px;
    color: var(--enr-wine);
    font-size: 24px;
}

.enr-checkout-summary p {
    margin-bottom: 3px;
}

.enr-checkout-summary p strong {
    color: var(--enr-ruby);
}

.enr-field,
.enr-payment-methods {
    display: grid;
    gap: 7px;
    min-width: 0;
    margin: 0 0 17px;
}

.enr-field > span,
.enr-payment-methods legend {
    color: var(--enr-wine);
    font-size: 13px;
    font-weight: 800;
}

.enr-field > span small {
    color: var(--enr-muted);
    font-weight: 500;
}

.enr-field input,
.enr-field select {
    width: 100%;
    min-height: 49px;
    padding: 10px 13px;
    color: var(--enr-ink);
    background: #fff;
    border: 1px solid rgba(59, 13, 18, .22);
    border-radius: 11px;
}

.enr-field input[type='file'] {
    padding: 10px;
}

.enr-field--receipt {
    gap: 10px !important;
}

.enr-receipt-label {
    color: var(--enr-wine) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}

.enr-receipt-label b {
    color: var(--enr-ruby) !important;
}

.enr-receipt-dropzone {
    position: relative !important;
    width: 100% !important;
    min-height: 210px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 11px !important;
    padding: 28px 22px !important;
    overflow: hidden !important;
    color: #f7f7f8 !important;
    background: #0b1119 !important;
    border: 3px dashed rgba(151, 24, 36, .78) !important;
    border-radius: 24px !important;
    text-align: center !important;
    cursor: pointer !important;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025) !important;
    transition: border-color .18s ease, background-color .18s ease, transform .18s ease !important;
}

.enr-receipt-dropzone:hover,
.enr-receipt-dropzone:focus-within,
.enr-receipt-dropzone.is-dragging {
    background: #0e1621 !important;
    border-color: #c61d2c !important;
    outline: none !important;
    transform: translateY(-1px) !important;
}

.enr-receipt-dropzone.is-selected {
    border-color: #d4b06a !important;
}

.enr-receipt-input {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.enr-receipt-icon {
    width: 72px !important;
    height: 58px !important;
    display: grid !important;
    place-items: center !important;
    color: #bd1a29 !important;
}

.enr-receipt-icon svg {
    width: 64px !important;
    height: 48px !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 4 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}

.enr-receipt-dropzone strong {
    display: block !important;
    color: #f4f4f5 !important;
    font-size: clamp(18px, 2vw, 24px) !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
}

.enr-receipt-dropzone small {
    display: block !important;
    margin: 0 !important;
    color: #777f8b !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
}

.enr-receipt-selected {
    max-width: 100% !important;
    padding: 7px 11px !important;
    overflow: hidden !important;
    color: #f4d891 !important;
    background: rgba(212, 176, 106, .1) !important;
    border: 1px solid rgba(212, 176, 106, .32) !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.enr-field small {
    color: var(--enr-muted);
    font-size: 12px;
}

.enr-field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.enr-checkout-total {
    display: grid;
    align-content: center;
    justify-items: end;
    min-height: 72px;
    padding: 11px 14px;
    background: var(--enr-wine);
    border-radius: 12px;
}

.enr-checkout-total small {
    color: rgba(255, 255, 255, .72);
}

.enr-checkout-total strong {
    color: var(--enr-gold);
    font-size: 22px;
}

.enr-payment-methods {
    padding: 0;
    border: 0;
}

.enr-payment-methods legend {
    margin-bottom: 8px;
}

.enr-payment-methods [data-enr-payment-methods] {
    display: grid;
    gap: 10px;
}

.enr-payment-option {
    position: relative;
    display: grid;
    grid-template-columns: auto 44px minmax(0, 1fr) auto;
    gap: 11px;
    align-items: center;
    padding: 13px;
    background: #fff;
    border: 1px solid var(--enr-line);
    border-radius: 13px;
    cursor: pointer;
}

.enr-payment-option:has(input:checked) {
    background: rgba(242, 215, 176, .18);
    border-color: var(--enr-gold);
    box-shadow: inset 0 0 0 1px var(--enr-gold);
}

.enr-payment-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--enr-ruby);
}

.enr-payment-option-visual {
    overflow: hidden;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--enr-gold);
    background: var(--enr-wine);
    border-radius: 10px;
}

.enr-payment-option-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.enr-payment-option-copy {
    display: grid;
    min-width: 0;
}

.enr-payment-option-copy strong {
    color: var(--enr-wine);
}

.enr-payment-option-copy small {
    overflow-wrap: anywhere;
    color: var(--enr-muted);
}

.enr-payment-link {
    width: fit-content;
    margin-top: 4px;
    color: var(--enr-ruby) !important;
    font-size: 12px;
    font-weight: 800;
}

.enr-payment-check {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    color: transparent;
    border: 1px solid var(--enr-line);
    border-radius: 50%;
}

.enr-payment-option:has(input:checked) .enr-payment-check {
    color: #fff;
    background: var(--enr-success);
    border-color: var(--enr-success);
}

.enr-consent {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-bottom: 18px;
    color: var(--enr-muted);
    font-size: 12px;
}

.enr-consent input {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--enr-ruby);
}

.enr-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.enr-checkout-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--enr-line);
}

.enr-checkout-submit-row .enr-button {
    width: auto;
    min-width: 260px;
}

.enr-session-timer {
    color: var(--enr-muted);
    font-size: 12px;
}

.enr-checkout-result,
.enr-verifier-result {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--enr-line);
    border-radius: 16px;
}

.enr-checkout-result.is-success,
.enr-verifier-result.is-success {
    background: #f0fbf4;
    border-color: rgba(23, 115, 66, .25);
}

.enr-checkout-result.is-error,
.enr-verifier-result.is-error {
    background: #fff2f3;
    border-color: rgba(160, 32, 43, .25);
}

.enr-result-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #fff;
    background: var(--enr-success);
    border-radius: 50%;
    font-weight: 900;
}

.is-error > .enr-result-icon,
.is-empty > .enr-result-icon {
    background: var(--enr-error);
}

.enr-checkout-result h3,
.enr-verifier-result h3 {
    margin-bottom: 5px;
    color: var(--enr-wine);
}

.enr-checkout-result p,
.enr-verifier-result p {
    margin-bottom: 0;
    color: var(--enr-muted);
}

.enr-order-confirmation {
    display: grid;
    gap: 2px;
    margin-top: 14px;
    padding: 13px;
    background: rgba(255, 255, 255, .72);
    border: 1px dashed rgba(23, 115, 66, .35);
    border-radius: 10px;
}

.enr-order-confirmation small {
    color: var(--enr-muted);
}

.enr-order-confirmation strong {
    color: var(--enr-wine);
    font-size: 24px;
    letter-spacing: .04em;
}

.enr-verifier-shortcode {
    max-width: 900px;
    margin-inline: auto;
}

.enr-verifier-heading {
    max-width: 720px;
    margin: 0 auto 26px;
    text-align: center;
}

.enr-verifier-heading p {
    color: var(--enr-muted);
    font-size: 17px;
}

.enr-verifier-card {
    overflow: hidden;
    background: var(--enr-paper);
    border: 1px solid var(--enr-line);
    border-radius: 22px;
    box-shadow: 0 18px 46px rgba(33, 15, 17, .08);
}

.enr-verifier-tabs {
    display: flex;
    gap: 8px;
    padding: 14px;
    background: rgba(242, 215, 176, .18);
    border-bottom: 1px solid var(--enr-line);
}

.enr-verifier-tabs button {
    flex: 1;
    min-height: 44px;
    padding: 9px 13px;
    color: var(--enr-muted);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
}

.enr-verifier-tabs button[aria-selected='true'] {
    color: #fff;
    background: var(--enr-wine);
    box-shadow: 0 8px 18px rgba(59, 13, 18, .15);
}

.enr-verifier-panels {
    padding: clamp(22px, 4vw, 38px);
}

.enr-verifier-form[hidden] {
    display: none !important;
}

.enr-verifier-form .enr-button {
    width: 100%;
}

.enr-verifier-result {
    margin: 0 clamp(22px, 4vw, 38px) clamp(22px, 4vw, 38px);
}

.enr-verifier-result.is-loading {
    align-items: center;
}

.enr-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(59, 13, 18, .16);
    border-top-color: var(--enr-ruby);
    border-radius: 50%;
    animation: enr-spin .8s linear infinite;
}

.enr-result-heading {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.enr-verifier-result.is-list {
    grid-template-columns: 1fr;
}

.enr-public-order-list {
    display: grid;
    gap: 12px;
}

.enr-public-order-card {
    padding: 17px;
    background: #fff;
    border: 1px solid var(--enr-line);
    border-radius: 13px;
}

.enr-public-order-card header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.enr-public-order-card header > div {
    display: grid;
}

.enr-public-order-card header small,
.enr-public-order-card dt {
    color: var(--enr-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.enr-public-order-card header strong {
    color: var(--enr-wine);
    font-size: 18px;
}

.enr-public-order-status {
    padding: 5px 9px;
    color: #6b4b0b;
    background: #fff5d9;
    border: 1px solid rgba(154, 100, 18, .22);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.enr-public-order-status.is-validated {
    color: var(--enr-success);
    background: #eef9f2;
    border-color: rgba(23, 115, 66, .22);
}

.enr-public-order-status.is-rejected,
.enr-public-order-status.is-cancelled {
    color: var(--enr-error);
    background: #fff2f3;
    border-color: rgba(160, 32, 43, .22);
}

.enr-public-order-card dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 0;
}

.enr-public-order-card dl > div {
    display: grid;
}

.enr-public-order-card dd {
    color: var(--enr-ink);
    font-weight: 700;
}

.enr-public-order-tickets {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--enr-line);
}

.enr-public-order-tickets > strong {
    color: var(--enr-wine);
    font-size: 13px;
}

.enr-public-order-tickets > div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 8px;
}

.enr-public-order-tickets span,
.enr-public-ticket-result strong {
    padding: 7px 10px;
    color: var(--enr-wine);
    background: var(--enr-soft);
    border: 1px solid rgba(212, 176, 106, .5);
    border-radius: 8px;
    font-weight: 900;
}

.enr-public-order-pending {
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid var(--enr-line);
    font-size: 12px;
}

.enr-public-ticket-result {
    display: grid;
    gap: 5px;
    margin-top: 12px;
}

.enr-public-ticket-result small {
    color: var(--enr-muted);
}

.enr-public-ticket-result strong {
    width: fit-content;
    font-size: 24px;
}

@keyframes enr-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 960px) {
    .enr-columns-2 .enr-raffles-grid,
    .enr-columns-3 .enr-raffles-grid,
    .enr-columns-4 .enr-raffles-grid {
        grid-template-columns: 1fr;
    }

    .enr-raffle-detail-grid {
        grid-template-columns: 1fr;
    }

    .enr-raffle-detail-media {
        min-height: 340px;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 680px) {
    .enr-raffles-grid {
        grid-template-columns: 1fr;
    }

    .enr-raffle-card-body {
        padding: 20px;
    }

    .enr-field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .enr-checkout-total {
        justify-items: start;
        margin-bottom: 17px;
    }

    .enr-checkout-submit-row {
        align-items: stretch;
        flex-direction: column;
    }

    .enr-checkout-submit-row .enr-button {
        width: 100%;
        min-width: 0;
    }

    .enr-checkout-modal {
        padding: 0;
        align-items: end;
    }

    .enr-checkout-dialog {
        width: 100%;
        max-height: 94vh;
        padding: 22px 18px;
        border-radius: 20px 20px 0 0;
    }

    .enr-verifier-tabs {
        overflow-x: auto;
    }

    .enr-verifier-tabs button {
        flex: 0 0 auto;
        min-width: 128px;
    }

    .enr-public-order-card dl {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .enr-public-ui *,
    .enr-checkout-modal * {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Compact card behavior on phones. */
@media (max-width: 680px) {
    .enr-raffles-grid {
        gap: 20px;
    }

    .enr-raffle-card {
        border-radius: 18px;
        box-shadow: 0 13px 30px rgba(54, 19, 25, .1);
    }

    .enr-raffle-card:hover {
        transform: none;
    }

    .enr-raffle-card-media {
        aspect-ratio: 16 / 10;
    }

    .enr-raffle-card .enr-raffle-badge {
        top: 12px;
        left: 12px;
        padding: 6px 12px;
        font-size: 11px;
    }

    .enr-raffle-card-body {
        padding: 18px;
    }

    .enr-raffle-card h3 {
        min-height: 0;
        margin-bottom: 15px;
        font-size: clamp(23px, 7vw, 28px);
        line-height: 1.08;
    }

    .enr-raffle-card-facts {
        padding: 14px 0;
    }

    .enr-raffle-card-facts--3 {
        grid-template-columns: .88fr .68fr 1.34fr;
    }

    .enr-raffle-card-fact {
        gap: 6px;
        padding: 0 6px;
    }

    .enr-raffle-card-fact-icon {
        width: 25px;
        height: 25px;
        flex-basis: 25px;
    }

    .enr-raffle-card-fact-copy small {
        font-size: 9.5px;
        line-height: 1.2;
    }

    .enr-raffle-card-fact-copy strong {
        margin-top: 3px;
        font-size: 14px;
        line-height: 1.16;
    }

    .enr-raffle-card-fact--date .enr-raffle-card-fact-copy strong {
        font-size: 11px;
    }

    .enr-raffle-card-progress {
        margin-top: 15px;
    }

    .enr-raffle-card-progress-head {
        margin-bottom: 7px;
        font-size: 11px;
    }

    .enr-raffle-card-progress .enr-progress-track {
        height: 7px;
    }

    .enr-raffle-card-actions {
        padding-top: 16px;
    }

    .enr-raffle-card-actions .enr-button-primary {
        min-height: 49px;
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    .enr-raffle-card-body {
        padding: 16px;
    }

    .enr-raffle-card-fact {
        padding: 0 4px;
    }

    .enr-raffle-card-fact-copy small {
        font-size: 9px;
    }

    .enr-raffle-card-fact-copy strong {
        font-size: 13px;
    }

    .enr-raffle-card-fact--date .enr-raffle-card-fact-copy strong {
        font-size: 10px;
    }
}

/* =========================================================
   Compact checkout and visual payment selector — v1.1.3
   Encapsulated to prevent Elementor global styles.
   ========================================================= */

.enr-checkout-modal,
.enr-checkout-modal *,
.enr-standalone-checkout,
.enr-standalone-checkout * {
    box-sizing: border-box !important;
    font-family: "Montserrat", Arial, sans-serif !important;
}

.enr-checkout-modal button,
.enr-checkout-modal input,
.enr-checkout-modal select,
.enr-checkout-modal textarea,
.enr-checkout-modal a,
.enr-standalone-checkout button,
.enr-standalone-checkout input,
.enr-standalone-checkout select,
.enr-standalone-checkout textarea,
.enr-standalone-checkout a {
    text-transform: none !important;
    letter-spacing: normal !important;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent !important;
    touch-action: manipulation !important;
}

.enr-checkout-modal {
    padding: 18px !important;
}

.enr-checkout-backdrop {
    background: rgba(24, 5, 9, .74) !important;
    backdrop-filter: blur(7px) !important;
}

.enr-checkout-dialog {
    width: min(860px, 100%) !important;
    max-height: calc(100dvh - 36px) !important;
    padding: 24px !important;
    background: #fffdf9 !important;
    border: 1px solid rgba(212, 176, 106, .62) !important;
    border-radius: 20px !important;
    box-shadow: 0 28px 78px rgba(18, 3, 7, .38) !important;
    scrollbar-color: rgba(59, 13, 18, .42) transparent !important;
}

.enr-checkout-dialog-title {
    margin: 0 0 13px !important;
    padding-right: 48px !important;
    color: #3b0d12 !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(25px, 3.2vw, 33px) !important;
    font-weight: 700 !important;
    line-height: 1.08 !important;
}

.enr-checkout-close {
    top: 14px !important;
    right: 14px !important;
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    color: #fff !important;
    background: #6c1020 !important;
    border: 1px solid #d4b06a !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    font-size: 22px !important;
    line-height: 1 !important;
}

.enr-checkout-close:hover,
.enr-checkout-close:focus-visible {
    color: #3b0d12 !important;
    background: #d4b06a !important;
    border-color: #d4b06a !important;
    transform: none !important;
}

.enr-checkout-notice {
    margin-bottom: 12px !important;
    padding: 11px 13px !important;
    gap: 2px !important;
    border-radius: 11px !important;
    font-size: 12px !important;
}

.enr-checkout-summary {
    display: block !important;
    margin-bottom: 12px !important;
    padding: 11px 13px !important;
    background: #fbf5eb !important;
    border: 1px solid rgba(59, 13, 18, .13) !important;
    border-radius: 13px !important;
}

.enr-checkout-summary-copy {
    min-width: 0 !important;
}

.enr-checkout-summary h3 {
    margin: 0 0 2px !important;
    color: #3b0d12 !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 19px !important;
    line-height: 1.12 !important;
}

.enr-checkout-summary p {
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
}

.enr-checkout-summary p strong {
    color: #a30d18 !important;
}

.enr-field,
.enr-payment-methods {
    gap: 5px !important;
    margin-bottom: 12px !important;
}

.enr-field > span,
.enr-payment-methods legend {
    color: #3b0d12 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}

.enr-field input,
.enr-field select {
    min-height: 44px !important;
    padding: 9px 12px !important;
    color: #211719 !important;
    background: #fff !important;
    border: 1px solid rgba(59, 13, 18, .23) !important;
    border-radius: 9px !important;
    box-shadow: none !important;
}

.enr-field input:focus,
.enr-field select:focus {
    border-color: #b98d39 !important;
    outline: 2px solid rgba(212, 176, 106, .2) !important;
    box-shadow: none !important;
}

.enr-field-row {
    gap: 12px !important;
}

.enr-checkout-total {
    min-height: 64px !important;
    padding: 10px 13px !important;
    background: linear-gradient(135deg, #4c1018, #2f070c) !important;
    border: 1px solid rgba(212, 176, 106, .38) !important;
    border-radius: 10px !important;
}

.enr-checkout-total small {
    color: rgba(255, 255, 255, .7) !important;
    font-size: 11px !important;
}

.enr-checkout-total strong {
    color: #e0b85e !important;
    font-size: 20px !important;
}

.enr-payment-methods {
    padding: 0 !important;
    border: 0 !important;
}

.enr-payment-methods legend {
    margin-bottom: 7px !important;
}

.enr-payment-selector,
.enr-payment-methods [data-enr-payment-methods] {
    display: flex !important;
    gap: 9px !important;
    overflow-x: auto !important;
    padding: 2px 2px 8px !important;
    scrollbar-width: thin !important;
    scroll-snap-type: x proximity !important;
}

.enr-payment-tab {
    position: relative !important;
    flex: 0 0 82px !important;
    min-width: 82px !important;
    min-height: 76px !important;
    display: grid !important;
    grid-template-rows: 45px auto !important;
    place-items: center !important;
    gap: 5px !important;
    padding: 8px 7px 7px !important;
    overflow: hidden !important;
    color: #3b0d12 !important;
    background: #fff !important;
    border: 1px solid rgba(59, 13, 18, .16) !important;
    border-radius: 13px !important;
    box-shadow: 0 5px 14px rgba(47, 7, 12, .05) !important;
    cursor: pointer !important;
    scroll-snap-align: start !important;
}

.enr-payment-tab:has(input:checked) {
    background: #fffaf0 !important;
    border-color: #d4b06a !important;
    box-shadow: inset 0 0 0 1px #d4b06a, 0 8px 18px rgba(47, 7, 12, .08) !important;
}

.enr-payment-tab-input {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}

.enr-payment-tab-visual {
    width: 45px !important;
    height: 45px !important;
    display: grid !important;
    place-items: center !important;
    overflow: hidden !important;
    color: #d4b06a !important;
    background: #fff !important;
    border: 1px solid rgba(59, 13, 18, .12) !important;
    border-radius: 10px !important;
}

.enr-payment-tab-visual img {
    width: 100% !important;
    height: 100% !important;
    padding: 4px !important;
    object-fit: contain !important;
    background: #fff !important;
}

.enr-payment-tab-name {
    width: 100% !important;
    overflow: hidden !important;
    color: #3b0d12 !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    text-align: center !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

.enr-payment-tab-check {
    position: absolute !important;
    top: 5px !important;
    right: 5px !important;
    width: 17px !important;
    height: 17px !important;
    display: none !important;
    place-items: center !important;
    color: #fff !important;
    background: #177342 !important;
    border-radius: 50% !important;
    font-size: 10px !important;
    font-weight: 900 !important;
}

.enr-payment-tab:has(input:checked) .enr-payment-tab-check {
    display: grid !important;
}

.enr-payment-details {
    margin-top: 3px !important;
}

.enr-payment-details[hidden] {
    display: none !important;
}

.enr-payment-account {
    overflow: hidden !important;
    padding: 14px !important;
    color: #fff !important;
    background:
        radial-gradient(circle at 0 0, rgba(212, 176, 106, .16), transparent 34%),
        linear-gradient(135deg, #3b0d12 0%, #24070b 100%) !important;
    border: 1px solid rgba(212, 176, 106, .55) !important;
    border-radius: 14px !important;
    box-shadow: 0 10px 22px rgba(36, 7, 11, .13) !important;
}

.enr-payment-account-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin-bottom: 10px !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
}

.enr-payment-account-head small,
.enr-payment-account-head strong {
    display: block !important;
}

.enr-payment-account-head small {
    color: rgba(255, 255, 255, .6) !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

.enr-payment-account-head strong {
    margin-top: 2px !important;
    color: #f2d7b0 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
}

.enr-payment-account-link {
    flex: 0 0 auto !important;
    min-height: 34px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 7px 11px !important;
    color: #2f070c !important;
    background: #d4b06a !important;
    border: 1px solid #d4b06a !important;
    border-radius: 8px !important;
    font-size: 10px !important;
    font-weight: 800 !important;
}

.enr-payment-detail-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

.enr-payment-detail-item {
    min-width: 0 !important;
    min-height: 58px !important;
    padding: 10px !important;
    background: rgba(255, 255, 255, .065) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    border-radius: 10px !important;
}

.enr-payment-detail-item > small {
    display: block !important;
    margin-bottom: 4px !important;
    color: rgba(242, 215, 176, .72) !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.enr-payment-detail-value {
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
}

.enr-payment-detail-value strong {
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
    color: #fff !important;
    font-size: 12px !important;
    line-height: 1.3 !important;
}

.enr-payment-copy {
    flex: 0 0 auto !important;
    min-height: 28px !important;
    padding: 5px 8px !important;
    color: #f2d7b0 !important;
    background: rgba(212, 176, 106, .12) !important;
    border: 1px solid rgba(212, 176, 106, .55) !important;
    border-radius: 7px !important;
    box-shadow: none !important;
    font-size: 9px !important;
    font-weight: 800 !important;
}

.enr-payment-copy:hover,
.enr-payment-copy:focus-visible,
.enr-payment-copy.is-copied {
    color: #2f070c !important;
    background: #d4b06a !important;
    border-color: #d4b06a !important;
    transform: none !important;
}

.enr-consent {
    margin-bottom: 12px !important;
}

.enr-checkout-submit-row {
    gap: 14px !important;
    padding-top: 13px !important;
}

.enr-checkout-submit-row .enr-button-primary {
    min-width: 245px !important;
    min-height: 46px !important;
    color: #fff !important;
    background: linear-gradient(135deg, #7c1020, #4d0a13) !important;
    border: 1px solid #d4b06a !important;
    border-radius: 9px !important;
    box-shadow: 0 8px 18px rgba(59, 13, 18, .16) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
}

.enr-checkout-submit-row .enr-button-primary:hover,
.enr-checkout-submit-row .enr-button-primary:focus-visible {
    color: #3b0d12 !important;
    background: #d4b06a !important;
    transform: none !important;
}



.enr-combo-packs {
    margin: 0 0 14px !important;
}

.enr-combo-packs-head {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin-bottom: 9px !important;
}

.enr-combo-packs-head strong {
    color: #3b0d12 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
}

.enr-combo-packs-head span {
    color: #7a5c52 !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
    text-align: right !important;
}

.enr-combo-packs-grid {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 9px !important;
}

.enr-combo-pack {
    min-height: 120px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 3px !important;
    padding: 10px 8px !important;
    color: #ffffff !important;
    background: linear-gradient(180deg, #17253e 0%, #0e1a2d 100%) !important;
    border: 1px solid rgba(212, 176, 106, .2) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 24px rgba(17, 28, 46, .16) !important;
    cursor: pointer !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
}

.enr-combo-pack:hover,
.enr-combo-pack:focus-visible,
.enr-combo-pack.is-active {
    transform: translateY(-2px) !important;
    border-color: #d4b06a !important;
    box-shadow: 0 14px 28px rgba(17, 28, 46, .2), inset 0 0 0 1px rgba(212, 176, 106, .55) !important;
    outline: none !important;
}

.enr-combo-pack-tier {
    color: rgba(255, 255, 255, .88) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    line-height: 1.1 !important;
    text-transform: uppercase !important;
}

.enr-combo-pack-qty {
    color: #ffffff !important;
    font-size: 38px !important;
    font-weight: 900 !important;
    line-height: .92 !important;
    letter-spacing: -.04em !important;
}

.enr-combo-pack-unit {
    color: rgba(255, 255, 255, .82) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .16em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
}

.enr-combo-pack-price {
    min-width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 32px !important;
    padding: 5px 8px !important;
    color: #fff7e2 !important;
    background: rgba(0, 0, 0, .16) !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
}

.enr-combo-pack--basic {
    background: linear-gradient(180deg, #7a1020 0%, #4b0912 100%) !important;
}

.enr-combo-pack--gold {
    background: linear-gradient(180deg, #9a7418 0%, #5d420b 100%) !important;
}

.enr-combo-pack--platinum {
    background: linear-gradient(180deg, #687487 0%, #343d4a 100%) !important;
}

.enr-combo-pack--infinite {
    background: linear-gradient(180deg, #5d3f82 0%, #33224d 100%) !important;
}

.enr-combo-pack--black {
    background: linear-gradient(180deg, #252525 0%, #090909 100%) !important;
    border-color: rgba(212, 176, 106, .62) !important;
}

.enr-combo-pack--iphone-2 {
    background: linear-gradient(180deg, #334c72 0%, #17263d 100%) !important;
}

.enr-combo-pack--iphone-5 {
    background: linear-gradient(180deg, #7b1730 0%, #420a19 100%) !important;
}

.enr-combo-pack--iphone-11 {
    background: linear-gradient(180deg, #8c6b1e 0%, #50380c 100%) !important;
}

.enr-combo-pack--iphone-16 {
    background: linear-gradient(180deg, #292929 0%, #070707 100%) !important;
    border-color: rgba(212, 176, 106, .62) !important;
}

.enr-combo-pack--base {
    background: linear-gradient(180deg, #6f1332 0%, #480a20 100%) !important;
}


@media (max-width: 680px) {
    .enr-checkout-modal {
        align-items: end !important;
        padding: 0 !important;
    }

    .enr-checkout-dialog {
        width: 100% !important;
        max-height: 94dvh !important;
        padding: 20px 15px calc(18px + env(safe-area-inset-bottom, 0px)) !important;
        border-radius: 18px 18px 0 0 !important;
    }

    .enr-checkout-dialog-title {
        margin-bottom: 10px !important;
        font-size: 24px !important;
    }

    .enr-checkout-summary {
        margin-bottom: 10px !important;
        padding: 9px 10px !important;
    }

    .enr-checkout-summary h3 {
        font-size: 16px !important;
    }

    .enr-raffle-card-note {
        margin-bottom: 14px !important;
        font-size: 12px !important;
        line-height: 1.4 !important;
    }

    .enr-receipt-dropzone {
        min-height: 178px !important;
        gap: 9px !important;
        padding: 22px 16px !important;
        border-width: 2px !important;
        border-radius: 18px !important;
    }

    .enr-receipt-icon {
        width: 62px !important;
        height: 50px !important;
    }

    .enr-receipt-icon svg {
        width: 56px !important;
        height: 42px !important;
    }

    .enr-receipt-dropzone strong {
        font-size: 18px !important;
    }

    .enr-receipt-dropzone small {
        font-size: 12px !important;
    }

    .enr-field input,
    .enr-field select {
        min-height: 44px !important;
        font-size: 16px !important;
    }

    .enr-payment-selector,
    .enr-payment-methods [data-enr-payment-methods] {
        margin-right: -15px !important;
        padding-right: 15px !important;
    }

    .enr-combo-packs-head {
        align-items: flex-start !important;
        flex-direction: column !important;
    }

    .enr-combo-packs-head span {
        text-align: left !important;
    }

    .enr-combo-packs-grid {
        display: flex !important;
        gap: 8px !important;
        overflow-x: auto !important;
        padding: 2px 0 8px !important;
        scrollbar-width: thin !important;
        scroll-snap-type: x proximity !important;
    }

    .enr-combo-pack {
        flex: 0 0 96px !important;
        min-width: 96px !important;
        min-height: 108px !important;
        padding: 9px 7px !important;
        scroll-snap-align: start !important;
    }

    .enr-combo-pack-qty {
        font-size: 32px !important;
    }

    .enr-combo-pack-unit {
        font-size: 10px !important;
        letter-spacing: .12em !important;
    }

    .enr-combo-pack-price {
        min-height: 30px !important;
        font-size: 11px !important;
    }

    .enr-payment-tab {
        flex-basis: 75px !important;
        min-width: 75px !important;
        min-height: 71px !important;
    }

    .enr-payment-detail-grid {
        grid-template-columns: 1fr !important;
    }

    .enr-payment-detail-item {
        min-height: 52px !important;
    }

    .enr-payment-account-head {
        align-items: flex-start !important;
        flex-direction: column !important;
    }

    .enr-payment-account-link {
        width: 100% !important;
    }

    .enr-checkout-submit-row {
        align-items: stretch !important;
        flex-direction: column !important;
    }

    .enr-checkout-submit-row .enr-button-primary {
        width: 100% !important;
        min-width: 0 !important;
    }
}


/* =========================================================
   Raffle CTA — text and arrow in one line (v1.1.6)
   ========================================================= */

.enr-public-ui .enr-raffle-card-actions .enr-button-primary {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 9px !important;
    white-space: nowrap !important;
}

.enr-public-ui .enr-raffle-card-actions .enr-button-primary > span {
    display: inline-block !important;
    flex: 0 1 auto !important;
    min-width: 0 !important;
    white-space: nowrap !important;
}

.enr-public-ui .enr-raffle-card-actions .enr-button-arrow {
    display: block !important;
    flex: 0 0 18px !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
}

@media (max-width: 420px) {
    .enr-public-ui .enr-raffle-card-actions .enr-button-primary {
        gap: 7px !important;
        padding-right: 14px !important;
        padding-left: 14px !important;
        font-size: 12.5px !important;
    }
}


/* =========================================================
   Ticket verifier — compact theme-first visual refresh 1.1.7
   ========================================================= */

.enr-public-ui.enr-verifier-shortcode,
.enr-public-ui.enr-verifier-shortcode *,
.enr-public-ui.enr-verifier-shortcode *::before,
.enr-public-ui.enr-verifier-shortcode *::after {
    box-sizing: border-box !important;
}

.enr-public-ui.enr-verifier-shortcode {
    width: min(100%, 780px) !important;
    max-width: 780px !important;
    margin: 0 auto !important;
    color: #24171a !important;
    font-family: "Montserrat", Arial, sans-serif !important;
    -webkit-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
}

.enr-verifier-shortcode button,
.enr-verifier-shortcode input,
.enr-verifier-shortcode select {
    font-family: "Montserrat", Arial, sans-serif !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent !important;
}

.enr-verifier-shortcode .enr-verifier-heading {
    max-width: 650px !important;
    margin: 0 auto 20px !important;
    text-align: center !important;
}

.enr-verifier-shortcode .enr-eyebrow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 0 7px !important;
    color: #a67b2f !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: .12em !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
}

.enr-verifier-shortcode .enr-verifier-heading h2 {
    margin: 0 !important;
    color: #3b0d12 !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(31px, 5vw, 46px) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: -.025em !important;
}

.enr-verifier-shortcode .enr-verifier-heading p {
    max-width: 570px !important;
    margin: 10px auto 0 !important;
    color: #786b6e !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.65 !important;
}

.enr-verifier-shortcode .enr-verifier-card {
    overflow: hidden !important;
    background: #fffdf9 !important;
    border: 1px solid rgba(59, 13, 18, .15) !important;
    border-radius: 18px !important;
    box-shadow: 0 18px 46px rgba(49, 13, 19, .09) !important;
}

.enr-verifier-shortcode .enr-verifier-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px !important;
    padding: 8px !important;
    background: #f8f0e5 !important;
    border-bottom: 1px solid rgba(59, 13, 18, .12) !important;
}

.enr-verifier-shortcode .enr-verifier-tabs button {
    min-width: 0 !important;
    min-height: 43px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 9px 12px !important;
    color: #6f5d60 !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    cursor: pointer !important;
}

.enr-verifier-shortcode .enr-verifier-tabs button:hover,
.enr-verifier-shortcode .enr-verifier-tabs button:focus-visible {
    color: #3b0d12 !important;
    background: rgba(255, 255, 255, .72) !important;
    border-color: rgba(59, 13, 18, .12) !important;
    outline: none !important;
}

.enr-verifier-shortcode .enr-verifier-tabs button[aria-selected="true"] {
    color: #fff !important;
    background: linear-gradient(135deg, #6d1220 0%, #3b0d12 100%) !important;
    border-color: #d4b06a !important;
    box-shadow: 0 7px 16px rgba(59, 13, 18, .16) !important;
}

.enr-verifier-shortcode .enr-verifier-panels {
    padding: 22px !important;
}

.enr-verifier-shortcode .enr-verifier-form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: end !important;
    gap: 12px !important;
    margin: 0 !important;
}

.enr-verifier-shortcode .enr-verifier-form[hidden] {
    display: none !important;
}

.enr-verifier-shortcode .enr-verifier-form > .enr-field,
.enr-verifier-shortcode .enr-verifier-form > .enr-field-row {
    min-width: 0 !important;
    margin: 0 !important;
}

.enr-verifier-shortcode .enr-field-row {
    display: grid !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(160px, .85fr) !important;
    gap: 10px !important;
}

.enr-verifier-shortcode .enr-field {
    display: grid !important;
    gap: 6px !important;
}

.enr-verifier-shortcode .enr-field > span {
    color: #3b0d12 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
}

.enr-verifier-shortcode .enr-field > small {
    margin: 0 !important;
    color: #837578 !important;
    font-size: 10px !important;
    line-height: 1.4 !important;
}

.enr-verifier-shortcode .enr-field input,
.enr-verifier-shortcode .enr-field select {
    width: 100% !important;
    min-height: 46px !important;
    margin: 0 !important;
    padding: 10px 13px !important;
    color: #24171a !important;
    background: #fff !important;
    border: 1px solid rgba(59, 13, 18, .24) !important;
    border-radius: 9px !important;
    box-shadow: none !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
}

.enr-verifier-shortcode .enr-field select {
    padding-right: 36px !important;
    background-image: linear-gradient(45deg, transparent 50%, #6d1220 50%), linear-gradient(135deg, #6d1220 50%, transparent 50%) !important;
    background-position: calc(100% - 17px) 20px, calc(100% - 12px) 20px !important;
    background-size: 5px 5px, 5px 5px !important;
    background-repeat: no-repeat !important;
}

.enr-verifier-shortcode .enr-field input:focus,
.enr-verifier-shortcode .enr-field select:focus {
    border-color: #b78c39 !important;
    outline: 2px solid rgba(212, 176, 106, .22) !important;
    box-shadow: none !important;
}

.enr-verifier-shortcode .enr-verifier-form .enr-button-primary {
    width: auto !important;
    min-width: 158px !important;
    min-height: 46px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 10px 18px !important;
    color: #fff !important;
    background: linear-gradient(135deg, #751323 0%, #4a0b14 100%) !important;
    border: 1px solid #d4b06a !important;
    border-radius: 9px !important;
    box-shadow: 0 8px 18px rgba(59, 13, 18, .15) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.enr-verifier-shortcode .enr-verifier-form .enr-button-primary:hover,
.enr-verifier-shortcode .enr-verifier-form .enr-button-primary:focus-visible {
    color: #3b0d12 !important;
    background: #d4b06a !important;
    transform: none !important;
    outline: none !important;
}

.enr-verifier-shortcode .enr-verifier-privacy {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    margin: 0 22px 18px !important;
    padding: 10px 12px !important;
    color: #6f5f62 !important;
    background: #fbf5eb !important;
    border: 1px solid rgba(59, 13, 18, .1) !important;
    border-radius: 10px !important;
}

.enr-verifier-shortcode .enr-verifier-privacy > span {
    width: 22px !important;
    height: 22px !important;
    display: grid !important;
    place-items: center !important;
    flex: 0 0 22px !important;
    color: #fff !important;
    background: #28784d !important;
    border-radius: 50% !important;
    font-size: 11px !important;
    font-weight: 900 !important;
}

.enr-verifier-shortcode .enr-verifier-privacy p {
    margin: 0 !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
}

.enr-verifier-shortcode .enr-verifier-result {
    margin: 0 22px 22px !important;
    padding: 17px !important;
    background: #fff !important;
    border: 1px solid rgba(59, 13, 18, .13) !important;
    border-radius: 14px !important;
    box-shadow: none !important;
}

.enr-verifier-shortcode .enr-verifier-result.is-loading {
    min-height: 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 11px !important;
    color: #3b0d12 !important;
}

.enr-verifier-shortcode .enr-result-heading {
    display: grid !important;
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 11px !important;
    align-items: start !important;
    margin-bottom: 14px !important;
}

.enr-verifier-shortcode .enr-result-icon {
    width: 34px !important;
    height: 34px !important;
    display: grid !important;
    place-items: center !important;
    flex: 0 0 34px !important;
    color: #fff !important;
    background: #28784d !important;
    border-radius: 50% !important;
    font-size: 17px !important;
    font-weight: 900 !important;
}

.enr-verifier-shortcode .enr-verifier-result.is-error .enr-result-icon,
.enr-verifier-shortcode .enr-verifier-result.is-empty .enr-result-icon {
    background: #9f2330 !important;
}

.enr-verifier-shortcode .enr-verifier-result h3 {
    margin: 0 0 3px !important;
    color: #3b0d12 !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 21px !important;
    line-height: 1.15 !important;
}

.enr-verifier-shortcode .enr-verifier-result p {
    margin: 0 !important;
    color: #77696c !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
}

.enr-verifier-shortcode .enr-public-order-list {
    display: grid !important;
    gap: 10px !important;
}

.enr-verifier-shortcode .enr-public-order-card {
    padding: 14px !important;
    background: #fffdf9 !important;
    border: 1px solid rgba(59, 13, 18, .13) !important;
    border-radius: 12px !important;
}

.enr-verifier-shortcode .enr-public-order-card header {
    margin-bottom: 12px !important;
}

.enr-verifier-shortcode .enr-public-order-card header small,
.enr-verifier-shortcode .enr-public-order-card dt {
    color: #84777a !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: .07em !important;
}

.enr-verifier-shortcode .enr-public-order-card header strong {
    color: #3b0d12 !important;
    font-size: 16px !important;
}

.enr-verifier-shortcode .enr-public-order-status {
    padding: 5px 8px !important;
    font-size: 10px !important;
}

.enr-verifier-shortcode .enr-public-order-card dl {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
}

.enr-verifier-shortcode .enr-public-order-card dl > div {
    min-width: 0 !important;
    padding: 9px !important;
    background: #fbf5eb !important;
    border-radius: 9px !important;
}

.enr-verifier-shortcode .enr-public-order-card dd {
    margin: 3px 0 0 !important;
    color: #2b1b1e !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    overflow-wrap: anywhere !important;
}

.enr-verifier-shortcode .enr-public-order-tickets {
    margin-top: 12px !important;
    padding: 12px !important;
    background: linear-gradient(135deg, #4b0b14 0%, #2f070c 100%) !important;
    border: 1px solid rgba(212, 176, 106, .52) !important;
    border-radius: 11px !important;
}

.enr-verifier-shortcode .enr-public-order-tickets > strong {
    color: #f0d38b !important;
    font-size: 11px !important;
}

.enr-verifier-shortcode .enr-public-order-tickets > div {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 7px !important;
    margin-top: 8px !important;
}

.enr-verifier-shortcode .enr-public-order-tickets span {
    min-width: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 7px 9px !important;
    color: #3b0d12 !important;
    background: #f3d984 !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.enr-verifier-shortcode .enr-public-order-pending {
    margin: 12px 0 0 !important;
    padding: 10px 11px !important;
    color: #7b5b1e !important;
    background: #fff5da !important;
    border: 1px solid rgba(154, 100, 18, .2) !important;
    border-radius: 9px !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
}

.enr-verifier-shortcode .enr-public-ticket-result {
    margin-top: 13px !important;
    padding: 15px !important;
    text-align: center !important;
    background: linear-gradient(135deg, #4b0b14 0%, #2f070c 100%) !important;
    border: 1px solid rgba(212, 176, 106, .58) !important;
    border-radius: 12px !important;
}

.enr-verifier-shortcode .enr-public-ticket-result small {
    display: block !important;
    color: rgba(255, 255, 255, .66) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: .07em !important;
    text-transform: uppercase !important;
}

.enr-verifier-shortcode .enr-public-ticket-result strong {
    display: block !important;
    margin: 5px auto 0 !important;
    color: #f3d984 !important;
    font-size: 30px !important;
    font-weight: 900 !important;
    letter-spacing: .04em !important;
    line-height: 1 !important;
}

.enr-verifier-shortcode .enr-ticket-owner-card {
    overflow: hidden !important;
    padding: 20px !important;
    color: #fff !important;
    background:
        radial-gradient(circle at 100% 0, rgba(212, 176, 106, .13), transparent 30%),
        linear-gradient(135deg, #3b0d12 0%, #24070b 100%) !important;
    border: 1px solid rgba(212, 176, 106, .58) !important;
    border-radius: 16px !important;
    box-shadow: 0 14px 30px rgba(36, 7, 11, .16) !important;
}

.enr-verifier-shortcode .enr-ticket-owner-head {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 16px !important;
    margin: 0 0 17px !important;
    padding: 0 0 15px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
}

.enr-verifier-shortcode .enr-ticket-owner-raffle small,
.enr-verifier-shortcode .enr-ticket-owner-raffle strong {
    display: block !important;
}

.enr-verifier-shortcode .enr-ticket-owner-raffle small {
    color: #f0d38b !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: .11em !important;
    text-transform: uppercase !important;
}

.enr-verifier-shortcode .enr-ticket-owner-raffle strong {
    margin-top: 5px !important;
    color: #fff !important;
    font-size: 17px !important;
    line-height: 1.25 !important;
}

.enr-verifier-shortcode .enr-ticket-owner-card .enr-public-order-status {
    flex: 0 0 auto !important;
    color: #fff !important;
    background: rgba(255, 255, 255, .08) !important;
    border: 1px solid rgba(212, 176, 106, .58) !important;
}

.enr-verifier-shortcode .enr-ticket-owner-participant {
    display: flex !important;
    align-items: center !important;
    gap: 11px !important;
    margin-bottom: 16px !important;
}

.enr-verifier-shortcode .enr-ticket-owner-icon {
    width: 32px !important;
    height: 32px !important;
    display: grid !important;
    place-items: center !important;
    flex: 0 0 32px !important;
    color: #3b0d12 !important;
    background: #f0d38b !important;
    border-radius: 50% !important;
    font-size: 11px !important;
}

.enr-verifier-shortcode .enr-ticket-owner-participant strong {
    color: #fff !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: clamp(20px, 3vw, 28px) !important;
    line-height: 1.15 !important;
}

.enr-verifier-shortcode .enr-ticket-owner-meta {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 9px !important;
    margin-bottom: 14px !important;
}

.enr-verifier-shortcode .enr-ticket-owner-meta > div {
    min-width: 0 !important;
    padding: 11px !important;
    background: rgba(255, 255, 255, .07) !important;
    border: 1px solid rgba(255, 255, 255, .09) !important;
    border-radius: 10px !important;
}

.enr-verifier-shortcode .enr-ticket-owner-meta small,
.enr-verifier-shortcode .enr-ticket-owner-meta strong {
    display: block !important;
}

.enr-verifier-shortcode .enr-ticket-owner-meta small {
    color: rgba(255, 255, 255, .58) !important;
    font-size: 8px !important;
    font-weight: 800 !important;
    letter-spacing: .07em !important;
    text-transform: uppercase !important;
}

.enr-verifier-shortcode .enr-ticket-owner-meta strong {
    margin-top: 4px !important;
    color: #fff !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    overflow-wrap: anywhere !important;
}

.enr-verifier-shortcode .enr-ticket-owner-validation {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px !important;
    margin-bottom: 14px !important;
    padding: 12px 13px !important;
    background: rgba(212, 176, 106, .11) !important;
    border: 1px solid rgba(212, 176, 106, .34) !important;
    border-radius: 11px !important;
}

.enr-verifier-shortcode .enr-ticket-owner-validation small,
.enr-verifier-shortcode .enr-ticket-owner-validation strong {
    display: block !important;
}

.enr-verifier-shortcode .enr-ticket-owner-validation small {
    color: rgba(255, 255, 255, .58) !important;
    font-size: 8px !important;
    font-weight: 800 !important;
    letter-spacing: .07em !important;
    text-transform: uppercase !important;
}

.enr-verifier-shortcode .enr-ticket-owner-validation strong {
    margin-top: 4px !important;
    color: #f4dfaa !important;
    font-size: 12px !important;
}

.enr-verifier-shortcode .enr-ticket-owner-count {
    flex: 0 0 auto !important;
    padding: 7px 11px !important;
    color: #3b0d12 !important;
    background: #f0d38b !important;
    border-radius: 999px !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
}

.enr-verifier-shortcode .enr-ticket-owner-tickets {
    padding-top: 14px !important;
    border-top: 1px solid rgba(255, 255, 255, .12) !important;
}

.enr-verifier-shortcode .enr-ticket-owner-tickets > strong {
    color: #f0d38b !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

.enr-verifier-shortcode .enr-ticket-owner-tickets > div {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 10px !important;
}

.enr-verifier-shortcode .enr-ticket-owner-tickets span {
    min-width: 58px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 12px !important;
    color: #fff !important;
    background: rgba(255, 255, 255, .07) !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    letter-spacing: .04em !important;
}

.enr-verifier-shortcode .enr-ticket-owner-tickets span.is-queried {
    color: #3b0d12 !important;
    background: #f0d38b !important;
    border-color: #f0d38b !important;
    box-shadow: 0 0 0 3px rgba(240, 211, 139, .15) !important;
}

@media (max-width: 680px) {
    .enr-public-ui.enr-verifier-shortcode {
        width: 100% !important;
    }

    .enr-verifier-shortcode .enr-ticket-owner-card {
        padding: 16px !important;
    }

    .enr-verifier-shortcode .enr-ticket-owner-head,
    .enr-verifier-shortcode .enr-ticket-owner-validation {
        align-items: flex-start !important;
        flex-direction: column !important;
    }

    .enr-verifier-shortcode .enr-ticket-owner-meta {
        grid-template-columns: 1fr !important;
    }

    .enr-verifier-shortcode .enr-ticket-owner-participant strong {
        font-size: 21px !important;
    }

    .enr-verifier-shortcode .enr-ticket-owner-count {
        align-self: flex-start !important;
    }

    .enr-verifier-shortcode .enr-verifier-heading {
        margin-bottom: 16px !important;
        padding: 0 4px !important;
    }

    .enr-verifier-shortcode .enr-verifier-heading h2 {
        font-size: 32px !important;
    }

    .enr-verifier-shortcode .enr-verifier-heading p {
        font-size: 13px !important;
    }

    .enr-verifier-shortcode .enr-verifier-card {
        border-radius: 15px !important;
    }

    .enr-verifier-shortcode .enr-verifier-tabs {
        gap: 4px !important;
        padding: 6px !important;
    }

    .enr-verifier-shortcode .enr-verifier-tabs button {
        min-height: 41px !important;
        padding: 8px 6px !important;
        font-size: 11px !important;
    }

    .enr-verifier-shortcode .enr-verifier-panels {
        padding: 16px !important;
    }

    .enr-verifier-shortcode .enr-verifier-form {
        grid-template-columns: 1fr !important;
        gap: 11px !important;
    }

    .enr-verifier-shortcode .enr-field-row {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .enr-verifier-shortcode .enr-field input,
    .enr-verifier-shortcode .enr-field select {
        min-height: 46px !important;
        font-size: 16px !important;
    }

    .enr-verifier-shortcode .enr-verifier-form .enr-button-primary {
        width: 100% !important;
        min-width: 0 !important;
    }

    .enr-verifier-shortcode .enr-verifier-privacy {
        margin: 0 16px 16px !important;
    }

    .enr-verifier-shortcode .enr-verifier-result {
        margin: 0 16px 16px !important;
        padding: 14px !important;
    }

    .enr-verifier-shortcode .enr-public-order-card dl {
        grid-template-columns: 1fr !important;
    }

    .enr-verifier-shortcode .enr-public-ticket-result strong {
        font-size: 27px !important;
    }
}

@media (max-width: 390px) {
    .enr-verifier-shortcode .enr-verifier-tabs button {
        font-size: 10px !important;
    }

    .enr-verifier-shortcode .enr-verifier-heading h2 {
        font-size: 29px !important;
    }
}


/* v1.1.13 · selector de cantidad y confirmación centrada */
.enr-quantity-total-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 190px !important;
    gap: 14px !important;
    align-items: stretch !important;
    margin-bottom: 14px !important;
}

.enr-quantity-panel {
    padding: 18px !important;
    background: linear-gradient(145deg, #faf4eb 0%, #fffdf9 100%) !important;
    border: 1px solid rgba(59, 13, 18, .14) !important;
    border-radius: 16px !important;
}

.enr-quantity-heading {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    margin-bottom: 15px !important;
    color: #3b0d12 !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
}

.enr-quantity-heading-icon {
    font-size: 20px !important;
}

.enr-quantity-stepper {
    display: grid !important;
    grid-template-columns: 54px minmax(110px, 160px) 54px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 13px !important;
}

.enr-quantity-button {
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
    padding: 0 !important;
    color: #3b0d12 !important;
    background: #fff !important;
    border: 1px solid rgba(59, 13, 18, .22) !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 18px rgba(59, 13, 18, .08) !important;
    font-size: 30px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    cursor: pointer !important;
}

.enr-quantity-button:hover,
.enr-quantity-button:focus-visible {
    color: #fff !important;
    background: #650717 !important;
    border-color: #650717 !important;
    outline: none !important;
}

.enr-quantity-value {
    display: block !important;
    margin: 0 !important;
}

.enr-quantity-value input {
    width: 100% !important;
    height: 76px !important;
    min-height: 76px !important;
    padding: 8px !important;
    color: #8f0d1b !important;
    background: #fff !important;
    border: 2px solid rgba(143, 13, 27, .35) !important;
    border-radius: 16px !important;
    box-shadow: inset 0 0 0 4px rgba(212, 176, 106, .08) !important;
    font-size: 46px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-align: center !important;
    -moz-appearance: textfield !important;
}

.enr-quantity-value input::-webkit-outer-spin-button,
.enr-quantity-value input::-webkit-inner-spin-button {
    margin: 0 !important;
    -webkit-appearance: none !important;
}

.enr-quantity-minimum {
    margin: 13px 0 0 !important;
    color: #8f0d1b !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-align: center !important;
}

.enr-quantity-information {
    display: grid !important;
    grid-template-columns: 28px minmax(0, 1fr) !important;
    gap: 11px !important;
    align-items: start !important;
    margin-top: 15px !important;
    padding: 13px !important;
    color: #4e3c40 !important;
    background: rgba(212, 176, 106, .1) !important;
    border: 1px solid rgba(212, 176, 106, .42) !important;
    border-radius: 12px !important;
}

.enr-quantity-information > span {
    width: 28px !important;
    height: 28px !important;
    display: grid !important;
    place-items: center !important;
    color: #fff !important;
    background: #8f0d1b !important;
    border-radius: 50% !important;
    font-size: 15px !important;
    font-weight: 900 !important;
}

.enr-quantity-information p {
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
}

.enr-quantity-total-grid .enr-checkout-total {
    min-height: 100% !important;
    justify-items: center !important;
    text-align: center !important;
}

.enr-checkout-result--centered {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    padding: 26px 22px !important;
    text-align: center !important;
}

.enr-checkout-result--centered .enr-result-icon {
    width: 48px !important;
    height: 48px !important;
    font-size: 22px !important;
}

.enr-checkout-result-copy {
    width: 100% !important;
    max-width: 560px !important;
}

.enr-checkout-result--centered h3 {
    margin: 0 0 7px !important;
    font-size: 30px !important;
    line-height: 1.12 !important;
}

.enr-checkout-result--centered p {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
}

.enr-checkout-ticket-result {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 11px !important;
    margin-top: 19px !important;
    padding: 18px !important;
    background: rgba(255,255,255,.75) !important;
    border: 1px dashed rgba(23,115,66,.3) !important;
    border-radius: 14px !important;
}

.enr-checkout-ticket-count {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 34px !important;
    padding: 7px 15px !important;
    color: #fff !important;
    background: #8f0d1b !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
}

.enr-checkout-ticket-label {
    color: #3b0d12 !important;
    font-size: 16px !important;
}

.enr-checkout-ticket-numbers {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
}

.enr-checkout-ticket-numbers span {
    min-width: 88px !important;
    padding: 14px 16px !important;
    color: #3b0d12 !important;
    background: #fff !important;
    border: 1px solid rgba(59,13,18,.2) !important;
    border-radius: 12px !important;
    font-size: 25px !important;
    font-weight: 900 !important;
    letter-spacing: .06em !important;
}

.enr-checkout-ticket-pending {
    max-width: 430px !important;
    color: #6d5a5e !important;
    font-size: 13px !important;
}

@media (max-width: 680px) {
    .enr-quantity-total-grid {
        grid-template-columns: 1fr !important;
    }

    .enr-quantity-panel {
        padding: 15px !important;
    }

    .enr-quantity-stepper {
        grid-template-columns: 50px minmax(96px, 140px) 50px !important;
        gap: 10px !important;
    }

    .enr-quantity-button {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
    }

    .enr-quantity-value input {
        height: 68px !important;
        min-height: 68px !important;
        font-size: 40px !important;
    }

    .enr-quantity-information {
        padding: 12px !important;
    }

    .enr-checkout-result--centered {
        padding: 22px 16px !important;
    }

    .enr-checkout-result--centered h3 {
        font-size: 25px !important;
    }
}


/* v1.1.14 · selector de cantidad compacto y total estable */
.enr-checkout-modal .enr-quantity-total-grid,
.enr-public-ui .enr-quantity-total-grid {
    grid-template-columns: minmax(0, 1fr) 170px !important;
    gap: 10px !important;
    align-items: start !important;
    margin-bottom: 12px !important;
}

.enr-checkout-modal .enr-quantity-panel,
.enr-public-ui .enr-quantity-panel {
    padding: 13px 14px !important;
    border-radius: 13px !important;
}

.enr-checkout-modal .enr-quantity-heading,
.enr-public-ui .enr-quantity-heading {
    gap: 7px !important;
    margin-bottom: 10px !important;
    font-size: 12px !important;
    letter-spacing: .04em !important;
}

.enr-checkout-modal .enr-quantity-heading-icon,
.enr-public-ui .enr-quantity-heading-icon {
    font-size: 16px !important;
}

.enr-checkout-modal .enr-quantity-stepper,
.enr-public-ui .enr-quantity-stepper {
    grid-template-columns: 42px minmax(82px, 116px) 42px !important;
    gap: 8px !important;
}

.enr-checkout-modal .enr-quantity-button,
.enr-public-ui .enr-quantity-button {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    border-radius: 11px !important;
    font-size: 25px !important;
    box-shadow: none !important;
}

.enr-checkout-modal .enr-quantity-value,
.enr-public-ui .enr-quantity-value {
    min-width: 0 !important;
    height: 50px !important;
}

.enr-checkout-modal .enr-quantity-value input,
.enr-public-ui .enr-quantity-value input {
    width: 100% !important;
    height: 50px !important;
    min-height: 50px !important;
    max-height: 50px !important;
    padding: 4px 8px !important;
    border-width: 1px !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    font-size: 31px !important;
    line-height: 1 !important;
}

.enr-checkout-modal .enr-quantity-minimum,
.enr-public-ui .enr-quantity-minimum {
    margin: 8px 0 0 !important;
    font-size: 11px !important;
}

.enr-checkout-modal .enr-quantity-information,
.enr-public-ui .enr-quantity-information {
    grid-template-columns: 22px minmax(0, 1fr) !important;
    gap: 8px !important;
    margin-top: 9px !important;
    padding: 9px 10px !important;
    border-radius: 10px !important;
}

.enr-checkout-modal .enr-quantity-information > span,
.enr-public-ui .enr-quantity-information > span {
    width: 22px !important;
    height: 22px !important;
    font-size: 12px !important;
}

.enr-checkout-modal .enr-quantity-information p,
.enr-public-ui .enr-quantity-information p {
    font-size: 11px !important;
    line-height: 1.4 !important;
}

.enr-checkout-modal .enr-quantity-total-grid .enr-checkout-total,
.enr-public-ui .enr-quantity-total-grid .enr-checkout-total {
    width: 100% !important;
    height: 78px !important;
    min-height: 78px !important;
    max-height: 78px !important;
    align-self: start !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 10px 12px !important;
    overflow: hidden !important;
    border-radius: 13px !important;
}

.enr-checkout-modal .enr-quantity-total-grid .enr-checkout-total small,
.enr-public-ui .enr-quantity-total-grid .enr-checkout-total small {
    margin: 0 !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
}

.enr-checkout-modal .enr-quantity-total-grid .enr-checkout-total strong,
.enr-public-ui .enr-quantity-total-grid .enr-checkout-total strong {
    margin: 0 !important;
    font-size: 21px !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
}

@media (max-width: 680px) {
    .enr-checkout-modal .enr-quantity-total-grid,
    .enr-public-ui .enr-quantity-total-grid {
        display: block !important;
        margin-bottom: 10px !important;
    }

    .enr-checkout-modal .enr-quantity-panel,
    .enr-public-ui .enr-quantity-panel {
        padding: 11px 12px !important;
    }

    .enr-checkout-modal .enr-quantity-heading,
    .enr-public-ui .enr-quantity-heading {
        margin-bottom: 8px !important;
        font-size: 11px !important;
    }

    .enr-checkout-modal .enr-quantity-stepper,
    .enr-public-ui .enr-quantity-stepper {
        grid-template-columns: 40px minmax(76px, 104px) 40px !important;
        gap: 7px !important;
    }

    .enr-checkout-modal .enr-quantity-button,
    .enr-public-ui .enr-quantity-button {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important;
        min-height: 40px !important;
        font-size: 23px !important;
    }

    .enr-checkout-modal .enr-quantity-value,
    .enr-public-ui .enr-quantity-value,
    .enr-checkout-modal .enr-quantity-value input,
    .enr-public-ui .enr-quantity-value input {
        height: 46px !important;
        min-height: 46px !important;
        max-height: 46px !important;
    }

    .enr-checkout-modal .enr-quantity-value input,
    .enr-public-ui .enr-quantity-value input {
        font-size: 29px !important;
    }

    .enr-checkout-modal .enr-quantity-information,
    .enr-public-ui .enr-quantity-information {
        margin-top: 8px !important;
        padding: 8px 9px !important;
    }

    .enr-checkout-modal .enr-quantity-information p,
    .enr-public-ui .enr-quantity-information p {
        font-size: 10.5px !important;
        line-height: 1.35 !important;
    }

    .enr-checkout-modal .enr-quantity-total-grid .enr-checkout-total,
    .enr-public-ui .enr-quantity-total-grid .enr-checkout-total {
        height: 58px !important;
        min-height: 58px !important;
        max-height: 58px !important;
        margin-top: 8px !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 9px 13px !important;
        border-radius: 11px !important;
    }

    .enr-checkout-modal .enr-quantity-total-grid .enr-checkout-total small,
    .enr-public-ui .enr-quantity-total-grid .enr-checkout-total small {
        font-size: 10px !important;
    }

    .enr-checkout-modal .enr-quantity-total-grid .enr-checkout-total strong,
    .enr-public-ui .enr-quantity-total-grid .enr-checkout-total strong {
        font-size: 19px !important;
    }
}

/* v1.1.15 · confirmación con números asignados y formulario sin correo */
.enr-checkout-ticket-count {
    display: none !important;
}

.enr-checkout-ticket-result {
    margin-top: 16px !important;
}

.enr-checkout-ticket-numbers {
    width: 100% !important;
    justify-content: center !important;
}

@media (max-width: 680px) {
    .enr-checkout-ticket-result {
        gap: 9px !important;
        margin-top: 14px !important;
        padding: 14px 12px !important;
    }

    .enr-checkout-ticket-numbers span {
        min-width: 78px !important;
        padding: 12px 13px !important;
        font-size: 22px !important;
    }
}



/* v1.1.16 · selector de cantidad más pequeño en mobile */
@media (max-width: 680px) {
    .enr-checkout-modal .enr-quantity-panel,
    .enr-public-ui .enr-quantity-panel {
        padding: 9px 10px !important;
        border-radius: 12px !important;
    }

    .enr-checkout-modal .enr-quantity-heading,
    .enr-public-ui .enr-quantity-heading {
        gap: 6px !important;
        margin-bottom: 7px !important;
        font-size: 10px !important;
    }

    .enr-checkout-modal .enr-quantity-heading strong,
    .enr-public-ui .enr-quantity-heading strong {
        font-size: 10px !important;
        letter-spacing: .06em !important;
    }

    .enr-checkout-modal .enr-quantity-heading-icon,
    .enr-public-ui .enr-quantity-heading-icon {
        font-size: 13px !important;
    }

    .enr-checkout-modal .enr-quantity-stepper,
    .enr-public-ui .enr-quantity-stepper {
        grid-template-columns: 36px minmax(72px, 92px) 36px !important;
        gap: 6px !important;
    }

    .enr-checkout-modal .enr-quantity-button,
    .enr-public-ui .enr-quantity-button {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        border-radius: 10px !important;
        font-size: 21px !important;
    }

    .enr-checkout-modal .enr-quantity-value,
    .enr-public-ui .enr-quantity-value,
    .enr-checkout-modal .enr-quantity-value input,
    .enr-public-ui .enr-quantity-value input {
        height: 40px !important;
        min-height: 40px !important;
        max-height: 40px !important;
    }

    .enr-checkout-modal .enr-quantity-value input,
    .enr-public-ui .enr-quantity-value input {
        font-size: 24px !important;
        padding: 2px 6px !important;
        border-radius: 11px !important;
    }

    .enr-checkout-modal .enr-quantity-minimum,
    .enr-public-ui .enr-quantity-minimum {
        margin-top: 6px !important;
        font-size: 10px !important;
    }

    .enr-checkout-modal .enr-quantity-information,
    .enr-public-ui .enr-quantity-information {
        grid-template-columns: 20px minmax(0, 1fr) !important;
        gap: 7px !important;
        margin-top: 7px !important;
        padding: 7px 8px !important;
        border-radius: 9px !important;
    }

    .enr-checkout-modal .enr-quantity-information > span,
    .enr-public-ui .enr-quantity-information > span {
        width: 20px !important;
        height: 20px !important;
        font-size: 11px !important;
    }

    .enr-checkout-modal .enr-quantity-information p,
    .enr-public-ui .enr-quantity-information p {
        font-size: 9.6px !important;
        line-height: 1.28 !important;
    }
}


/* v1.1.17 · modal centrado en mobile */
@media (max-width: 680px) {
    .enr-checkout-modal {
        display: grid !important;
        place-items: center !important;
        align-items: center !important;
        padding: 12px !important;
    }

    .enr-checkout-dialog {
        width: min(100%, 520px) !important;
        max-height: calc(100dvh - 24px) !important;
        padding: 18px 14px calc(18px + env(safe-area-inset-bottom, 0px)) !important;
        border-radius: 18px !important;
    }
}


/* v1.1.18 · modal móvil fijado al viewport y sin desbordamiento lateral */
html.enr-modal-open,
body.enr-modal-open {
    overflow: hidden !important;
    overscroll-behavior: none !important;
}

body > .enr-checkout-modal {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    margin: 0 !important;
    overflow: hidden !important;
    contain: layout paint !important;
}

@media (max-width: 680px) {
    body > .enr-checkout-modal {
        display: grid !important;
        place-items: center !important;
        align-items: center !important;
        justify-items: center !important;
        padding: 12px !important;
    }

    body > .enr-checkout-modal .enr-checkout-dialog {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: calc(100vw - 24px) !important;
        max-width: 520px !important;
        min-width: 0 !important;
        height: auto !important;
        max-height: calc(100dvh - 24px) !important;
        margin: 0 auto !important;
        padding: 18px 14px calc(18px + env(safe-area-inset-bottom, 0px)) !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        border-radius: 18px !important;
        overscroll-behavior: contain !important;
        -webkit-overflow-scrolling: touch !important;
    }

    body > .enr-checkout-modal .enr-checkout,
    body > .enr-checkout-modal .enr-checkout-content,
    body > .enr-checkout-modal .enr-checkout-form,
    body > .enr-checkout-modal .enr-checkout-columns,
    body > .enr-checkout-modal .enr-checkout-main-fields,
    body > .enr-checkout-modal .enr-combo-packs,
    body > .enr-checkout-modal .enr-combo-packs-head,
    body > .enr-checkout-modal .enr-combo-packs-grid,
    body > .enr-checkout-modal .enr-quantity-total-grid,
    body > .enr-checkout-modal .enr-quantity-panel,
    body > .enr-checkout-modal .enr-checkout-total,
    body > .enr-checkout-modal .enr-field,
    body > .enr-checkout-modal .enr-payment-methods,
    body > .enr-checkout-modal .enr-payment-selector,
    body > .enr-checkout-modal .enr-payment-details,
    body > .enr-checkout-modal .enr-receipt-dropzone,
    body > .enr-checkout-modal .enr-checkout-submit-row,
    body > .enr-checkout-modal .enr-checkout-result {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    body > .enr-checkout-modal .enr-combo-packs-grid {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        contain: inline-size !important;
    }

    body > .enr-checkout-modal .enr-combo-pack {
        flex: 0 0 92px !important;
        min-width: 92px !important;
        max-width: 92px !important;
    }

    body > .enr-checkout-modal .enr-payment-selector,
    body > .enr-checkout-modal .enr-payment-methods [data-enr-payment-methods] {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
    }

    body > .enr-checkout-modal .enr-checkout-dialog-title,
    body > .enr-checkout-modal .enr-checkout-summary h3,
    body > .enr-checkout-modal .enr-combo-packs-head span,
    body > .enr-checkout-modal .enr-quantity-information p,
    body > .enr-checkout-modal .enr-field span,
    body > .enr-checkout-modal .enr-payment-detail-item,
    body > .enr-checkout-modal .enr-receipt-dropzone {
        overflow-wrap: anywhere !important;
        word-break: normal !important;
    }
}
