/* =============================================================
   AKV Wedding Gift Widget
   ============================================================= */

.akv-wedding-gift-wrapper {
    font-family: inherit;
}

/* ── Intro ── */
.akv-gift-intro {
    margin-bottom: 20px;
    text-align: center;
}

.akv-gift-heading {
    margin: 0 0 12px;
    line-height: 1.3;
}

.akv-gift-desc {
    margin: 0;
    line-height: 1.7;
    opacity: .85;
}

/* ── Button ── */
.akv-gift-btn-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.akv-gift-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #c8956c;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .25s, transform .2s, box-shadow .25s;
    box-shadow: 0 4px 18px rgba(200, 149, 108, .4);
    letter-spacing: .3px;
    /* FIX: hilangkan tap highlight biru/putih di mobile */
    -webkit-tap-highlight-color: transparent;
    outline: none;
    -webkit-appearance: none;
    user-select: none;
}

.akv-gift-btn:hover {
    background: #b07d55;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200, 149, 108, .5);
}

.akv-gift-btn:active {
    transform: translateY(0);
}

.akv-gift-btn:focus-visible {
    outline: 2px solid rgba(200, 149, 108, .7);
    outline-offset: 3px;
}

/* ── Collapsible Panel ── */
.akv-gift-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .45s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
}

.akv-gift-panel > .akv-gift-panel-inner {
    min-height: 0;
    overflow: visible;
}

.akv-gift-panel.akv-gift-panel--open {
    grid-template-rows: 1fr;
    overflow: visible;
}

/* ── Bank Cards: vertikal single column ── */
.akv-gift-panel-inner {
    padding-top: 4px;
}

.akv-gift-banks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
    /* Batasi lebar container agar kartu tidak terlalu lebar di desktop */
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════
   BANK CARD
   Ukuran tetap via max-width 480px + aspect-ratio 1.586:1
   Teks presisi karena kartu tidak berubah ukuran drastis.
   ═══════════════════════════════════════════════ */
.akv-gift-bank-card {
    position: relative;
    border-radius: 18px;
    padding: 20px 22px 16px;
    overflow: hidden;
    /* Tinggi minimum kartu — konsisten di semua layar */
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .22);
    transition: transform .25s, box-shadow .25s;
    color: #fff;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
}

.akv-gift-bank-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .26);
}

/* Decorative shine circles */
.akv-gift-bank-card::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    top: -90px;
    right: -80px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    pointer-events: none;
}

.akv-gift-bank-card::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    pointer-events: none;
}

/* Gradient gelap di sisi kanan-bawah untuk style-1 — overlay premium */
.akv-gift-bank-card.akv-card-style-1 {
    /* Warna dasar dari inline style, lapis dengan gradient gelap premium */
    background-image: linear-gradient(
        135deg,
        rgba(255,255,255,0.12) 0%,
        transparent          40%,
        rgba(0,0,0,0.32)     100%
    );
    background-blend-mode: overlay;
}

/* ── Card Top Row ── */
.akv-gift-bank-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    min-width: 0;
    gap: 8px;
    flex-shrink: 0;
    flex-grow: 0;
}

.akv-gift-bank-left {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1;
}

.akv-gift-bank-logo {
    max-height: 28px;
    max-width: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

/* Nama bank — proporsional untuk kartu max 480px */
.akv-gift-bank-name-badge {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.4);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

/* Chip EMV */
.akv-gift-chip {
    width: 40px;
    height: auto;
    flex-shrink: 0;
}

/* ── Card Body ── */
.akv-gift-bank-body {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0 4px;
    min-width: 0;
    overflow: hidden;
}

/* Nomor rekening */
.akv-gift-account-number {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 6px;
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
    font-family: 'Courier New', Courier, monospace;
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    line-height: 1.3;
}

.akv-gift-account-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    overflow: hidden;
}

.akv-gift-account-label {
    font-size: 8px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    font-weight: 600;
}

.akv-gift-account-owner {
    font-size: 12px;
    color: rgba(255,255,255,.92);
    letter-spacing: .8px;
    text-transform: uppercase;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

/* ── Card Footer ── */
.akv-gift-bank-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
    gap: 8px;
    flex-shrink: 0;
    flex-grow: 0;
}

.akv-gift-contactless {
    width: 22px;
    height: auto;
    opacity: .65;
    flex-shrink: 0;
}

/* Tombol Salin */
.akv-gift-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.16);
    border: 1.5px solid rgba(255,255,255,.35);
    border-radius: 8px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    letter-spacing: .5px;
    backdrop-filter: blur(6px);
    transition: background .2s, border-color .2s, transform .15s;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    -webkit-appearance: none;
    user-select: none;
}

.akv-gift-copy-btn:hover {
    background: rgba(255,255,255,.28);
    border-color: rgba(255,255,255,.65);
    transform: translateY(-1px);
}

.akv-gift-copy-btn:focus-visible {
    outline: 2px solid rgba(255,255,255,.6);
    outline-offset: 2px;
}

/* (definisi copy-btn, contactless, dan chip sudah di atas) */

/* ── Recipient Card ── */
.akv-gift-recipient-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    transition: transform .25s, box-shadow .25s;
}

.akv-gift-recipient-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,.12);
}

.akv-gift-recipient-heading {
    font-size: 13px;
    font-weight: 700;
    color: #888;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.akv-gift-recipient-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.akv-gift-recipient-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.akv-gift-recipient-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
}

.akv-gift-recipient-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.akv-gift-recipient-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #aaa;
}

.akv-gift-recipient-value {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    line-height: 1.5;
}

.akv-gift-recipient-value a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.akv-gift-recipient-value a:hover {
    text-decoration: underline;
}

/* keep old .akv-gift-recipient-icon for backward compat */
.akv-gift-recipient-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.akv-gift-recipient-item a {
    color: #0066cc;
    text-decoration: none;
}

.akv-gift-recipient-item a:hover {
    text-decoration: underline;
}

/* ── Toast ── */
.akv-gift-copy-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #222;
    color: #fff;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, transform .3s;
    z-index: 9999;
}

.akv-gift-copy-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Responsive ── */
/* Dengan aspect-ratio: 1.586/1, kartu selalu proporsional otomatis.
   Yang perlu disesuaikan hanya tipografi via clamp() yang sudah diterapkan. */
@media (max-width: 380px) {
    .akv-gift-bank-card {
        border-radius: 12px;
    }
    .akv-gift-contactless {
        display: none;
    }
}

/* ═══════════════════════════════════════════════
   STYLE 2 — Classic Flat (border aksen kiri)
   ═══════════════════════════════════════════════ */
.akv-gift-bank-card.akv-card-style-2,
.akv-gift-recipient-card.akv-card-style-2 {
    background: #ffffff;
    color: #222;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

.akv-gift-bank-card.akv-card-style-2::before,
.akv-gift-bank-card.akv-card-style-2::after {
    display: none;
}

.akv-gift-bank-card.akv-card-style-2 .akv-gift-bank-name-badge {
    color: #333;
    text-shadow: none;
    font-size: 15px;
}

.akv-gift-bank-card.akv-card-style-2 .akv-gift-bank-logo {
    filter: none;
}

.akv-gift-bank-card.akv-card-style-2 .akv-gift-account-number {
    color: #111;
    text-shadow: none;
    letter-spacing: 3px;
    font-size: 18px;
}

.akv-gift-bank-card.akv-card-style-2 .akv-gift-account-label {
    color: #999;
}

.akv-gift-bank-card.akv-card-style-2 .akv-gift-account-owner {
    color: #444;
}

.akv-gift-bank-card.akv-card-style-2 .akv-gift-copy-btn {
    background: #f4f4f4;
    border: 1.5px solid #ddd;
    color: #333;
    backdrop-filter: none;
}

.akv-gift-bank-card.akv-card-style-2 .akv-gift-copy-btn:hover {
    background: #e8e8e8;
    border-color: #aaa;
    color: #111;
}

/* Recipient card style-2 */
.akv-gift-recipient-card.akv-card-style-2 {
    background: #fff;
    border-left: 5px solid #c8956c;
    border-radius: 14px;
}

.akv-gift-recipient-card.akv-card-style-2 .akv-gift-recipient-heading {
    color: #999;
    border-bottom-color: #f0f0f0;
}

.akv-gift-recipient-card.akv-card-style-2 .akv-gift-recipient-icon-wrap {
    background: #fdf5ee;
}

/* ═══════════════════════════════════════════════
   STYLE 3 — Glassmorphism Minimal
   ═══════════════════════════════════════════════ */
.akv-gift-bank-card.akv-card-style-3,
.akv-gift-recipient-card.akv-card-style-3 {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: inherit;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.akv-gift-bank-card.akv-card-style-3::before,
.akv-gift-bank-card.akv-card-style-3::after {
    display: none;
}

.akv-gift-bank-card.akv-card-style-3 .akv-gift-bank-name-badge {
    color: inherit;
    text-shadow: none;
    font-size: 15px;
    font-weight: 700;
}

.akv-gift-bank-card.akv-card-style-3 .akv-gift-bank-logo {
    filter: none;
}

.akv-gift-bank-card.akv-card-style-3 .akv-gift-account-number {
    color: inherit;
    text-shadow: none;
    font-size: 18px;
    letter-spacing: 3px;
    opacity: .92;
}

.akv-gift-bank-card.akv-card-style-3 .akv-gift-account-label {
    color: var(--akv-accent, #c8956c);
    opacity: 1;
}

.akv-gift-bank-card.akv-card-style-3 .akv-gift-account-owner {
    color: inherit;
    opacity: .85;
}

.akv-gift-bank-card.akv-card-style-3 .akv-gift-copy-btn {
    background: rgba(255,255,255,.15);
    border: 1.5px solid var(--akv-accent, #c8956c);
    color: inherit;
    backdrop-filter: blur(4px);
}

.akv-gift-bank-card.akv-card-style-3 .akv-gift-copy-btn:hover {
    background: rgba(255,255,255,.28);
}

/* Recipient card style-3 */
.akv-gift-recipient-card.akv-card-style-3 {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    border: 1px solid rgba(255,255,255,.3);
}

.akv-gift-recipient-card.akv-card-style-3 .akv-gift-recipient-heading {
    color: rgba(255,255,255,.55);
    border-bottom-color: rgba(255,255,255,.15);
}

.akv-gift-recipient-card.akv-card-style-3 .akv-gift-recipient-value,
.akv-gift-recipient-card.akv-card-style-3 .akv-gift-recipient-item {
    color: inherit;
}

.akv-gift-recipient-card.akv-card-style-3 .akv-gift-recipient-label {
    color: rgba(255,255,255,.45);
}

.akv-gift-recipient-card.akv-card-style-3 .akv-gift-recipient-icon-wrap {
    background: rgba(255,255,255,.12);
}

.akv-gift-recipient-card.akv-card-style-3 .akv-gift-recipient-value a {
    color: #a8d8ff;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .akv-gift-bank-card {
        min-height: 170px;
        padding: 16px 18px 14px;
        border-radius: 14px;
    }
    .akv-gift-bank-name-badge { font-size: 14px; letter-spacing: 1.5px; }
    .akv-gift-account-number  { font-size: 15px; letter-spacing: 2px; }
    .akv-gift-account-owner   { font-size: 11px; }
    .akv-gift-copy-btn        { font-size: 11px; padding: 5px 12px; }
}

@media (max-width: 360px) {
    .akv-gift-bank-card {
        min-height: 155px;
        padding: 14px 16px 12px;
        border-radius: 12px;
    }
    .akv-gift-bank-name-badge { font-size: 13px; letter-spacing: 1px; }
    .akv-gift-account-number  { font-size: 13px; letter-spacing: 1.5px; }
    .akv-gift-account-label   { font-size: 7px; }
    .akv-gift-account-owner   { font-size: 10px; }
    .akv-gift-copy-btn        { font-size: 10px; padding: 4px 10px; }
    .akv-gift-contactless     { display: none; }
}

/* ==========================================================================
   akv-khitan-gift-layout (Custom turquoise & gold gift/bank cards style)
   ========================================================================== */
.akv-khitan-gift-layout .akv-gift-bank-card {
  background: linear-gradient(135deg, #208b90 0%, #2eb0b5 100%) !important;
  border: 1px solid rgba(227, 177, 90, 0.3);
  box-shadow: 0 10px 30px rgba(32, 139, 144, 0.15) !important;
}

.akv-khitan-gift-layout .akv-gift-bank-card::before {
  background: rgba(227, 177, 90, 0.1) !important;
}

.akv-khitan-gift-layout .akv-gift-bank-card::after {
  background: rgba(255, 255, 255, 0.08) !important;
}

.akv-khitan-gift-layout .akv-gift-bank-name-badge {
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}

.akv-khitan-gift-layout .akv-gift-account-number {
  color: #e3b15a !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.akv-khitan-gift-layout .akv-gift-account-owner {
  color: #ffffff !important;
}

.akv-khitan-gift-layout .akv-gift-copy-btn {
  background: rgba(227, 177, 90, 0.2) !important;
  border-color: rgba(227, 177, 90, 0.5) !important;
  color: #ffffff !important;
}

.akv-khitan-gift-layout .akv-gift-copy-btn:hover {
  background: #e3b15a !important;
  color: #165a5d !important;
}

.akv-khitan-gift-layout .akv-gift-btn {
  background: #208b90 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(32, 139, 144, 0.3) !important;
}

.akv-khitan-gift-layout .akv-gift-btn:hover {
  background: #165a5d !important;
  box-shadow: 0 6px 24px rgba(32, 139, 144, 0.4) !important;
}

/* ═══════════════════════════════════════════════
   STYLE 4 — Neomorphism (soft 3D inset)
   ═══════════════════════════════════════════════ */
.akv-gift-bank-card.akv-card-style-4,
.akv-gift-recipient-card.akv-card-style-4 {
    background: #eef0f5;
    color: #2d3748;
    box-shadow:
        8px  8px 18px rgba(163, 177, 198, 0.6),
       -6px -6px 14px rgba(255, 255, 255, 0.9);
    border: none;
}

.akv-gift-bank-card.akv-card-style-4::before,
.akv-gift-bank-card.akv-card-style-4::after { display: none; }

.akv-gift-bank-card.akv-card-style-4:hover {
    box-shadow:
        10px  10px 24px rgba(163, 177, 198, 0.65),
        -8px  -8px 18px rgba(255, 255, 255, 0.95);
}

/* Aksen warna dari --akv-card-color */
.akv-gift-bank-card.akv-card-style-4 .akv-gift-bank-name-badge {
    color: var(--akv-card-color, #0066ae);
    text-shadow: none;
    font-size: 17px;
    letter-spacing: 1.5px;
}

.akv-gift-bank-card.akv-card-style-4 .akv-gift-bank-logo {
    filter: none;
}

.akv-gift-bank-card.akv-card-style-4 .akv-gift-account-number {
    color: #1a202c;
    text-shadow: none;
    letter-spacing: 3px;
    font-size: 18px;
}

.akv-gift-bank-card.akv-card-style-4 .akv-gift-account-label {
    color: #94a3b8;
}

.akv-gift-bank-card.akv-card-style-4 .akv-gift-account-owner {
    color: #334155;
}

/* Inset copy button */
.akv-gift-bank-card.akv-card-style-4 .akv-gift-copy-btn {
    background: #eef0f5;
    border: none;
    color: var(--akv-card-color, #0066ae);
    backdrop-filter: none;
    box-shadow:
         4px  4px  8px rgba(163, 177, 198, 0.5),
        -3px -3px  6px rgba(255, 255, 255, 0.85);
    border-radius: 10px;
}

.akv-gift-bank-card.akv-card-style-4 .akv-gift-copy-btn:hover {
    box-shadow:
        inset  3px  3px  7px rgba(163, 177, 198, 0.45),
        inset -2px -2px  5px rgba(255, 255, 255, 0.8);
    transform: none;
    background: #eef0f5;
    border: none;
}

/* Divider accent line */
.akv-gift-bank-card.akv-card-style-4 .akv-gift-bank-body {
    border-top: 2px solid var(--akv-card-color, #0066ae);
    margin-top: 4px;
    padding-top: 14px;
    opacity: 0.85;
}

/* Recipient style-4 */
.akv-gift-recipient-card.akv-card-style-4 {
    background: #eef0f5;
    box-shadow:
        8px  8px 18px rgba(163, 177, 198, 0.6),
       -6px -6px 14px rgba(255, 255, 255, 0.9);
    border: none;
}

.akv-gift-recipient-card.akv-card-style-4 .akv-gift-recipient-heading {
    color: #64748b;
    border-bottom-color: #dde1e9;
}

.akv-gift-recipient-card.akv-card-style-4 .akv-gift-recipient-icon-wrap {
    background: #eef0f5;
    box-shadow:
         3px  3px  6px rgba(163, 177, 198, 0.5),
        -2px -2px  4px rgba(255, 255, 255, 0.85);
}


/* ═══════════════════════════════════════════════
   STYLE 5 — Dark Matte (gelap elegan, teks terang)
   ═══════════════════════════════════════════════ */
.akv-gift-bank-card.akv-card-style-5,
.akv-gift-recipient-card.akv-card-style-5 {
    background: #0f1117;
    color: #e2e8f0;
    box-shadow: 0 8px 32px rgba(0,0,0,.45);
    border: 1px solid rgba(255,255,255,.06);
}

.akv-gift-bank-card.akv-card-style-5::before {
    background: radial-gradient(circle, rgba(255,255,255,.04), transparent);
}

.akv-gift-bank-card.akv-card-style-5::after { display: none; }

.akv-gift-bank-card.akv-card-style-5:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.55);
    border-color: rgba(255,255,255,.12);
}

/* Accent bar atas */
.akv-gift-bank-card.akv-card-style-5::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--akv-card-color, #c8956c);
    width: 100%;
    border-radius: 0;
    pointer-events: none;
}

.akv-gift-bank-card.akv-card-style-5 .akv-gift-bank-name-badge {
    color: var(--akv-card-color, #c8956c);
    text-shadow: 0 0 12px rgba(200,149,108,.35);
    font-size: 16px;
    letter-spacing: 2px;
}

.akv-gift-bank-card.akv-card-style-5 .akv-gift-bank-logo {
    filter: brightness(0) invert(1);
    opacity: .85;
}

.akv-gift-bank-card.akv-card-style-5 .akv-gift-account-number {
    color: #f8fafc;
    text-shadow: none;
    letter-spacing: 3px;
    font-size: 18px;
}

.akv-gift-bank-card.akv-card-style-5 .akv-gift-account-label {
    color: rgba(255,255,255,.35);
}

.akv-gift-bank-card.akv-card-style-5 .akv-gift-account-owner {
    color: rgba(255,255,255,.75);
    font-size: 13px;
}

.akv-gift-bank-card.akv-card-style-5 .akv-gift-copy-btn {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--akv-card-color, #c8956c);
    backdrop-filter: none;
}

.akv-gift-bank-card.akv-card-style-5 .akv-gift-copy-btn:hover {
    background: rgba(255,255,255,.13);
    border-color: var(--akv-card-color, #c8956c);
    color: #fff;
}

/* Recipient style-5 */
.akv-gift-recipient-card.akv-card-style-5 {
    background: #0f1117;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

.akv-gift-recipient-card.akv-card-style-5 .akv-gift-recipient-heading {
    color: rgba(255,255,255,.4);
    border-bottom-color: rgba(255,255,255,.07);
}

.akv-gift-recipient-card.akv-card-style-5 .akv-gift-recipient-value,
.akv-gift-recipient-card.akv-card-style-5 .akv-gift-recipient-item {
    color: #cbd5e1;
}

.akv-gift-recipient-card.akv-card-style-5 .akv-gift-recipient-label {
    color: rgba(255,255,255,.3);
}

.akv-gift-recipient-card.akv-card-style-5 .akv-gift-recipient-icon-wrap {
    background: rgba(255,255,255,.06);
}

.akv-gift-recipient-card.akv-card-style-5 .akv-gift-recipient-value a {
    color: var(--akv-card-color, #c8956c);
}


/* ═══════════════════════════════════════════════
   STYLE 6 — Aurora / Holographic
   Gradient animasi pelangi halus
   ═══════════════════════════════════════════════ */
@keyframes akv-aurora {
    0%   { background-position: 0%   50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0%   50%; }
}

.akv-gift-bank-card.akv-card-style-6 {
    background: linear-gradient(
        135deg,
        #1a0533,
        var(--akv-card-color, #7b2f8e),
        #0d3b6e,
        #0a6e5c,
        var(--akv-card-color, #7b2f8e)
    );
    background-size: 300% 300%;
    animation: akv-aurora 8s ease infinite;
    color: #fff;
    box-shadow: 0 8px 40px rgba(0,0,0,.3);
    border: none;
    overflow: hidden;
}

.akv-gift-bank-card.akv-card-style-6::before {
    /* Shine holographic overlay */
    background: linear-gradient(
        105deg,
        transparent  20%,
        rgba(255,255,255,.06) 35%,
        rgba(255,255,255,.1)  50%,
        rgba(255,255,255,.06) 65%,
        transparent  80%
    );
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    border-radius: 0;
}

.akv-gift-bank-card.akv-card-style-6::after { display: none; }

.akv-gift-bank-card.akv-card-style-6:hover {
    box-shadow: 0 12px 48px rgba(0,0,0,.4);
    transform: translateY(-4px);
}

.akv-gift-bank-card.akv-card-style-6 .akv-gift-bank-name-badge {
    color: rgba(255,255,255,.95);
    font-size: 18px;
    text-shadow: 0 1px 12px rgba(255,255,255,.3);
    letter-spacing: 2px;
}

.akv-gift-bank-card.akv-card-style-6 .akv-gift-bank-logo {
    filter: brightness(0) invert(1);
}

.akv-gift-bank-card.akv-card-style-6 .akv-gift-account-number {
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,.3);
    letter-spacing: 3px;
    font-size: 18px;
}

.akv-gift-bank-card.akv-card-style-6 .akv-gift-account-label {
    color: rgba(255,255,255,.5);
}

.akv-gift-bank-card.akv-card-style-6 .akv-gift-account-owner {
    color: rgba(255,255,255,.9);
}

.akv-gift-bank-card.akv-card-style-6 .akv-gift-copy-btn {
    background: rgba(255,255,255,.14);
    border: 1.5px solid rgba(255,255,255,.35);
    color: #fff;
    backdrop-filter: blur(8px);
}

.akv-gift-bank-card.akv-card-style-6 .akv-gift-copy-btn:hover {
    background: rgba(255,255,255,.28);
    border-color: rgba(255,255,255,.6);
}

/* Recipient style-6 */
.akv-gift-recipient-card.akv-card-style-6 {
    background: linear-gradient(135deg, #1a0533, #0d3b6e);
    color: #e2e8f0;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.akv-gift-recipient-card.akv-card-style-6 .akv-gift-recipient-heading {
    color: rgba(255,255,255,.45);
    border-bottom-color: rgba(255,255,255,.1);
}

.akv-gift-recipient-card.akv-card-style-6 .akv-gift-recipient-value,
.akv-gift-recipient-card.akv-card-style-6 .akv-gift-recipient-item {
    color: #cbd5e1;
}

.akv-gift-recipient-card.akv-card-style-6 .akv-gift-recipient-label {
    color: rgba(255,255,255,.35);
}

.akv-gift-recipient-card.akv-card-style-6 .akv-gift-recipient-icon-wrap {
    background: rgba(255,255,255,.1);
}

.akv-gift-recipient-card.akv-card-style-6 .akv-gift-recipient-value a {
    color: #93c5fd;
}

/* style 4-6 padding mobile — sudah dihandle di breakpoint utama di atas */
