/* ============================================================
   AQIQAH-01 THEME STYLES
   Light blue Islamic style with hanging lanterns & mosque domes
   ============================================================ */

/* ── Google Fonts already loaded in layout ── */

/* ── CSS Variables ── */
:root {
    --aq-bg: #f9e7ee;
    --aq-bg-deep: #f2cbd7;
    --aq-text: #3d3d3d;
    --aq-text-light: #5a6a7a;
    --aq-text-muted: #8a9baa;
    --aq-accent: #e599b7;
    --aq-accent-dark: #cc819f;
    --aq-white: #ffffff;
    --aq-nav-bg: #ffffff;
    --aq-nav-active: #e599b7;
    --aq-btn-bg: #e599b7;
    --aq-btn-text: #ffffff;
    --aq-gold: #c8a846;
    --aq-section-pad: 100px 0 80px 0;
    --aq-bottom-nav-h: 68px;
    --aq-font-heading: 'Englebert', sans-serif;
    --aq-font-body: 'Nunito', sans-serif;
}

/* ── Global Reset ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #dce8f0; /* desktop outer bg — slightly darker to frame the phone */
    font-family: var(--aq-font-body);
    color: var(--aq-accent);
}

/* ── Main Wrapper ── */
#aqiqah-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;  /* phone-like width, updated from 390px */
    margin: 0 auto;
    height: 100vh;
    background-color: transparent; /* transparent to see fixed bg */
    overflow: hidden; /* disable physical scrolling */
    z-index: 10; /* render in front of fixed bg and ornaments */
}

/* ── Background Image (fixed full-height) ── */
.aq-bg-fixed {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--aq-bg); /* bg color moved here */
    background-image: url('assets/f1_bg.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 1; /* lowest stacking context */
    pointer-events: none;
}

/* ── Corner Ornaments (Fixed, visible on all sections) ── */
.aq-ornament {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    transition: none !important; /* Instant reset when class is removed */
}

/* Fast duration for Cover Gate */
.aq-ornament.aos-animate {
    transition: transform 1200ms ease, opacity 1200ms ease, bottom 500ms ease !important;
}

/* Slow/elegant duration for pages after Buka Undangan */
.aq-opened .aq-ornament.aos-animate {
    transition: transform 2500ms ease, opacity 2500ms ease, bottom 500ms ease !important;
}

/* Top-left lanterns */
.aq-ornament-tl {
    top: 0;
    left: 0;
    width: 48%;
    max-width: 240px;
}

/* Top-right lanterns */
.aq-ornament-tr {
    top: 0;
    right: 0;
    width: 48%;
    max-width: 240px;
}

/* Bottom-left mosque */
.aq-ornament-bl {
    bottom: 0;
    left: 0;
    width: 50%;
    max-width: 250px;
}

/* Bottom-right mosque */
.aq-ornament-br {
    bottom: 0;
    right: 0;
    width: 50%;
    max-width: 250px;
}

/* Shift bottom ornaments up to clear bottom nav when opened */
.aq-opened .aq-ornament-bl,
.aq-opened .aq-ornament-br {
    bottom: var(--aq-bottom-nav-h);
}

/* ── Sections ── */
.aq-section {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow-y: auto; /* enable internal scroll for tall sections */
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 24px calc(80px + var(--aq-bottom-nav-h)) 24px; /* extra bottom padding to clear bottom nav */
    box-sizing: border-box;
    text-align: center;
    -webkit-overflow-scrolling: touch;
}

.aq-section.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 20;
}

/* ── Section: COVER ── */
#section-cover {
    padding: 120px 24px 140px 24px;
    gap: 0;
    justify-content: center;
}

.aq-cover-label {
    font-family: var(--aq-font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--aq-text-light);
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.aq-cover-name {
    font-family: var(--aq-font-heading);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--aq-accent);
    line-height: 1.15;
    margin-bottom: 28px;
    text-shadow: 0 1px 4px rgba(255,255,255,0.6);
}

/* Baby photo circle */
.aq-cover-photo-ring {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 30px auto;
}

.aq-cover-photo-ring::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #d0ecfa 50%, #ffffff 100%);
    z-index: 0;
}

.aq-cover-photo-ring img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 6px 20px rgba(74, 144, 217, 0.25);
    display: block;
}

/* Kepada Yth block */
.aq-cover-to {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 18px;
}

.aq-cover-to-label {
    font-family: var(--aq-font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--aq-text-light);
}

.aq-cover-guest-name {
    font-family: var(--aq-font-body);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--aq-accent);
}

/* Buka Undangan Button */
.aq-cover-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--aq-btn-bg);
    color: var(--aq-btn-text);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--aq-font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(30, 30, 30, 0.25);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    letter-spacing: 0.02em;
    text-decoration: none;
}

.aq-cover-btn:hover, .aq-cover-btn:active {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 28px rgba(30, 30, 30, 0.35);
}

.aq-cover-btn i {
    font-size: 1rem;
}

/* ── Section: GREETING ── */
#section-greeting {
    padding: 120px 32px 140px 32px;
}

.aq-greeting-inner {
    max-width: 440px;
    margin: 0 auto;
}

.aq-greeting-salam {
    font-family: var(--aq-font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--aq-accent);
    margin-bottom: 24px;
    line-height: 1.6;
}

.aq-greeting-text {
    font-family: var(--aq-font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--aq-text-light);
    line-height: 1.85;
}

/* ── Section: PROFILE ── */
#section-profile {
    padding: 120px 24px 140px 24px;
}

.aq-profile-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    padding: 36px 28px;
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(74, 144, 217, 0.12);
    text-align: center;
}

.aq-profile-photo-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px auto;
}

.aq-profile-photo-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A90D9 0%, #a8d8f0 100%);
    z-index: 0;
}

.aq-profile-photo-ring img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    display: block;
}

.aq-profile-gender-badge {
    display: inline-block;
    background: var(--aq-accent);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.aq-profile-name {
    font-family: var(--aq-font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--aq-accent);
    margin-bottom: 6px;
    line-height: 1.2;
}

.aq-profile-birth {
    font-family: var(--aq-font-body);
    font-size: 0.82rem;
    color: var(--aq-text-muted);
    margin-bottom: 22px;
}

.aq-profile-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--aq-accent), transparent);
    margin: 0 auto 20px auto;
    border-radius: 2px;
}

.aq-profile-parents-label {
    font-family: var(--aq-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--aq-text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.aq-profile-parent-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    text-align: left;
}

.aq-profile-parent-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(74, 144, 217, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--aq-accent);
    font-size: 0.85rem;
}

.aq-profile-parent-info {
    display: flex;
    flex-direction: column;
}

.aq-profile-parent-role {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--aq-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.aq-profile-parent-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--aq-accent);
}

/* ── Section: EVENTS ── */
#section-event {
    padding: 120px 24px 140px 24px;
}

.aq-event-title {
    font-family: var(--aq-font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--aq-accent);
    margin-bottom: 8px;
}

.aq-event-subtitle {
    font-family: var(--aq-font-body);
    font-size: 0.82rem;
    color: var(--aq-text-muted);
    margin-bottom: 28px;
}

.aq-event-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 28px 24px;
    max-width: 440px;
    width: 100%;
    margin: 0 auto 16px auto;
    box-shadow: 0 8px 28px rgba(74, 144, 217, 0.1);
    text-align: center;
}

.aq-event-label {
    display: inline-block;
    background: var(--aq-accent);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.aq-event-day {
    font-family: var(--aq-font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--aq-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.aq-event-date {
    font-family: var(--aq-font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--aq-accent);
    margin-bottom: 4px;
}

.aq-event-time {
    font-family: var(--aq-font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--aq-accent);
    margin-bottom: 18px;
}

.aq-event-card-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--aq-accent), transparent);
    margin: 0 auto 18px auto;
}

.aq-event-venue-name {
    font-family: var(--aq-font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--aq-accent);
    margin-bottom: 4px;
}

.aq-event-venue-address {
    font-family: var(--aq-font-body);
    font-size: 0.8rem;
    color: var(--aq-text-light);
    line-height: 1.6;
    margin-bottom: 18px;
}

.aq-event-btn-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--aq-btn-bg);
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-family: var(--aq-font-body);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(30,30,30,0.2);
}

.aq-event-btn-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(30,30,30,0.3);
}

/* Countdown */
.aq-countdown-wrapper {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 24px;
}

.aq-countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.7);
    border-radius: 14px;
    padding: 12px 14px;
    min-width: 60px;
    box-shadow: 0 4px 12px rgba(74,144,217,0.1);
}

.aq-countdown-num {
    font-family: var(--aq-font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--aq-accent-dark);
    line-height: 1;
    min-width: 2ch;
    text-align: center;
}

.aq-countdown-label {
    font-family: var(--aq-font-body);
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--aq-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* ── Section: MAPS ── */
#section-maps {
    padding: 120px 24px 140px 24px;
}

.aq-maps-title {
    font-family: var(--aq-font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--aq-accent);
    margin-bottom: 8px;
}

.aq-maps-subtitle {
    font-family: var(--aq-font-body);
    font-size: 0.82rem;
    color: var(--aq-text-muted);
    margin-bottom: 24px;
}

.aq-maps-embed-wrapper {
    width: 100%;
    max-width: 440px;
    margin: 0 auto 16px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(74,144,217,0.15);
    border: 2px solid rgba(255,255,255,0.8);
}

.aq-maps-embed-wrapper iframe {
    width: 100%;
    height: 240px;
    border: none;
    display: block;
}

.aq-maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--aq-btn-bg);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--aq-font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(30,30,30,0.2);
    transition: all 0.25s ease;
    margin-top: 8px;
}

.aq-maps-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(30,30,30,0.3);
}

/* ── Section: THANKS (CLOSING) ── */
#section-thanks {
    padding: 120px 24px 160px 24px;
}

.aq-closing-inner {
    max-width: 440px;
    margin: 0 auto;
}

.aq-closing-title {
    font-family: var(--aq-font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--aq-accent);
    margin-bottom: 16px;
}

.aq-closing-text {
    font-family: var(--aq-font-body);
    font-size: 0.88rem;
    color: var(--aq-text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* Footer brand */
.aq-footer {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(74,144,217,0.15);
    text-align: center;
}

.aq-footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--aq-accent);
    margin-bottom: 6px;
}

.aq-footer-tagline {
    font-size: 0.75rem;
    color: var(--aq-text-muted);
    margin-bottom: 16px;
}

.aq-footer-socials {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 16px;
}

.aq-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    color: var(--aq-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid rgba(74,144,217,0.2);
}

.aq-social-btn:hover {
    background: var(--aq-accent);
    color: #fff;
    transform: translateY(-2px);
}

.aq-footer-info {
    font-size: 0.7rem;
    color: var(--aq-text-muted);
    line-height: 1.7;
}

/* ── Bottom Navigation ── */
#aq-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 500px;
    height: var(--aq-bottom-nav-h);
    background: var(--aq-nav-bg);
    border-top: 1px solid #f1f1f1;
    /* Scrollable tabs */
    display: flex;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 0 10px;

    /* Hidden by default, slides up when invitation is opened */
    transform: translate(-50%, 100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease, visibility 0.5s ease;
}

#aq-bottom-nav.visible {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

#aq-bottom-nav::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.aq-nav-tab {
    flex: 0 0 76px; /* fixed width per tab, allows scroll */
    min-width: 76px;
    height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    cursor: pointer;
    background: none;
    border: none;
    border-radius: 12px;
    padding: 6px 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-decoration: none;
    color: #3bc3d2; /* cyan color for inactive */
    white-space: nowrap;
    flex-shrink: 0;
}

.aq-nav-tab.active {
    background: var(--aq-nav-active);
    color: #ffffff;
    box-shadow: none;
}

.aq-nav-tab svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    display: block;
    transition: transform 0.3s ease;
}

.aq-nav-tab.active svg {
    transform: scale(1.05);
}

.aq-nav-tab span {
    font-family: var(--aq-font-body);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ── Music Player Override ── */
#music-player {
    z-index: 95 !important;
    bottom: calc(var(--aq-bottom-nav-h) + 12px) !important;
}

/* ── AOS base ── */
[data-aos] {
    transition-duration: 0.8s !important;
}

/* ── Entrance animations ── */
@keyframes aq-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes aq-swing {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.aq-ornament-tl img,
.aq-ornament-tr img {
    animation: aq-swing 4s ease-in-out infinite;
    transform-origin: top center;
}

.aq-ornament-tr img {
    animation-delay: 0.8s;
}

/* ── Responsive ── */
/* Ornaments are already right/left anchored — no override needed */

/* ── Cover gate (full screen before open) ── */
#aq-cover-gate {
    position: fixed;
    inset: 0;
    z-index: 50;
    width: 100%;
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent; /* transparent to see fixed bg and ornaments */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    text-align: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#aq-cover-gate.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Main content hidden until gate opens */
#aq-main-content {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

#aq-main-content.visible {
    display: block;
}

/* ── Utility ── */
.text-center { text-align: center; }
.w-full { width: 100%; }

/* ── Lightbox Overlay (Shared) ── */
.aq-lightbox-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    background: rgba(0, 0, 0, 0.65); /* further reduced opacity translucent dark backdrop */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999; /* overlay everything including bottom-nav (z-index: 100) */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}

.aq-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

#aq-lightbox-img {
    max-width: calc(100% - 120px); /* reserve 60px on left/right so arrows (44px wide) never overlap the photo */
    max-height: 70%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.5);
    transition: opacity 0.2s ease-in-out, transform 0.25s ease-out;
    transform: scale(0.95);
}

.aq-lightbox-overlay.active #aq-lightbox-img {
    transform: scale(1);
}

.aq-lightbox-prev, .aq-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d2d2d;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

.aq-lightbox-prev:hover, .aq-lightbox-next:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.aq-lightbox-prev { left: 10px; }
.aq-lightbox-next { right: 10px; }

.aq-lightbox-close {
    position: absolute;
    bottom: 40px; /* positioned at bottom center of the black viewport */
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.2s ease;
}

.aq-lightbox-close:hover {
    background: #c0392b;
    transform: translateX(-50%) scale(1.05);
}

/* ── Tab buttons (Gift page) ── */
/* Default inactive state */
#aq-btn-cashless,
#aq-btn-kado {
    background: rgba(229, 153, 179, 0.08) !important;
    color: #e599b7 !important;
    border: 1px solid rgba(229, 153, 179, 0.3) !important;
}
#aq-btn-cashless span, #aq-btn-cashless i,
#aq-btn-kado span, #aq-btn-kado i {
    color: #e599b7 !important;
}

/* Active state */
#aq-btn-cashless.active,
#aq-btn-kado.active {
    background: #e599b7 !important;
    color: #ffffff !important;
    border: 1px solid #e599b7 !important;
}
#aq-btn-cashless.active span, #aq-btn-cashless.active i,
#aq-btn-kado.active span, #aq-btn-kado.active i {
    color: #ffffff !important;
}

/* Override comment section heading to accent color */
.aq-rsvp-root-wrapper h2 {
    color: var(--aq-accent) !important;
}
