/* Gift Access Cards */
.giftaccess-nfc-form {
    margin: 22px 0;
    padding: 22px;
    border: 1px solid #e7e7e7;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(0,0,0,.04);
}

.giftaccess-nfc-form h3 {
    margin: 0 0 18px;
    font-size: 20px;
    font-weight: 800;
}

.giftaccess-nfc-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.giftaccess-nfc-form p {
    margin: 0;
}

.giftaccess-nfc-form label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 6px;
}

.giftaccess-nfc-form input,
.giftaccess-nfc-form select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px 12px;
}

.giftaccess-nfc-form small {
    display: block;
    margin-top: 5px;
    color: #777;
}

.giftaccess-cards-wrapper {
    max-width: 1180px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: inherit;
}

.giftaccess-cards-wrapper h2 {
    margin-bottom: 24px;
    font-size: 28px;
    font-weight: 800;
    color: #111;
}

.giftaccess-card-box-pro {
    display: grid;
    grid-template-columns: minmax(320px, 430px) minmax(320px, 1fr);
    gap: 22px;
    align-items: stretch;
    margin-bottom: 26px;
}

.giftaccess-nfc-card {
    position: relative;
    width: 100%;
    max-width: 430px;
    min-height: 260px;
    border-radius: 28px;
    padding: 28px;
    color: #fff;
    background: linear-gradient(135deg, #07101d 0%, #0f172a 48%, #22d3ee 125%);
    box-shadow: 0 22px 55px rgba(0,0,0,0.25);
    overflow: hidden;
}

.giftaccess-nfc-card::before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 999px;
    background: rgba(255,255,255,0.09);
    right: -55px;
    top: -65px;
}

.giftaccess-nfc-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(0,0,0,0.16);
    left: -80px;
    bottom: -90px;
}

.giftaccess-nfc-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    position: relative;
    z-index: 2;
}

.giftaccess-card-label {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.giftaccess-card-status {
    background: rgba(255,255,255,0.18);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.giftaccess-status-active {
    background: rgba(45, 214, 124, .25);
}

.giftaccess-status-frozen {
    background: rgba(255, 87, 87, .28);
}

.giftaccess-card-chip {
    width: 58px;
    height: 42px;
    border-radius: 10px;
    margin-top: 34px;
    background: linear-gradient(135deg, #f5d76e, #b99525);
    position: relative;
    z-index: 2;
}

.giftaccess-card-number {
    margin-top: 30px;
    font-size: 24px;
    letter-spacing: 2.4px;
    font-weight: 800;
    position: relative;
    z-index: 2;
    min-height: 34px;
}

.giftaccess-card-bottom {
    display: grid;
    grid-template-columns: 1.5fr .8fr .55fr;
    gap: 12px;
    margin-top: 22px;
    position: relative;
    z-index: 2;
}

.giftaccess-card-bottom span {
    display: block;
    color: rgba(255,255,255,.65);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 4px;
}

.giftaccess-card-bottom strong {
    display: block;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
}

.giftaccess-card-panel {
    padding: 22px;
    border: 1px solid #ececec;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0,0,0,.05);
}

.giftaccess-card-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
}

.giftaccess-card-panel-grid p {
    margin: 0;
    font-size: 14px;
    word-break: break-word;
}

.giftaccess-card-actions,
.giftaccess-money-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.giftaccess-money-actions input {
    min-height: 42px;
    width: 150px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 8px 12px;
}

.giftaccess-card-btn {
    border: none;
    border-radius: 999px;
    background: #111;
    color: #fff;
    padding: 10px 15px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s ease;
}

.giftaccess-card-btn:hover {
    transform: translateY(-1px);
    opacity: .9;
}

.giftaccess-card-result {
    margin-top: 16px;
    font-size: 13px;
}

.giftaccess-card-result pre {
    max-height: 250px;
    overflow: auto;
    padding: 12px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    white-space: pre-wrap;
}

.giftaccess-empty-card,
.giftaccess-card-box {
    padding: 18px;
    border-radius: 14px;
    background: #f8f8f8;
    border: 1px solid #e5e5e5;
}

@media (max-width: 900px) {
    .giftaccess-card-box-pro {
        grid-template-columns: 1fr;
    }

    .giftaccess-nfc-card {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .giftaccess-cards-wrapper {
        padding: 0 14px;
    }

    .giftaccess-nfc-form-grid,
    .giftaccess-card-panel-grid {
        grid-template-columns: 1fr;
    }

    .giftaccess-nfc-card {
        min-height: 245px;
        padding: 22px;
        border-radius: 22px;
    }

    .giftaccess-card-number {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .giftaccess-card-bottom {
        grid-template-columns: 1fr 1fr;
    }
}

.giftaccess-api-debug {
    margin-top: 16px;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 12px;
    background: #fafafa;
}

.giftaccess-api-debug summary {
    cursor: pointer;
    font-weight: 800;
    color: #111;
}

.giftaccess-api-debug pre {
    margin-top: 10px;
    max-height: 260px;
    overflow: auto;
    padding: 12px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    white-space: pre-wrap;
    font-size: 12px;
}

.giftaccess-cvv-secure-box {
    margin-top: 16px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #ececec;
    background: #fafafa;
}

.giftaccess-cvv-secure-box strong {
    display: block;
    margin-bottom: 6px;
    color: #111;
}

.giftaccess-cvv-secure-box p {
    margin: 0 0 12px;
    color: #555;
    font-size: 13px;
}

.giftaccess-cvv-secure-box input {
    width: 210px;
    max-width: 100%;
    min-height: 42px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 8px 12px;
    margin: 0 8px 10px 0;
}

.giftaccess-cvv-display {
    margin-top: 12px;
    padding: 12px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    font-weight: 800;
    width: fit-content;
}

.giftaccess-cvv-display strong {
    display: inline;
    color: #fff;
    letter-spacing: 2px;
}

.giftaccess-card-info-box {
    margin-top: 16px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid #ececec;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0,0,0,.04);
}

.giftaccess-card-info-box h4 {
    margin: 0 0 14px;
    font-size: 17px;
    font-weight: 900;
    color: #111;
}

.giftaccess-card-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.giftaccess-card-info-grid p {
    margin: 0;
    padding: 12px;
    border-radius: 14px;
    background: #f8f8f8;
    border: 1px solid #eee;
    word-break: break-word;
}

.giftaccess-card-info-grid span {
    display: block;
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 5px;
    font-weight: 800;
}

.giftaccess-card-info-grid strong {
    display: block;
    color: #111;
    font-size: 13px;
}

@media (max-width: 560px) {
    .giftaccess-card-info-grid {
        grid-template-columns: 1fr;
    }
}

.giftaccess-card-number-secure-box {
    margin-top: 16px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #ececec;
    background: #fafafa;
}

.giftaccess-card-number-secure-box strong {
    display: block;
    margin-bottom: 6px;
    color: #111;
}

.giftaccess-card-number-secure-box p {
    margin: 0 0 12px;
    color: #555;
    font-size: 13px;
}

.giftaccess-card-number-secure-box input {
    width: 230px;
    max-width: 100%;
    min-height: 42px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 8px 12px;
    margin: 0 8px 10px 0;
}

.giftaccess-card-number-display {
    margin-top: 12px;
    padding: 12px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    font-weight: 800;
    width: fit-content;
}

.giftaccess-card-number-display strong {
    display: inline;
    color: #fff;
    letter-spacing: 1.4px;
}

.giftaccess-card-success{margin-bottom:18px;padding:16px;border-radius:16px;background:#ecfff4;border:1px solid #bff2d1;color:#116b34;font-weight:800}.giftaccess-create-card-widget{margin:0 0 28px;border:1px solid #ececec;border-radius:24px;background:#fff;box-shadow:0 14px 35px rgba(0,0,0,.05);overflow:hidden}.giftaccess-create-card-toggle{width:100%;display:flex;align-items:center;gap:14px;padding:20px;border:none;background:linear-gradient(135deg,#07101d,#0f172a 62%,#155e75);color:#fff;text-align:left;cursor:pointer}.giftaccess-create-card-icon{width:48px;height:48px;display:inline-flex;align-items:center;justify-content:center;border-radius:16px;background:rgba(34,211,238,.18);font-size:24px}.giftaccess-create-card-toggle strong{display:block;font-size:18px;font-weight:900}.giftaccess-create-card-toggle small{display:block;color:rgba(255,255,255,.75);font-size:13px;margin-top:3px}.giftaccess-create-card-form{padding:22px}.giftaccess-create-card-note{margin-bottom:18px;padding:14px;border-radius:16px;background:#ecfeff;border:1px solid #a5f3fc;color:#164e63;font-size:13px}.giftaccess-create-card-note span{display:block;margin-top:4px;color:#155e75}.giftaccess-create-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.giftaccess-create-grid p{margin:0}.giftaccess-create-grid label{display:block;margin-bottom:6px;font-size:13px;font-weight:800;color:#111}.giftaccess-create-grid input,.giftaccess-create-grid select{width:100%;min-height:44px;border:1px solid #ddd;border-radius:13px;padding:9px 12px;background:#fff}.giftaccess-create-total{margin-top:18px;padding:16px;border-radius:16px;background:#f8f8f8;border:1px solid #eee;display:flex;align-items:center;justify-content:space-between;gap:12px}.giftaccess-create-total span{color:#555;font-weight:700}.giftaccess-create-total strong{font-size:20px;color:#111}.giftaccess-activate-card-btn{margin-top:18px;width:100%;min-height:52px;border:none;border-radius:999px;background:#22d3ee;color:#07101d;font-weight:900;cursor:pointer;font-size:15px}@media(max-width:700px){.giftaccess-create-grid{grid-template-columns:1fr}.giftaccess-create-total{align-items:flex-start;flex-direction:column}}

/* =========================
   GiftAccess NFC v1.3 Premium UI
   ========================= */
.giftaccess-cards-wrapper {
    max-width: 1180px;
    margin: 36px auto;
    padding: 0 18px;
}

.giftaccess-cards-wrapper > h2 {
    font-size: 30px;
    font-weight: 900;
    color: #080808;
    margin: 0 0 22px;
}

.giftaccess-v13-card-shell {
    max-width: 760px;
    margin: 0 auto 34px;
    padding: 34px 42px;
    border-radius: 18px;
    background: #f2f2f2;
    box-shadow: 0 18px 48px rgba(0,0,0,.08);
}

.giftaccess-v13-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
}

.giftaccess-v13-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111;
}

.giftaccess-v13-info-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0b6bdc;
    color: #fff;
    font-weight: 900;
    font-size: 22px;
}

.giftaccess-v13-card-title strong {
    font-weight: 900;
    font-size: 17px;
}

.giftaccess-v13-card-title small {
    font-weight: 800;
    color: #222;
}

.giftaccess-v13-balance-badge {
    padding: 9px 14px;
    border-radius: 6px;
    background: #282828;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.giftaccess-v13-visual-card {
    position: relative;
    width: 100%;
    max-width: 540px;
    min-height: 320px;
    margin: 0 auto;
    padding: 34px 34px 28px;
    border-radius: 16px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.08)),
        linear-gradient(165deg, #efb633 0%, #8a702b 43%, #160f05 100%);
    overflow: hidden;
    box-shadow: 0 22px 45px rgba(0,0,0,.20);
}

.giftaccess-v13-visual-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 15%, rgba(255,255,255,.18), transparent 26%),
        linear-gradient(90deg, rgba(255,255,255,.07), transparent 38%);
    opacity: .7;
}

.giftaccess-v13-card-brand-row,
.giftaccess-v13-card-mid,
.giftaccess-v13-pan,
.giftaccess-v13-card-meta,
.giftaccess-v13-card-footer {
    position: relative;
    z-index: 2;
}

.giftaccess-v13-card-brand-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.giftaccess-v13-brand-name {
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -.4px;
}

.giftaccess-v13-brand-mark {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(0,0,0,.72);
    border: 3px solid rgba(255,255,255,.86);
    color: #f6b12c;
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
}

.giftaccess-v13-card-mid {
    margin-top: 44px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.giftaccess-v13-chip {
    width: 62px;
    height: 50px;
    border-radius: 9px;
    background: linear-gradient(135deg, #f9df88, #b68a22);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.22);
}

.giftaccess-v13-contactless {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.giftaccess-v13-contactless i {
    display: block;
    width: 10px;
    height: 36px;
    border-right: 3px solid #fff;
    border-radius: 50%;
    opacity: .9;
}

.giftaccess-v13-contactless i:nth-child(2) { height: 48px; }
.giftaccess-v13-contactless i:nth-child(3) { height: 60px; }

.giftaccess-v13-pan {
    margin-top: 24px;
    display: flex;
    gap: 24px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
    word-spacing: 14px;
}

.giftaccess-v13-card-meta {
    margin-top: 14px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 13px;
    font-weight: 800;
}

.giftaccess-v13-card-footer {
    margin-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.giftaccess-v13-holder {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 16px;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.giftaccess-v13-visa {
    font-size: 30px;
    font-weight: 950;
    letter-spacing: -.6px;
}

.giftaccess-v13-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.giftaccess-v13-btn {
    min-height: 42px;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    background: #252525;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    transition: .18s ease;
    box-shadow: 0 4px 0 rgba(0,0,0,.08);
}

.giftaccess-v13-btn:hover {
    background: #111;
    transform: translateY(-1px);
}

.giftaccess-v13-nav {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.giftaccess-v13-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #9cc8ff;
    background: #fff;
    color: #0b6bdc;
    font-size: 24px;
}

.giftaccess-v13-panel {
    margin-top: 22px;
    border-radius: 18px;
    border: 1px solid #e5e5e5;
    background: #fff;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(0,0,0,.04);
}

.giftaccess-v13-panel h4 {
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 900;
}

.giftaccess-v13-panel input {
    min-height: 42px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 9px 12px;
    margin: 0 8px 10px 0;
}

.giftaccess-api-debug {
    margin-top: 18px;
}

.giftaccess-card-result pre,
.giftaccess-api-debug pre {
    max-height: 280px;
    overflow: auto;
}

@media (max-width: 760px) {
    .giftaccess-v13-card-shell {
        padding: 22px 16px;
    }

    .giftaccess-v13-card-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .giftaccess-v13-balance-badge {
        width: 100%;
        text-align: center;
    }

    .giftaccess-v13-visual-card {
        min-height: 290px;
        padding: 26px 22px;
    }

    .giftaccess-v13-brand-name {
        font-size: 20px;
    }

    .giftaccess-v13-pan {
        font-size: 20px;
        word-spacing: 8px;
        letter-spacing: 1px;
    }

    .giftaccess-v13-card-footer {
        margin-top: 22px;
    }

    .giftaccess-v13-actions {
        gap: 9px;
    }

    .giftaccess-v13-btn {
        flex: 1 1 auto;
        min-width: 130px;
    }
}

@media (max-width: 440px) {
    .giftaccess-v13-visual-card {
        min-height: 260px;
    }

    .giftaccess-v13-pan {
        font-size: 17px;
    }

    .giftaccess-v13-holder {
        font-size: 13px;
    }

    .giftaccess-v13-visa {
        font-size: 24px;
    }
}

/* =========================
   GiftAccess NFC v1.3.1 Card Slider
   ========================= */
.giftaccess-v13-slider {
    max-width: 860px;
    margin: 0 auto 34px;
}

.giftaccess-v13-slider-top {
    max-width: 760px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.giftaccess-v13-slider-top strong {
    font-size: 18px;
    font-weight: 900;
    color: #111;
}

.giftaccess-v13-slider-count {
    padding: 8px 12px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.giftaccess-v13-slider-track {
    position: relative;
    min-height: 1px;
}

.giftaccess-v13-slide {
    display: none;
}

.giftaccess-v13-slide.is-active {
    display: block;
}

.giftaccess-v13-slider-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: -12px;
    margin-bottom: 18px;
    position: relative;
    z-index: 5;
}

.giftaccess-v13-slider-prev,
.giftaccess-v13-slider-next {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #9cc8ff;
    background: #fff;
    color: #0b6bdc;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: .18s ease;
}

.giftaccess-v13-slider-prev:hover,
.giftaccess-v13-slider-next:hover {
    background: #0b6bdc;
    color: #fff;
    transform: translateY(-1px);
}

/* Les flèches internes de chaque carte ne servent plus, car le slider global gère la navigation. */
.giftaccess-v13-card-shell .giftaccess-v13-nav {
    display: none;
}

@media (max-width: 760px) {
    .giftaccess-v13-slider-top {
        align-items: flex-start;
        flex-direction: column;
        padding: 0 4px;
    }

    .giftaccess-v13-slider-count {
        width: 100%;
        text-align: center;
    }

    .giftaccess-v13-slider-nav {
        margin-top: 14px;
    }
}

/* v1.3.3 correction: interface client minimale sans supprimer la logique PHP */
.giftaccess-v13-actions-minimal {
    justify-content: center !important;
    margin-top: 24px;
}

.giftaccess-v13-actions-minimal .giftaccess-v13-btn {
    min-width: 190px;
}

/* Masquer les panneaux non utilisés côté client */
.giftaccess-card-info-box,
.giftaccess-card-number-secure-box,
.giftaccess-v13-funds-panel,
.giftaccess-api-debug {
    display: none !important;
}

/* v1.3.4 correct - site icon + paginated history */
.giftaccess-v13-brand-mark {
    overflow: hidden;
}

.giftaccess-v13-brand-mark img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

.giftaccess-v13-actions-minimal {
    gap: 12px;
}

.giftaccess-v13-actions-minimal .giftaccess-v13-btn {
    min-width: 190px;
}

.giftaccess-card-history-box {
    display: none;
}

.giftaccess-history-loading,
.giftaccess-history-empty {
    padding: 14px;
    border-radius: 14px;
    background: #f8f8f8;
    border: 1px solid #ececec;
    color: #333;
    font-weight: 700;
}

.giftaccess-history-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.giftaccess-history-summary strong {
    font-size: 18px;
    font-weight: 900;
    color: #111;
}

.giftaccess-history-summary span {
    padding: 7px 11px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.giftaccess-history-table-wrap {
    width: 100%;
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
}

.giftaccess-history-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 680px;
}

.giftaccess-history-table th,
.giftaccess-history-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.giftaccess-history-table th {
    background: #f7f7f7;
    color: #111;
    font-weight: 900;
}

.giftaccess-history-table td {
    color: #222;
    word-break: break-word;
}

.giftaccess-history-pagination {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.giftaccess-history-pagination span {
    font-weight: 900;
    color: #111;
}

.giftaccess-history-page-btn {
    border: none;
    border-radius: 999px;
    padding: 9px 14px;
    background: #252525;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.giftaccess-history-page-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

@media (max-width: 760px) {
    .giftaccess-v13-actions-minimal .giftaccess-v13-btn {
        min-width: 100%;
    }

    .giftaccess-history-summary {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* v1.3.5 clean header + dépôt */
.giftaccess-v13-card-header-clean {
    justify-content: flex-end !important;
    margin-bottom: 20px;
}

.giftaccess-v13-card-header-clean .giftaccess-v13-balance-badge {
    margin-left: auto;
}

.giftaccess-card-deposit-box h4 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 900;
    color: #111;
}

.giftaccess-card-deposit-box p {
    margin: 0 0 14px;
    color: #555;
    font-size: 13px;
}

.giftaccess-card-deposit-box .giftaccess-money-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.giftaccess-card-deposit-box input {
    min-height: 42px;
    width: 180px;
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 8px 12px;
}

/* v1.3.6 CVV flip + deposit checkout */
.giftaccess-v13-visual-card {
    transform-style: preserve-3d;
    transition: transform .85s cubic-bezier(.2,.7,.2,1), box-shadow .85s ease;
}

.giftaccess-v13-visual-card.giftaccess-card-flip-effect {
    transform: rotateY(180deg) scale(.98);
    box-shadow: 0 26px 60px rgba(0,0,0,.28);
}

.giftaccess-deposit-total {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f8f8f8;
    border: 1px solid #eee;
    color: #333;
    font-weight: 800;
}

.giftaccess-deposit-total strong {
    color: #111;
    font-size: 18px;
}

/* v1.3.8 CVV au verso de la carte pendant 3 secondes */
.giftaccess-v13-visual-card {
    perspective: 1200px;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    overflow: visible !important;
}

.giftaccess-v13-card-inner {
    position: relative;
    width: 100%;
    min-height: 320px;
    transform-style: preserve-3d;
    transition: transform .75s cubic-bezier(.2,.7,.2,1);
    border-radius: 16px;
    box-shadow: 0 22px 45px rgba(0,0,0,.20);
}

.giftaccess-v13-visual-card.giftaccess-card-flip-effect {
    transform: none !important;
}

.giftaccess-v13-visual-card.giftaccess-card-flip-effect .giftaccess-v13-card-inner {
    transform: rotateY(180deg);
}

.giftaccess-v13-card-front,
.giftaccess-v13-card-back {
    position: absolute;
    inset: 0;
    min-height: 320px;
    padding: 34px 34px 28px;
    border-radius: 16px;
    overflow: hidden;
    backface-visibility: hidden;
    color: #fff;
}

.giftaccess-v13-card-front {
    background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.08)),
        linear-gradient(165deg, #efb633 0%, #8a702b 43%, #160f05 100%);
}

.giftaccess-v13-card-front::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 15%, rgba(255,255,255,.18), transparent 26%),
        linear-gradient(90deg, rgba(255,255,255,.07), transparent 38%);
    opacity: .7;
}

.giftaccess-v13-card-back {
    transform: rotateY(180deg);
    background:
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(0,0,0,.12)),
        linear-gradient(165deg, #160f05 0%, #756018 48%, #efb633 100%);
}

.giftaccess-v13-back-strip {
    height: 54px;
    background: rgba(0,0,0,.78);
    margin: 12px -34px 28px;
}

.giftaccess-v13-back-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(255,255,255,.92);
    color: #111;
}

.giftaccess-v13-back-content span {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    color: #555;
}

.giftaccess-v13-back-content strong {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 26px;
    letter-spacing: 3px;
    color: #111;
}

.giftaccess-v13-back-note {
    margin-top: 18px;
    color: rgba(255,255,255,.82);
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 760px) {
    .giftaccess-v13-card-inner,
    .giftaccess-v13-card-front,
    .giftaccess-v13-card-back {
        min-height: 290px;
    }

    .giftaccess-v13-card-front,
    .giftaccess-v13-card-back {
        padding: 26px 22px;
    }

    .giftaccess-v13-back-strip {
        margin-left: -22px;
        margin-right: -22px;
    }
}

@media (max-width: 440px) {
    .giftaccess-v13-card-inner,
    .giftaccess-v13-card-front,
    .giftaccess-v13-card-back {
        min-height: 260px;
    }
}

/* v1.3.9 Fix carte coupée après ajout du verso */
.giftaccess-v13-visual-card {
    min-height: 370px !important;
    max-width: 540px !important;
    margin: 0 auto 10px !important;
}

.giftaccess-v13-card-inner,
.giftaccess-v13-card-front,
.giftaccess-v13-card-back {
    min-height: 370px !important;
    box-sizing: border-box !important;
}

.giftaccess-v13-card-front,
.giftaccess-v13-card-back {
    padding: 32px 34px 34px !important;
}

.giftaccess-v13-card-mid {
    margin-top: 42px !important;
}

.giftaccess-v13-pan {
    margin-top: 28px !important;
}

.giftaccess-v13-card-meta {
    margin-top: 18px !important;
}

.giftaccess-v13-card-footer {
    margin-top: 34px !important;
    padding-bottom: 2px !important;
}

.giftaccess-v13-holder {
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.giftaccess-v13-actions {
    margin-top: 30px !important;
}

@media (max-width: 760px) {
    .giftaccess-v13-visual-card,
    .giftaccess-v13-card-inner,
    .giftaccess-v13-card-front,
    .giftaccess-v13-card-back {
        min-height: 335px !important;
    }

    .giftaccess-v13-card-front,
    .giftaccess-v13-card-back {
        padding: 26px 22px 30px !important;
    }

    .giftaccess-v13-card-mid {
        margin-top: 32px !important;
    }

    .giftaccess-v13-pan {
        margin-top: 22px !important;
    }

    .giftaccess-v13-card-footer {
        margin-top: 28px !important;
    }
}

@media (max-width: 440px) {
    .giftaccess-v13-visual-card,
    .giftaccess-v13-card-inner,
    .giftaccess-v13-card-front,
    .giftaccess-v13-card-back {
        min-height: 315px !important;
    }
}

/* v1.3.10 remove CVV explanatory message */
.giftaccess-cvv-display {
    display: none !important;
}

/* v1.3.14 hide raw CVV success message */
.giftaccess-card-result:empty {
    display: none !important;
}

/* v1.3.15 temporary payment success notice */
.giftaccess-card-success[data-autohide="yes"] {
    transition: opacity .25s ease;
}

/* v1.3.16 fix duplicate PIN block safely via CSS */
.giftaccess-card-number-secure-box {
    display: none !important;
}

/* If two CVV secure blocks are rendered, keep only the first one visible */
.giftaccess-cvv-secure-box ~ .giftaccess-cvv-secure-box {
    display: none !important;
}

/* v1.3.17 hide all raw result blocks */
.giftaccess-card-result, .giftaccess-card-result pre { display:none !important; }


/* v1.3.18 move card counter near slider arrows */
.giftaccess-v13-slider-top {
    justify-content: flex-start !important;
}

.giftaccess-v13-slider-top .giftaccess-v13-slider-count {
    display: none !important;
}

.giftaccess-v13-slider-count-inline {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    white-space: nowrap;
}

.giftaccess-v13-slider-nav {
    align-items: center;
    gap: 18px;
}

@media (max-width: 760px) {
    .giftaccess-v13-slider-nav {
        gap: 10px;
        flex-wrap: wrap;
    }

    .giftaccess-v13-slider-count-inline {
        order: 2;
        min-width: 110px;
    }
}


/* v1.3.19 modern responsive slider navigation */
.giftaccess-v13-slider-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 18px auto 22px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(34,211,238,.22);
    box-shadow: 0 14px 34px rgba(17,17,17,.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: calc(100% - 24px);
    flex-wrap: nowrap;
}

.giftaccess-v13-slider-prev,
.giftaccess-v13-slider-next {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    border-radius: 50%;
    border: 1px solid rgba(34,211,238,.30);
    background: linear-gradient(180deg, #ffffff 0%, #ecfeff 100%);
    color: #111;
    box-shadow: 0 8px 20px rgba(17,17,17,.08);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.giftaccess-v13-slider-prev:hover,
.giftaccess-v13-slider-next:hover,
.giftaccess-v13-slider-prev:focus-visible,
.giftaccess-v13-slider-next:focus-visible {
    background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
    border-color: #22d3ee;
    color: #07101d;
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 12px 24px rgba(34,211,238,.28);
    outline: none;
}

.giftaccess-v13-slider-prev:active,
.giftaccess-v13-slider-next:active {
    transform: scale(.97);
}

.giftaccess-v13-slider-count-inline {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 142px;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #111111 0%, #222222 100%);
    color: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 10px 22px rgba(17,17,17,.18);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .01em;
    white-space: nowrap;
}

.giftaccess-v13-slider-count-inline b {
    font-size: 17px;
    font-weight: 900;
}

@media (max-width: 760px) {
    .giftaccess-v13-slider-nav {
        gap: 10px;
        padding: 10px;
        width: calc(100% - 16px);
        max-width: 360px;
    }

    .giftaccess-v13-slider-prev,
    .giftaccess-v13-slider-next {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 26px;
    }

    .giftaccess-v13-slider-count-inline {
        min-width: 122px;
        min-height: 48px;
        padding: 0 14px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .giftaccess-v13-slider-nav {
        gap: 8px;
        padding: 8px;
        width: calc(100% - 12px);
        max-width: 320px;
    }

    .giftaccess-v13-slider-prev,
    .giftaccess-v13-slider-next {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
        font-size: 24px;
    }

    .giftaccess-v13-slider-count-inline {
        min-width: 108px;
        min-height: 44px;
        padding: 0 12px;
        font-size: 13px;
    }
}


/* v1.3.20 fix arrow alignment inside slider circles */
.giftaccess-v13-slider-prev,
.giftaccess-v13-slider-next {
    position: relative;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    font-size: 0 !important;
    line-height: 1 !important;
    text-align: center !important;
    overflow: hidden;
}

.giftaccess-v13-slider-prev::before,
.giftaccess-v13-slider-next::before {
    position: relative;
    display: block;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    color: currentColor;
}

.giftaccess-v13-slider-prev::before {
    content: '‹';
    left: -1px;
    top: -1px;
}

.giftaccess-v13-slider-next::before {
    content: '›';
    left: 1px;
    top: -1px;
}

@media (max-width: 760px) {
    .giftaccess-v13-slider-prev::before,
    .giftaccess-v13-slider-next::before {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .giftaccess-v13-slider-prev::before,
    .giftaccess-v13-slider-next::before {
        font-size: 28px;
    }
}

/* v1.3.21 remove card titles */
.giftaccess-cards-wrapper > h2 {
    display: none !important;
}

.giftaccess-v13-slider-top {
    display: none !important;
}

/* v1.3.22 remove gold hover: all buttons hover black */
.giftaccess-v13-btn:hover,
.giftaccess-v13-btn:focus,
.giftaccess-v13-btn:focus-visible,
.giftaccess-activate-card-btn:hover,
.giftaccess-activate-card-btn:focus,
.giftaccess-card-btn:hover,
.giftaccess-card-btn:focus,
.giftaccess-history-page-btn:hover,
.giftaccess-history-page-btn:focus,
.giftaccess-v13-slider-prev:hover,
.giftaccess-v13-slider-next:hover,
.giftaccess-v13-slider-prev:focus,
.giftaccess-v13-slider-next:focus,
.giftaccess-v13-slider-prev:focus-visible,
.giftaccess-v13-slider-next:focus-visible {
    background: #111111 !important;
    color: #ffffff !important;
    border-color: #111111 !important;
    box-shadow: 0 10px 24px rgba(17,17,17,.18) !important;
}

.giftaccess-v13-slider-prev:hover::before,
.giftaccess-v13-slider-next:hover::before,
.giftaccess-v13-slider-prev:focus::before,
.giftaccess-v13-slider-next:focus::before,
.giftaccess-v13-slider-prev:focus-visible::before,
.giftaccess-v13-slider-next:focus-visible::before {
    color: #ffffff !important;
}

/* v1.3.23 mobile centering fix for card slider */
.giftaccess-v13-slider-nav {
    display: grid !important;
    grid-template-columns: 54px minmax(120px, auto) 54px;
    align-items: center !important;
    justify-content: center !important;
    justify-items: center !important;
    width: fit-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
    left: auto !important;
    transform: none !important;
}

.giftaccess-v13-slider-prev,
.giftaccess-v13-slider-next,
.giftaccess-v13-slider-count-inline {
    justify-self: center !important;
    align-self: center !important;
}

.giftaccess-v13-slider-count-inline {
    margin: 0 !important;
}

@media (max-width: 760px) {
    .giftaccess-v13-slider-nav {
        grid-template-columns: 48px minmax(112px, auto) 48px;
        width: fit-content !important;
        max-width: calc(100% - 16px) !important;
        padding: 8px 10px !important;
    }
}

@media (max-width: 480px) {
    .giftaccess-v13-slider-nav {
        grid-template-columns: 44px minmax(104px, auto) 44px;
        gap: 10px !important;
        width: fit-content !important;
        max-width: calc(100% - 12px) !important;
        margin: 14px auto 18px !important;
    }

    .giftaccess-v13-slider-count-inline {
        min-width: 110px !important;
        text-align: center !important;
    }
}

/* v1.3.24 position create-card block below card/actions */
.giftaccess-create-card-bottom {
    max-width: 760px;
    margin: 26px auto 0;
}

.giftaccess-create-card-bottom .giftaccess-create-card-widget {
    margin-top: 0;
}

.giftaccess-create-card-bottom .giftaccess-create-card-toggle {
    border-radius: 22px;
}

@media (max-width: 760px) {
    .giftaccess-create-card-bottom {
        margin-top: 22px;
    }
}

/* v1.3.25 create card hover visibility + hide card area while form open */
.giftaccess-create-card-toggle,
.giftaccess-create-card-toggle:hover,
.giftaccess-create-card-toggle:focus,
.giftaccess-create-card-toggle:focus-visible {
    background: linear-gradient(135deg, #111111 0%, #252525 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}

.giftaccess-create-card-toggle *,
.giftaccess-create-card-toggle:hover *,
.giftaccess-create-card-toggle:focus *,
.giftaccess-create-card-toggle:focus-visible * {
    color: #ffffff !important;
}

.giftaccess-create-card-toggle small,
.giftaccess-create-card-toggle:hover small,
.giftaccess-create-card-toggle:focus small,
.giftaccess-create-card-toggle:focus-visible small {
    color: rgba(255,255,255,.78) !important;
}

.giftaccess-create-card-icon {
    color: #ffffff !important;
}

.giftaccess-create-card-widget.is-open {
    margin-top: 0;
}

/* v1.3.26/v1.3.27 create-card close indicator + scroll-to-form */
.giftaccess-create-card-toggle {
    position: relative;
    padding-right: 76px !important;
}

.giftaccess-create-card-widget.is-open .giftaccess-create-card-toggle::after {
    content: '×';
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 8px 16px rgba(0,0,0,.12);
}

@media (max-width: 760px) {
    .giftaccess-create-card-toggle {
        padding-right: 64px !important;
    }

    .giftaccess-create-card-widget.is-open .giftaccess-create-card-toggle::after {
        right: 16px;
        width: 30px;
        height: 30px;
        font-size: 22px;
    }
}


/* v1.3.28 no-card view + mobile responsiveness */
.giftaccess-no-card-only {
    max-width: 760px;
    margin: 0 auto;
}

.giftaccess-no-card-only .giftaccess-create-card-widget,
.giftaccess-no-card-only .giftaccess-create-card-toggle {
    margin-top: 0 !important;
}

/* better responsive layout for create-card block */
.giftaccess-create-card-toggle {
    width: 100%;
    min-height: 116px;
    display: flex !important;
    align-items: center;
    gap: 18px;
    box-sizing: border-box;
    overflow: hidden;
}

.giftaccess-create-card-toggle > * {
    min-width: 0;
}

.giftaccess-create-card-icon {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.giftaccess-create-card-toggle h3,
.giftaccess-create-card-toggle strong {
    margin: 0 0 4px 0 !important;
    line-height: 1.05 !important;
    word-break: break-word;
}

.giftaccess-create-card-toggle small,
.giftaccess-create-card-toggle p,
.giftaccess-create-card-toggle span {
    display: block;
    line-height: 1.12 !important;
    white-space: normal !important;
    word-break: break-word;
}

@media (max-width: 760px) {
    .giftaccess-no-card-only {
        max-width: calc(100% - 20px);
    }

    .giftaccess-create-card-toggle {
        min-height: 108px;
        border-radius: 22px !important;
        padding: 18px 18px 18px 16px !important;
        gap: 14px;
    }

    .giftaccess-create-card-icon {
        flex-basis: 56px;
        width: 56px;
        height: 56px;
    }

    .giftaccess-create-card-toggle h3,
    .giftaccess-create-card-toggle strong {
        font-size: 20px !important;
    }

    .giftaccess-create-card-toggle small,
    .giftaccess-create-card-toggle p,
    .giftaccess-create-card-toggle span {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .giftaccess-create-card-toggle {
        min-height: 96px;
        padding: 16px 16px 16px 14px !important;
        gap: 12px;
        padding-right: 56px !important;
    }

    .giftaccess-create-card-icon {
        flex-basis: 48px;
        width: 48px;
        height: 48px;
        border-radius: 16px !important;
    }

    .giftaccess-create-card-toggle h3,
    .giftaccess-create-card-toggle strong {
        font-size: 16px !important;
        line-height: 1 !important;
    }

    .giftaccess-create-card-toggle small,
    .giftaccess-create-card-toggle p,
    .giftaccess-create-card-toggle span {
        font-size: 10px !important;
        line-height: 1.1 !important;
    }
}


/* v1.3.29 fix create-card icon rendering */
.giftaccess-create-card-icon {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 18px;
    background: rgba(34,211,238,.18);
    overflow: hidden;
    line-height: 1 !important;
}

.giftaccess-create-card-icon svg {
    display: block;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
}

@media (max-width: 760px) {
    .giftaccess-create-card-icon {
        flex-basis: 54px !important;
        width: 54px !important;
        height: 54px !important;
        border-radius: 16px !important;
    }

    .giftaccess-create-card-icon svg {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }
}

@media (max-width: 480px) {
    .giftaccess-create-card-icon {
        flex-basis: 48px !important;
        width: 48px !important;
        height: 48px !important;
        border-radius: 14px !important;
    }

    .giftaccess-create-card-icon svg {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
    }
}

/* v1.3.31 freeze / activate buttons */
.giftaccess-freeze-card-btn,
.giftaccess-activate-card-btn {
    min-width: 120px;
}

.giftaccess-freeze-card-btn {
    background: #111111 !important;
    color: #ffffff !important;
}

.giftaccess-activate-card-btn {
    background: #111111 !important;
    color: #ffffff !important;
}

.giftaccess-freeze-card-btn:hover,
.giftaccess-activate-card-btn:hover,
.giftaccess-freeze-card-btn:focus,
.giftaccess-activate-card-btn:focus {
    background: #000000 !important;
    color: #ffffff !important;
}

@media (max-width: 760px) {
    .giftaccess-freeze-card-btn,
    .giftaccess-activate-card-btn {
        min-width: 100%;
    }
}

/* v1.3.32 one dynamic status button */
.giftaccess-card-status-toggle {
    min-width: 130px;
}

@media (max-width: 760px) {
    .giftaccess-card-status-toggle {
        min-width: 100%;
    }
}


/* v1.3.33 status signal on card */
.giftaccess-v13-brand-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
}

.giftaccess-v13-card-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.giftaccess-v13-card-status-pill i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex: 0 0 8px;
}

.giftaccess-v13-card-status-pill.is-active {
    background: rgba(28, 189, 98, .14);
    border: 1px solid rgba(28, 189, 98, .32);
    color: #dff8ea;
}
.giftaccess-v13-card-status-pill.is-active i {
    background: #2ee27a;
    box-shadow: 0 0 0 4px rgba(46,226,122,.16);
}

.giftaccess-v13-card-status-pill.is-frozen {
    background: rgba(255, 108, 108, .12);
    border: 1px solid rgba(255, 108, 108, .28);
    color: #ffe3e3;
}
.giftaccess-v13-card-status-pill.is-frozen i {
    background: #ff7b7b;
    box-shadow: 0 0 0 4px rgba(255,123,123,.14);
}

.giftaccess-v13-card-status-pill.is-pending {
    background: rgba(255, 204, 84, .14);
    border: 1px solid rgba(255, 204, 84, .28);
    color: #fff0c7;
}
.giftaccess-v13-card-status-pill.is-pending i {
    background: #ffcf66;
    box-shadow: 0 0 0 4px rgba(255,207,102,.14);
}

@media (max-width: 480px) {
    .giftaccess-v13-brand-left {
        gap: 8px;
    }
    .giftaccess-v13-card-status-pill {
        font-size: 10px;
        padding: 6px 10px;
    }
}

/* v1.3.34 remove front-card status signal */
.giftaccess-v13-card-status-pill,
.giftaccess-v13-brand-left .giftaccess-v13-card-status-pill {
    display: none !important;
}

/* v1.3.45 fix CVV buttons spacing on mobile */
.giftaccess-cvv-reveal .giftaccess-cvv-actions-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.giftaccess-cvv-reveal .giftaccess-cvv-actions-row .giftaccess-v13-btn {
    margin: 0 !important;
    flex: 0 1 auto;
    min-width: 160px;
}

.giftaccess-cvv-reveal .giftaccess-cvv-pin {
    display: block;
    width: 100%;
    max-width: 420px;
    margin-bottom: 0 !important;
}

@media (max-width: 760px) {
    .giftaccess-cvv-reveal .giftaccess-cvv-actions-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        width: 100%;
        margin-top: 18px;
    }

    .giftaccess-cvv-reveal .giftaccess-cvv-actions-row .giftaccess-v13-btn {
        width: 100% !important;
        min-width: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 56px;
        border-radius: 12px;
    }
}

/* Fallback if an older cached template still renders the two buttons without wrapper */
@media (max-width: 760px) {
    .giftaccess-cvv-reveal > .giftaccess-reveal-cvv,
    .giftaccess-cvv-reveal > .giftaccess-change-cvv-pin-toggle {
        display: flex !important;
        width: 100% !important;
        margin-top: 14px !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .giftaccess-cvv-reveal > .giftaccess-reveal-cvv + .giftaccess-change-cvv-pin-toggle {
        margin-top: 14px !important;
    }
}

/* v1.3.50 admin card sync action */
.giftaccess-admin-card-table .button + .button {
    margin-left: 6px;
}

/* v1.3.51 admin sensitive card form */
.giftaccess-sensitive-admin-box {
    display: inline-block;
    margin: 0 6px;
    vertical-align: top;
}

.giftaccess-sensitive-admin-box summary {
    cursor: pointer;
    list-style: none;
}

.giftaccess-sensitive-admin-box summary::-webkit-details-marker {
    display: none;
}

.giftaccess-sensitive-admin-box form {
    margin-top: 8px;
    padding: 10px;
    border: 1px solid #dcdcde;
    border-radius: 8px;
    background: #fff;
    min-width: 260px;
}

.giftaccess-sensitive-admin-box input {
    display: block;
    width: 100%;
    margin-bottom: 8px;
}

.giftaccess-sensitive-admin-box .small-text {
    width: 100% !important;
}

/* v1.3.52 mobile actions behavior */
@media (max-width: 760px) {
    .giftaccess-v13-card-shell.giftaccess-mobile-panel-open .giftaccess-v13-actions-minimal {
        gap: 12px !important;
    }

    .giftaccess-v13-card-shell.giftaccess-mobile-panel-open .giftaccess-card-status-toggle {
        width: 100% !important;
        margin-bottom: 8px !important;
    }

    .giftaccess-v13-panel {
        margin-top: 14px !important;
    }

    .giftaccess-card-deposit-box,
    .giftaccess-cvv-secure-box,
    .giftaccess-card-history-box {
        border-radius: 18px !important;
    }
}

/* v1.3.58 clean mobile panel open/close */
.giftaccess-card-deposit-box,
.giftaccess-cvv-secure-box,
.giftaccess-card-history-box {
    position: relative !important;
}

.giftaccess-panel-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(17,17,17,.18);
    z-index: 30;
    pointer-events: auto !important;
    touch-action: manipulation;
}

.giftaccess-panel-close:hover,
.giftaccess-panel-close:focus,
.giftaccess-panel-close:focus-visible {
    background: #000000 !important;
    color: #ffffff !important;
    outline: none;
}

@media (max-width: 760px) {
    .giftaccess-card-deposit-box,
    .giftaccess-cvv-secure-box,
    .giftaccess-card-history-box {
        padding-top: 58px !important;
        overflow: visible !important;
    }

    .giftaccess-panel-close {
        display: inline-flex !important;
    }

    .giftaccess-v13-card-shell.giftaccess-mobile-panel-open .giftaccess-v13-actions-minimal {
        gap: 12px !important;
    }

    .giftaccess-v13-card-shell.giftaccess-mobile-panel-open .giftaccess-card-status-toggle {
        width: 100% !important;
        margin-bottom: 8px !important;
    }
}

@media (min-width: 761px) {
    .giftaccess-panel-close {
        display: none !important;
    }
}


/* v1.3.86 - suffixe HTG sur total estimé */
.giftaccess-create-total-currency {
    margin-left: 6px;
    font-weight: 900;
    color: inherit;
}


/* v1.3.87 - total estimé plus compact et moderne */
.giftaccess-create-total {
    margin-top: 18px;
    padding: 12px 22px;
    border-radius: 14px;
    background: #f8f8f8;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.giftaccess-create-total-label {
    color: #444;
    font-weight: 800;
    font-size: 15px;
}

.giftaccess-create-total-amount {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    white-space: nowrap;
}

.giftaccess-create-total-value {
    font-size: 20px;
    line-height: 1;
    color: #111;
}

.giftaccess-create-total-currency {
    margin-left: 0;
    font-weight: 900;
    color: #444;
    font-size: 15px;
    line-height: 1;
}

@media (max-width: 700px) {
    .giftaccess-create-total {
        padding: 12px 16px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }
    .giftaccess-create-total-label {
        font-size: 14px;
    }
    .giftaccess-create-total-amount {
        gap: 6px;
    }
    .giftaccess-create-total-value {
        font-size: 18px;
    }
    .giftaccess-create-total-currency {
        font-size: 14px;
    }
}


/* v1.3.88 - pays HTI verrouillé */
.giftaccess-readonly-field{background:#f7f7f7!important;color:#555!important;cursor:not-allowed;}


/* v1.3.89 - date de naissance obligatoire + validation âge */
.giftaccess-dob-error {
    display: block;
    margin-top: 6px;
    color: #b42318 !important;
    font-weight: 800;
    font-size: 12px;
}

input[name="giftaccess_dob"]:invalid {
    border-color: #d92d20 !important;
}


/* v1.3.90 - vrai calendrier datepicker */
.giftaccess-dob-wrap {
    position: relative;
    display: block;
    width: 100%;
}

.giftaccess-dob-wrap input[name="giftaccess_dob"] {
    padding-right: 48px !important;
}

.giftaccess-dob-calendar-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 10px;
    background: #111;
    color: #fff;
    cursor: pointer;
    line-height: 1;
}

.ui-datepicker {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 18px 45px rgba(0,0,0,.16);
    z-index: 999999 !important;
    font-family: inherit;
}

.ui-datepicker-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.ui-datepicker-title {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.ui-datepicker select {
    min-height: 34px;
    border: 1px solid #ddd;
    border-radius: 9px;
    padding: 4px 8px;
    background: #fff;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    cursor: pointer;
    font-weight: 900;
    color: #111;
    text-decoration: none;
}

.ui-datepicker table {
    width: 100%;
    border-collapse: collapse;
}

.ui-datepicker th {
    font-size: 12px;
    padding: 6px;
    color: #555;
}

.ui-datepicker td {
    padding: 2px;
    text-align: center;
}

.ui-datepicker td a {
    display: block;
    padding: 8px 10px;
    border-radius: 10px;
    color: #111;
    text-decoration: none;
}

.ui-datepicker td a:hover,
.ui-datepicker .ui-state-active {
    background: #111;
    color: #fff !important;
}

.ui-datepicker-unselectable span {
    display: block;
    padding: 8px 10px;
    color: #bbb;
}


/* v1.3.91 - responsive datepicker + visible icon */
.giftaccess-dob-wrap {
    min-width: 0;
}

.giftaccess-dob-wrap input[name="giftaccess_dob"] {
    width: 100%;
    box-sizing: border-box;
}

.giftaccess-dob-calendar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    font-size: 0;
}

.giftaccess-dob-calendar-btn .giftaccess-dob-calendar-icon,
.giftaccess-dob-calendar-btn::before {
    content: "📅";
    font-size: 18px;
    line-height: 1;
    display: inline-block;
}

.giftaccess-dob-calendar-btn .giftaccess-dob-calendar-icon {
    width: 1em;
    height: 1em;
}

.ui-datepicker {
    width: min(320px, calc(100vw - 24px)) !important;
    box-sizing: border-box;
}

.ui-datepicker * {
    box-sizing: border-box;
}

.ui-datepicker .ui-datepicker-title {
    flex-wrap: wrap;
}

.ui-datepicker td a,
.ui-datepicker-unselectable span {
    min-width: 34px;
}

@media (max-width: 767px) {
    .giftaccess-dob-wrap input[name="giftaccess_dob"] {
        padding-right: 44px !important;
    }

    .giftaccess-dob-calendar-btn {
        right: 6px;
        width: 32px;
        height: 32px;
        border-radius: 9px;
    }

    .ui-datepicker {
        padding: 10px;
        border-radius: 14px;
    }

    .ui-datepicker-header {
        gap: 6px;
        margin-bottom: 8px;
    }

    .ui-datepicker-title {
        gap: 4px;
    }

    .ui-datepicker select {
        min-height: 32px;
        max-width: 100%;
        font-size: 14px;
        padding: 4px 6px;
    }

    .ui-datepicker th {
        padding: 4px 2px;
        font-size: 11px;
    }

    .ui-datepicker td {
        padding: 1px;
    }

    .ui-datepicker td a,
    .ui-datepicker-unselectable span {
        padding: 8px 0;
        border-radius: 8px;
        min-width: 0;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .ui-datepicker {
        width: min(300px, calc(100vw - 16px)) !important;
        padding: 8px;
    }

    .ui-datepicker td a,
    .ui-datepicker-unselectable span {
        padding: 7px 0;
        font-size: 13px;
    }

    .ui-datepicker-prev,
    .ui-datepicker-next {
        font-size: 13px;
    }
}


/* v1.3.92 - native date field style */
input[name="giftaccess_dob"].giftaccess-dob-native {
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    background: #fff;
    color: #101828;
    font-size: 16px;
    box-sizing: border-box;
}

input[name="giftaccess_dob"].giftaccess-dob-native:focus {
    outline: none;
    border-color: #111;
    box-shadow: 0 0 0 3px rgba(17,17,17,.08);
}

input[name="giftaccess_dob"].giftaccess-dob-native::-webkit-calendar-picker-indicator {
    opacity: 1;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

input[type="date"].giftaccess-dob-native:invalid::-webkit-datetime-edit {
    color: #98a2b3;
}

input[name="giftaccess_dob"].giftaccess-dob-native + small {
    display: block;
    margin-top: 6px;
}

.giftaccess-dob-wrap,
.giftaccess-dob-calendar-btn,
.ui-datepicker {
    display: none !important;
}

@media (max-width: 767px) {
    input[name="giftaccess_dob"].giftaccess-dob-native {
        min-height: 52px;
        padding: 12px 14px;
        font-size: 15px;
        border-radius: 10px;
    }
}


/* v1.3.93 - fix Safari/iPhone CVV verso */
.giftaccess-v13-visual-card {
    -webkit-perspective: 1200px !important;
    perspective: 1200px !important;
    overflow: visible !important;
}

.giftaccess-v13-card-inner {
    position: relative !important;
    -webkit-transform-style: preserve-3d !important;
    transform-style: preserve-3d !important;
    -webkit-transition: -webkit-transform .75s cubic-bezier(.2,.7,.2,1) !important;
    transition: transform .75s cubic-bezier(.2,.7,.2,1) !important;
}

.giftaccess-v13-card-front,
.giftaccess-v13-card-back {
    -webkit-backface-visibility: hidden !important;
    backface-visibility: hidden !important;
    -webkit-transform-style: preserve-3d !important;
    transform-style: preserve-3d !important;
}

.giftaccess-v13-card-front {
    position: relative !important;
    z-index: 2 !important;
    -webkit-transform: rotateY(0deg) translateZ(1px) !important;
    transform: rotateY(0deg) translateZ(1px) !important;
}

.giftaccess-v13-card-back {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 3 !important;
    -webkit-transform: rotateY(180deg) translateZ(2px) !important;
    transform: rotateY(180deg) translateZ(2px) !important;
    overflow: hidden !important;
}

.giftaccess-v13-visual-card.giftaccess-card-flip-effect .giftaccess-v13-card-inner,
.giftaccess-v13-card-inner.giftaccess-card-flip-effect {
    -webkit-transform: rotateY(180deg) !important;
    transform: rotateY(180deg) !important;
}

.giftaccess-v13-back-content {
    position: relative !important;
    z-index: 20 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 56px 0 18px !important;
    box-sizing: border-box !important;
}

.giftaccess-v13-back-cvv,
.giftaccess-v13-live-cvv {
    position: relative !important;
    z-index: 30 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 72px !important;
    padding: 4px 8px !important;
    border-radius: 10px !important;
    background: rgba(255,255,255,.92) !important;
    color: #111 !important;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
    -webkit-transform: translateZ(12px) !important;
    transform: translateZ(12px) !important;
}

.giftaccess-v13-back-strip {
    position: relative !important;
    z-index: 5 !important;
}

@supports (-webkit-touch-callout: none) {
    .giftaccess-v13-card-inner,
    .giftaccess-v13-card-front,
    .giftaccess-v13-card-back {
        -webkit-transform-style: preserve-3d !important;
    }

    .giftaccess-v13-card-back {
        -webkit-transform: rotateY(180deg) translateZ(3px) !important;
        transform: rotateY(180deg) translateZ(3px) !important;
    }

    .giftaccess-v13-visual-card.giftaccess-card-flip-effect .giftaccess-v13-card-inner,
    .giftaccess-v13-card-inner.giftaccess-card-flip-effect {
        -webkit-transform: rotateY(180deg) !important;
        transform: rotateY(180deg) !important;
    }
}

@media (max-width: 760px) {
    .giftaccess-v13-back-content {
        padding-left: 14px !important;
        padding-right: 54px !important;
        gap: 8px !important;
    }

    .giftaccess-v13-back-content span {
        font-size: clamp(13px, 3.2vw, 17px) !important;
        white-space: nowrap !important;
    }

    .giftaccess-v13-back-cvv,
    .giftaccess-v13-live-cvv {
        min-width: 58px !important;
        font-size: clamp(17px, 5vw, 24px) !important;
        letter-spacing: 1px !important;
        padding: 4px 7px !important;
    }
}

@media (max-width: 420px) {
    .giftaccess-v13-back-content {
        padding-left: 12px !important;
        padding-right: 48px !important;
    }

    .giftaccess-v13-back-cvv,
    .giftaccess-v13-live-cvv {
        min-width: 52px !important;
        font-size: 18px !important;
    }
}


/* v1.3.94 - historique : cacher les références techniques côté client */
.giftaccess-history-table td:last-child {
    max-width: 340px;
    white-space: normal;
    word-break: break-word;
    line-height: 1.45;
}

.giftaccess-history-table th:last-child,
.giftaccess-history-table td:last-child {
    text-align: left;
}

/* v1.3.95 */
.giftaccess-history-table td:nth-child(2), .giftaccess-history-table td:nth-child(5){ text-transform:none; }


/* v1.3.96 - historique : détails lisibles depuis narrative */
.giftaccess-history-table td:nth-child(5) {
    min-width: 260px;
}


/* v1.3.97 - dépôt minimum aussi appliqué aux recharges */
.giftaccess-deposit-minimum-note {
    display: block;
    margin-top: 6px;
    color: #667085;
    font-size: 12px;
    font-weight: 700;
}

.giftaccess-deposit-minimum-error {
    display: block;
    margin-top: 6px;
    color: #b42318 !important;
    font-size: 12px;
    font-weight: 800;
}


/* v1.4.0 - message PIN incorrect CVV */
.giftaccess-cvv-error-message {
    display: none;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #fff1f3;
    border: 1px solid #fda4af;
    color: #b42318;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}


/* v1.4.1 - PIN incorrect visible dans CVV */
.giftaccess-cvv-secure-box .giftaccess-cvv-error-message,
.giftaccess-v13-card-shell > .giftaccess-cvv-error-message {
    margin-top: 10px !important;
    padding: 11px 13px !important;
    border-radius: 12px !important;
    background: #fff1f3 !important;
    border: 1px solid #fda4af !important;
    color: #b42318 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
}


/* v1.4.2 - message PIN CVV toujours visible */
.giftaccess-cvv-secure-box .giftaccess-cvv-error-message {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-top: 10px !important;
    margin-bottom: 6px !important;
    padding: 11px 13px !important;
    border-radius: 12px !important;
    background: #fff1f3 !important;
    border: 1px solid #fda4af !important;
    color: #b42318 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.35 !important;
}


/* v1.4.4 - remplacement carte sans frais activation */
.giftaccess-replacement-card-note {
    display: block;
    margin-top: 6px;
    color: #6b4e00;
    font-weight: 800;
}

/* fwjd fix - full page, less cramped, keep original dark/premium appearance */
.giftaccess-cards-wrapper{
    width:100% !important;
    max-width:1280px !important;
    margin:20px auto 48px !important;
    padding-left:clamp(14px,3vw,32px) !important;
    padding-right:clamp(14px,3vw,32px) !important;
    box-sizing:border-box !important;
}
.giftaccess-no-card-only,
.giftaccess-create-card-bottom{
    width:100% !important;
    max-width:980px !important;
    margin-left:auto !important;
    margin-right:auto !important;
}
.giftaccess-create-card-widget{
    width:100% !important;
    border-radius:28px !important;
    overflow:hidden !important;
}
.giftaccess-create-card-toggle{
    min-height:150px !important;
    padding:28px 84px 28px 28px !important;
    background:linear-gradient(135deg,#070707 0%,#171112 48%,#6d0f1f 100%) !important;
}
.giftaccess-create-card-toggle strong{
    font-size:clamp(24px,4vw,42px) !important;
    letter-spacing:-.03em !important;
}
.giftaccess-create-card-toggle small{
    margin-top:8px !important;
    font-size:clamp(13px,2vw,17px) !important;
}
.giftaccess-create-card-form{
    padding:clamp(18px,3vw,34px) !important;
}
.giftaccess-create-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:16px !important;
}
.giftaccess-v13-slider{
    width:100% !important;
    max-width:980px !important;
    margin-left:auto !important;
    margin-right:auto !important;
}
.giftaccess-v13-card-shell,
.giftaccess-card-box-pro{
    width:100% !important;
}
@media(max-width:760px){
    .giftaccess-cards-wrapper{
        margin-top:10px !important;
        padding-left:10px !important;
        padding-right:10px !important;
    }
    .giftaccess-no-card-only,
    .giftaccess-create-card-bottom{
        max-width:100% !important;
    }
    .giftaccess-create-card-toggle{
        min-height:132px !important;
        padding:22px 62px 22px 18px !important;
        border-radius:24px !important;
    }
    .giftaccess-create-card-form{
        padding:18px !important;
    }
    .giftaccess-create-grid{
        grid-template-columns:1fr !important;
    }
}

/* fwjd v2 - create-card hero like requested screenshots */
.giftaccess-create-card-hero-widget{
    background:#050505 !important;
    border:0 !important;
    box-shadow:none !important;
    border-radius:0 !important;
    overflow:visible !important;
}
.giftaccess-create-card-hero{
    width:100% !important;
    margin:0 auto !important;
    background:radial-gradient(circle at 50% 56%, rgba(116,0,20,.36), rgba(8,8,8,.96) 46%, #050505 100%) !important;
    color:#fff !important;
    padding:clamp(28px,5vw,72px) clamp(12px,4vw,46px) clamp(42px,7vw,90px) !important;
    box-sizing:border-box !important;
}
.giftaccess-create-card-hero-inner{
    width:100% !important;
    max-width:1080px !important;
    margin:0 auto !important;
    text-align:center !important;
}
.giftaccess-create-card-hero-title{
    margin:0 auto 28px !important;
    color:#fff !important;
    font-size:clamp(54px,9vw,114px) !important;
    line-height:.94 !important;
    letter-spacing:-.065em !important;
    font-weight:950 !important;
}
.giftaccess-create-card-hero-title span{color:#ed1231 !important;}
.giftaccess-create-card-hero-subtitle{
    max-width:860px !important;
    margin:0 auto clamp(42px,7vw,80px) !important;
    color:rgba(255,255,255,.48) !important;
    font-size:clamp(23px,3.8vw,42px) !important;
    line-height:1.35 !important;
    font-weight:850 !important;
}
.giftaccess-create-card-preview{
    width:min(920px,100%) !important;
    aspect-ratio:1.75/1 !important;
    margin:0 auto clamp(40px,6vw,76px) !important;
    border-radius:clamp(26px,4vw,52px) !important;
    padding:clamp(30px,6vw,74px) clamp(30px,6vw,78px) !important;
    box-sizing:border-box !important;
    background:radial-gradient(circle at 78% 18%, rgba(242,35,72,.34), transparent 28%),linear-gradient(135deg,#520512 0%,#6d0718 45%,#250009 100%) !important;
    border:2px solid rgba(237,18,49,.28) !important;
    box-shadow:0 32px 95px rgba(237,18,49,.24), inset 0 0 38px rgba(255,255,255,.04) !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:space-between !important;
    text-align:left !important;
}
.giftaccess-preview-top,.giftaccess-preview-bottom{display:flex !important;align-items:center !important;justify-content:space-between !important;gap:24px !important;}
.giftaccess-preview-top strong{font-size:clamp(28px,5vw,48px) !important;letter-spacing:.03em !important;color:#fff !important;}
.giftaccess-preview-top span{width:clamp(72px,11vw,116px) !important;height:clamp(54px,8vw,88px) !important;border-radius:16px !important;background:linear-gradient(135deg,#f8e070,#c9992a) !important;display:block !important;}
.giftaccess-preview-dots{text-align:center !important;color:rgba(255,255,255,.68) !important;font-size:clamp(32px,5.3vw,58px) !important;letter-spacing:.18em !important;line-height:1 !important;}
.giftaccess-preview-bottom strong{font-size:clamp(21px,3.8vw,36px) !important;letter-spacing:.24em !important;color:rgba(255,255,255,.72) !important;}
.giftaccess-preview-bottom em{font-style:normal !important;color:#6dff9f !important;border:2px solid rgba(109,255,159,.45) !important;border-radius:999px !important;padding:10px 28px !important;background:rgba(31,62,35,.72) !important;font-size:clamp(20px,3.6vw,34px) !important;font-weight:950 !important;letter-spacing:.12em !important;}
.giftaccess-create-trust-row{display:flex !important;justify-content:center !important;align-items:center !important;gap:clamp(16px,3vw,34px) !important;flex-wrap:wrap !important;margin:0 auto 48px !important;}
.giftaccess-create-trust-row span{display:inline-flex !important;align-items:center !important;gap:12px !important;background:rgba(255,255,255,.07) !important;border:2px solid rgba(255,255,255,.08) !important;border-radius:28px !important;padding:20px 38px !important;color:rgba(255,255,255,.8) !important;font-size:clamp(24px,4vw,42px) !important;font-weight:900 !important;box-shadow:inset 0 0 0 1px rgba(255,255,255,.03) !important;}
.giftaccess-create-main-cta{
    width:min(920px,100%) !important;
    min-height:clamp(82px,12vw,136px) !important;
    margin:0 auto 28px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    border:0 !important;
    border-radius:clamp(28px,4vw,50px) !important;
    background:linear-gradient(180deg,#ff3448 0%,#df001f 100%) !important;
    color:#fff !important;
    font-size:clamp(30px,5.3vw,58px) !important;
    font-weight:950 !important;
    letter-spacing:-.03em !important;
    text-align:center !important;
    box-shadow:0 22px 55px rgba(237,18,49,.32) !important;
    padding:0 28px !important;
}
.giftaccess-create-main-cta::after{display:none !important;}
.giftaccess-create-card-minimum{margin:0 !important;color:rgba(255,255,255,.32) !important;font-size:clamp(20px,3.5vw,36px) !important;font-weight:850 !important;}
.giftaccess-create-card-hero-widget.is-open .giftaccess-create-card-form{margin-top:0 !important;background:#fff !important;border-radius:26px !important;box-shadow:0 16px 50px rgba(0,0,0,.16) !important;}
@media(max-width:760px){
    .giftaccess-create-card-hero{padding-left:0 !important;padding-right:0 !important;}
    .giftaccess-create-card-hero-inner{max-width:100% !important;padding-left:0 !important;padding-right:0 !important;}
    .giftaccess-create-card-preview{width:100% !important;border-left-width:0 !important;border-right-width:0 !important;border-radius:0 !important;}
    .giftaccess-create-trust-row span{padding:14px 22px !important;border-radius:20px !important;}
    .giftaccess-create-main-cta{width:calc(100% - 28px) !important;}
    .giftaccess-create-card-form{margin-left:10px !important;margin-right:10px !important;}
}
@media(max-width:420px){
    .giftaccess-create-card-hero-title{font-size:48px !important;}
    .giftaccess-create-card-hero-subtitle{font-size:20px !important;padding:0 10px !important;}
    .giftaccess-preview-dots{letter-spacing:.1em !important;}
    .giftaccess-create-trust-row{gap:10px !important;}
    .giftaccess-create-trust-row span{font-size:18px !important;padding:12px 16px !important;}
}
