/* =====================================================================
   Wedding CMS — Public Website
   Palette: ivory / champagne / blush / peach / rose / burgundy / gold
   Theme colors below are DEFAULTS; overridden live via JS from Admin -> Theme
===================================================================== */
:root {
    --primary: #8b2635;      /* burgundy */
    --secondary: #e8b4b8;    /* blush */
    --accent: #d4a373;       /* gold */
    --bg: #fdf8f3;           /* ivory */
    --text: #3a2e2c;
    --champagne: #f7e7ce;
    --peach: #f6c6c6;
    --radius: 12px;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
    --anim-speed: 1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--body-font);
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-heading { font-family: var(--heading-font); }

.section { padding: 100px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, #fff 0%, var(--champagne) 100%); }
@media (max-width: 768px) { .section { padding: 64px 0; } }

.section-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: .78rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
}
.section-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
}
.section-divider {
    width: 70px; height: 3px; margin: 0 auto 30px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    position: relative;
}
.section-divider::after {
    content: '\2764'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
    color: var(--primary); font-size: .9rem; background: var(--bg); padding: 0 8px;
}
.text-center-sm { text-align: center; }
@media (max-width: 768px) { .section-title { font-size: 1.9rem; } }

.btn-romantic {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 13px 34px;
    border-radius: var(--radius);
    font-weight: 600;
    letter-spacing: .04em;
    text-decoration: none;
    border: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    box-shadow: 0 10px 24px rgba(139,38,53,.28);
}
.btn-romantic:hover { transform: translateY(-3px); color: #fff; text-decoration: none; background: var(--accent); }
.btn-outline-romantic {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; border: 2px solid var(--primary); color: var(--primary);
    padding: 11px 30px; border-radius: var(--radius); font-weight: 600; text-decoration: none;
    transition: all .25s ease;
}
.btn-outline-romantic:hover { background: var(--primary); color: #fff; text-decoration: none; }

/* -------------------- Preloader -------------------- */
#preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-initials { font-family: var(--heading-font); font-size: 3.4rem; color: #fff; letter-spacing: .1em; animation: pulseFade 1.6s ease-in-out infinite; }
.preloader-sub { color: rgba(255,255,255,.7); letter-spacing: .3em; font-size: .75rem; margin-top: 10px; text-transform: uppercase; }
@keyframes pulseFade { 0%,100% { opacity: .55; transform: scale(.96);} 50% { opacity: 1; transform: scale(1);} }

/* -------------------- Navbar -------------------- */
.site-navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 18px 0;
    padding-left:10px;
    background: transparent;
    transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-navbar.scrolled { background: rgba(253,248,243,.96); box-shadow: 0 2px 14px rgba(0,0,0,.08); padding: 10px 0; padding-left:10px; backdrop-filter: blur(6px); }
.site-navbar .navbar-brand { font-family: var(--heading-font); font-weight: 700; color: #fff; font-size: 1.3rem; }
.site-navbar.scrolled .navbar-brand { color: var(--primary); }
.site-navbar .nav-link { color: #fff; font-weight: 500; font-size: .92rem; margin: 0 10px; letter-spacing: .03em; }
.site-navbar.scrolled .nav-link { color: var(--text); }
.site-navbar .nav-link:hover, .site-navbar .nav-link.active { color: var(--accent); }
.music-toggle {
    background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.4); color: #fff;
    width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .25s ease;
}
.site-navbar.scrolled .music-toggle { border-color: var(--primary); color: var(--primary); background: rgba(139,38,53,.08); }
.music-toggle:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
/* Wins over Bootstrap's `!important` responsive display utilities (e.g. d-lg-inline-flex)
   so a disabled/not-yet-configured music button is actually hidden, not just inert. */
.music-toggle.music-hidden { display: none !important; }
.navbar-toggler { border: none; color: #fff; font-size: 1.4rem; }
.site-navbar.scrolled .navbar-toggler { color: var(--primary); }

/* -------------------- Hero -------------------- */
.hero {
    position: relative; height: 100vh; min-height: 640px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; color: #fff;
}
.hero-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns { 0% { transform: scale(1) translate(0,0);} 100% { transform: scale(1.15) translate(-1%, -1%);} }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,15,17,.35), rgba(30,15,17,var(--hero-overlay,.5)) 60%, rgba(20,10,11,.85)); }
.hero-content { position: relative; z-index: 3; padding: 0 20px; max-width: 900px; }
.hero-content.align-left { margin-right: auto; text-align: left; }
.hero-content.align-right { margin-left: auto; text-align: right; }
.hero-content.align-center { margin: 0 auto; text-align: center; }
.hero-subtitle { text-transform: uppercase; letter-spacing: .25em; font-size: .82rem; opacity: 0; animation: fadeUp 1s ease .2s forwards; }
.hero-title { font-family: var(--heading-font); font-size: 5rem; font-weight: 700; margin: 14px 0; opacity: 0; animation: fadeUp 1.1s ease .5s forwards; text-shadow: 0 4px 24px rgba(0,0,0,.35); }
.hero-desc { font-size: 1.05rem; max-width: 560px; margin: 0 auto 26px; opacity: 0; animation: fadeUp 1.1s ease .8s forwards; }
.hero-date { font-size: 1.2rem; letter-spacing: .1em; opacity: 0; animation: fadeUp 1.1s ease 1s forwards; margin-bottom: 30px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px);} to { opacity: 1; transform: translateY(0);} }
@media (max-width: 768px) { .hero-title { font-size: 2.8rem; } }

.countdown { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 1.1s ease 1.2s forwards; }
.hero-content.align-left .countdown { justify-content: flex-start; }
.hero-content.align-right .countdown { justify-content: flex-end; }
.countdown-box {
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3);
    backdrop-filter: blur(6px); border-radius: var(--radius); padding: 14px 18px; min-width: 84px; text-align: center;
}
.countdown-box .num { font-family: var(--heading-font); font-size: 2rem; font-weight: 700; line-height: 1; }
.countdown-box .lbl { font-size: .68rem; text-transform: uppercase; letter-spacing: .15em; opacity: .85; margin-top: 4px; }

.scroll-indicator { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; color: #fff; text-align: center; opacity: .85; }
.scroll-indicator .mouse { width: 24px; height: 38px; border: 2px solid #fff; border-radius: 14px; margin: 6px auto 0; position: relative; }
.scroll-indicator .mouse::after { content: ''; width: 4px; height: 8px; background: #fff; border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); animation: scrollDot 1.6s ease infinite; }
@keyframes scrollDot { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 20px; } }
.scroll-indicator small { display: block; text-transform: uppercase; letter-spacing: .2em; font-size: .65rem; }

/* Floating petals/particles */
.petals { position: absolute; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.petal { position: absolute; top: -40px; font-size: 1.2rem; color: rgba(255,255,255,.85); animation: fall linear infinite; }
@keyframes fall { to { transform: translateY(110vh) rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
    .hero-bg { animation: none; }
    .petal { display: none; }
    .hero-subtitle, .hero-title, .hero-desc, .hero-date, .countdown { animation: none; opacity: 1; }
}

/* -------------------- Reusable parallax background section --------------------
   Add class="parallax-section" to any <section>, and as its first child put
   <div class="section-parallax-bg" style="background-image:url('...')"></div>
   Everything else (fixed-attachment on desktop, JS drift fallback on mobile,
   reduced-motion handling) is wired up generically in frontend.js. */
.parallax-section { overflow: hidden; }
.parallax-section .container { position: relative; z-index: 1; }

.section-parallax-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: .9;
    z-index: 0;
    pointer-events: none;
}
.section-parallax-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(253,248,243,.25) 0%, rgba(253,248,243,.35) 45%, rgba(253,248,243,.75) 100%);
}
@media (max-width: 768px) {
    /* background-attachment: fixed is unreliable on mobile browsers (especially iOS Safari),
       so mobile falls back to a JS-driven translateY drift on an oversized layer instead. */
    .section-parallax-bg {
        background-attachment: scroll;
        inset: auto; top: -10%; left: 0; width: 100%; height: 120%;
        will-change: transform;
    }
}
@media (prefers-reduced-motion: reduce) {
    .section-parallax-bg { transform: none !important; }
}

/* -------------------- Groom & Bride -------------------- */
.groom-bride-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.gb-title {
    font-family: 'Great Vibes', cursive;
    font-size: 3.2rem;
    color: var(--text);
    margin: 6px 0 0;
}
.gb-person { margin-bottom: 40px; }
.gb-photo {
    width: 220px; height: 220px; margin: 0 auto 22px;
    border-radius: 50%; overflow: hidden;
    border: 6px solid #fff;
    box-shadow: 0 20px 45px rgba(139,38,53,.15);
}
.gb-photo img { width: 100%; height: 100%; object-fit: cover; }
.gb-name {
    font-family: 'Great Vibes', cursive;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}
.gb-desc { color: #8a7a76; max-width: 340px; margin: 0 auto; font-size: .92rem; line-height: 1.7; }
@media (max-width: 767px) { .gb-photo { width: 170px; height: 170px; } .gb-title { font-size: 2.4rem; } }

/* -------------------- Invitation -------------------- */
.invitation-card {
    background: rgba(255,255,255,.92); padding-left:120px!important; padding-right:120px!important; border-radius: 20px; padding: 50px 40px; text-align: center;
    box-shadow: 0 25px 60px rgba(139,38,53,.18); border: 1px solid var(--champagne);
    position: relative; backdrop-filter: blur(3px);
}
.invitation-card::before, .invitation-card::after {
    content: ''; position: absolute; width: 60px; height: 60px; border: 2px solid var(--accent); opacity: .5;
}
.invitation-card::before { top: 14px; left: 14px; border-right: none; border-bottom: none; }
.invitation-card::after { bottom: 14px; right: 14px; border-left: none; border-top: none; }
.invitation-names { font-family: var(--heading-font); font-size: 2.2rem; color: var(--primary); margin: 18px 0; }
.invitation-names .amp { color: var(--accent); font-style: italic; margin: 0 14px; }
.invitation-meta { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 30px; }
.invitation-meta .item .label { text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: var(--accent); font-weight: 600; }
.invitation-meta .item .value { font-family: var(--heading-font); font-size: 1.25rem; color: var(--text); margin-top: 4px; }

/* -------------------- Story Timeline -------------------- */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--champagne), var(--accent), var(--champagne)); transform: translateX(-50%); }
.timeline-item { position: relative; width: 50%; padding: 0 40px 60px; }
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }
.timeline-dot { position: absolute; top: 4px; width: 16px; height: 16px; background: var(--primary); border: 3px solid var(--bg); border-radius: 50%; box-shadow: 0 0 0 3px var(--accent); }
.timeline-item:nth-child(odd) .timeline-dot { right: -8px; }
.timeline-item:nth-child(even) .timeline-dot { left: -8px; }
.timeline-year { font-family: var(--heading-font); font-size: 1.8rem; color: var(--accent); font-weight: 700; }
.timeline-card { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,.06); margin-top: 8px; }
.timeline-card img { width: 100%; border-radius: 8px; margin-bottom: 12px; height: 180px; object-fit: cover; }
@media (max-width: 767px) {
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) { width: 100%; left: 0; text-align: left; padding: 0 0 40px 50px; }
    .timeline-item:nth-child(odd) .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 12px; }
}

/* -------------------- Slideshow (Swiper) -------------------- */
.slideshow-wrap { max-width: 900px; margin: 0 auto; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.18); }
.slideshow-wrap .swiper-slide img { width: 100%; height: 480px; object-fit: cover; }
.slideshow-wrap .swiper-slide .caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 26px; background: linear-gradient(0deg, rgba(0,0,0,.6), transparent); color: #fff; font-family: var(--heading-font); font-size: 1.2rem; }
@media (max-width: 767px) { .slideshow-wrap .swiper-slide img { height: 300px; } }

/* -------------------- Gallery -------------------- */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 34px; }
.gallery-filters button {
    border: 1px solid var(--accent); background: transparent; color: var(--primary);
    padding: 8px 20px; border-radius: 30px; font-size: .85rem; font-weight: 600; transition: all .2s ease;
}
.gallery-filters button.active, .gallery-filters button:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.gallery-grid { column-count: 3; column-gap: 14px; }
.gallery-grid .g-item { break-inside: avoid; margin-bottom: 14px; border-radius: 12px; overflow: hidden; position: relative; display: block; }
.gallery-grid .g-item img { width: 100%; display: block; transition: transform .4s ease; }
.gallery-grid .g-item:hover img { transform: scale(1.06); }
.gallery-grid .g-item .g-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px 12px; background: linear-gradient(0deg, rgba(0,0,0,.65), transparent); color: #fff; font-size: .8rem; opacity: 0; transition: opacity .3s ease; }
.gallery-grid .g-item:hover .g-cap { opacity: 1; }
@media (max-width: 991px) { .gallery-grid { column-count: 2; } }
@media (max-width: 576px) { .gallery-grid { column-count: 1; } }

/* -------------------- Venue (Ceremony/Reception) -------------------- */
.venue-block { display: flex; align-items: center; gap: 50px; }
.venue-block.reverse { flex-direction: row-reverse; }
.venue-block .venue-img { flex: 1 1 46%; }
.venue-block .venue-img img { width: 100%; border-radius: 20px; box-shadow: 0 25px 60px rgba(0,0,0,.15); height: 380px; object-fit: cover; }
.venue-block .venue-info { flex: 1 1 54%; }
.venue-info .venue-name { font-family: var(--heading-font); font-size: 2rem; color: var(--primary); margin: 10px 0; }
.venue-info .venue-meta { margin: 20px 0; }
.venue-info .venue-meta div { margin-bottom: 8px; }
.venue-info .venue-meta i { color: var(--accent); width: 22px; }
@media (max-width: 850px) { .venue-block, .venue-block.reverse { flex-direction: column; } .venue-block .venue-img, .venue-block .venue-info { flex: 1 1 100%; } }

/* -------------------- Map -------------------- */
.map-frame { width: 100%; height: 420px; border: 0; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,.15); }

/* -------------------- Schedule -------------------- */
.schedule-list { max-width: 720px; margin: 0 auto; }
.schedule-row { display: flex; align-items: center; gap: 24px; padding: 16px 0; border-bottom: 1px dashed var(--champagne); }
.schedule-row .sch-time { width: 100px; flex-shrink: 0; font-family: var(--heading-font); color: var(--primary); font-weight: 700; text-align: right; }
.schedule-row .sch-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--champagne); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.schedule-row .sch-title { font-weight: 600; }
.schedule-row .sch-desc { color: #8a7a76; font-size: .88rem; }

/* -------------------- Sponsors -------------------- */
.sponsor-group-title { text-align: center; font-family: var(--heading-font); color: var(--accent); font-size: 1.1rem; text-transform: uppercase; letter-spacing: .1em; margin: 40px 0 20px; }
.sponsor-card { text-align: center; }
.sponsor-card img { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; border: 3px solid var(--champagne); margin-bottom: 10px; }
.sponsor-card .name { font-weight: 600; }
.sponsor-card .desc { font-size: .8rem; color: #8a7a76; }

/* -------------------- Dress Code -------------------- */
.dress-swatches { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 24px; }
.dress-swatch { text-align: center; }
.dress-swatch .circle { width: 60px; height: 60px; border-radius: 50%; margin: 0 auto 8px; box-shadow: 0 6px 16px rgba(0,0,0,.15); border: 3px solid #fff; }
.dress-swatch .name { font-size: .8rem; }

/* -------------------- RSVP -------------------- */
.rsvp-card { max-width: 720px; margin: 0 auto; background: #fff; border-radius: 20px; padding: 44px; box-shadow: 0 25px 60px rgba(139,38,53,.1); }
.attend-choice { display: flex; gap: 16px; margin-bottom: 18px; }
.attend-choice label {
    flex: 1; text-align: center; padding: 16px; border: 2px solid var(--champagne); border-radius: var(--radius);
    cursor: pointer; font-weight: 600; transition: all .2s ease;
}
.attend-choice input { display: none; }
.attend-choice input:checked + label { border-color: var(--primary); background: var(--champagne); color: var(--primary); }
@media (max-width: 576px) { .rsvp-card { padding: 26px; } }

/* -------------------- Gifts -------------------- */
.gift-kicker {
    font-family: var(--heading-font); font-style: italic; color: var(--accent);
    font-size: 1.15rem; margin-bottom: 6px;
}
.gift-swiper-wrap { max-width: 1100px; margin: 0 auto; padding: 10px 60px 56px; position: relative; }
.gift-swiper-wrap .swiper { padding: 30px 4px 10px; overflow: visible; }
.gift-swiper-wrap .swiper-slide {
    height: auto; width: 300px; padding: 6px;
    opacity: .55; transform: scale(.9); transition: opacity .4s ease, transform .4s ease;
}
.gift-swiper-wrap .swiper-slide-active,
.gift-swiper-wrap .swiper-slide-duplicate-active {
    opacity: 1; transform: scale(1.06);
}
.gift-item-card {
    background: #fff; border-radius: 22px; overflow: hidden; text-align: left; height: 100%;
    box-shadow: 0 18px 44px rgba(0,0,0,.1); transition: transform .3s ease, box-shadow .3s ease;
    display: flex; flex-direction: column; border: 1px solid rgba(212,163,115,.18);
}
.gift-item-card:hover { transform: translateY(-8px); box-shadow: 0 26px 60px rgba(139,38,53,.2); }
.gift-item-img { position: relative; width: 100%; height: 230px; background: linear-gradient(135deg, var(--champagne), var(--secondary)); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.gift-item-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gift-item-card:hover .gift-item-img img { transform: scale(1.1); }
.gift-item-img i.gift-icon { font-size: 3.2rem; color: #fff; opacity: .8; }
.gift-item-img::after {
    content: ''; position: absolute; inset: auto 0 0 0; height: 60%;
    background: linear-gradient(0deg, rgba(0,0,0,.55), transparent);
}
.gift-item-platform {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700;
    color: #fff; padding: 6px 14px; border-radius: 30px;
    background: rgba(20,10,11,.55); backdrop-filter: blur(4px);
}
.gift-item-platform.src-shopee { background: linear-gradient(120deg, #ee4d2d, #f4762f); }
.gift-item-platform.src-lazada { background: linear-gradient(120deg, #0f146d, #4f3fc9); }
.gift-item-platform.src-other { background: linear-gradient(120deg, var(--primary), var(--accent)); }
.gift-item-body { padding: 24px 22px; display: flex; flex-direction: column; flex: 1; }
.gift-item-title { font-family: var(--heading-font); font-size: 1.25rem; line-height: 1.3; color: var(--text); margin-bottom: 8px; }
.gift-item-desc { font-size: .85rem; color: #8a7a76; margin-bottom: 18px; flex: 1; }
.gift-item-body .btn-romantic { align-self: flex-start; padding: 10px 24px; font-size: .85rem; }
.gift-swiper-wrap .swiper-button-next, .gift-swiper-wrap .swiper-button-prev {
    color: #fff; background: var(--primary); width: 44px; height: 44px; border-radius: 50%;
    box-shadow: 0 8px 20px rgba(139,38,53,.35); transition: background .2s ease;
}
.gift-swiper-wrap .swiper-button-next:hover, .gift-swiper-wrap .swiper-button-prev:hover { background: var(--accent); }
.gift-swiper-wrap .swiper-button-next::after, .gift-swiper-wrap .swiper-button-prev::after { font-size: 16px; font-weight: 700; }
.gift-swiper-wrap .swiper-pagination-bullet { background: var(--secondary); opacity: .7; width: 9px; height: 9px; }
.gift-swiper-wrap .swiper-pagination-bullet-active { background: var(--primary); opacity: 1; }
.gift-empty { color: #8a7a76; padding: 20px 0; }
@media (max-width: 576px) {
    .gift-swiper-wrap { padding: 10px 42px 50px; }
    .gift-swiper-wrap .swiper-slide { width: 250px; }
    .gift-swiper-wrap .swiper-button-next, .gift-swiper-wrap .swiper-button-prev { width: 36px; height: 36px; }
}

/* -------------------- FAQ -------------------- */
.faq-accordion .card { border: none; border-bottom: 1px solid var(--champagne); border-radius: 0; background: transparent; }
.faq-accordion .card-header { background: transparent; border: none; padding: 18px 0; cursor: pointer; }
.faq-accordion .card-header h2 { font-size: 1.05rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; margin: 0; }
.faq-accordion .card-body { padding: 0 0 20px; color: #6b5a56; }

/* -------------------- Social -------------------- */
.social-icons { display: flex; justify-content: center; gap: 16px; margin: 20px 0; }
.social-icons a { width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--primary); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px rgba(0,0,0,.08); font-size: 1.2rem; transition: all .25s ease; }
.social-icons a:hover { background: var(--primary); color: #fff; transform: translateY(-4px); }
.hashtag-badge { display: inline-block; background: var(--champagne); color: var(--primary); padding: 8px 22px; border-radius: 30px; font-weight: 600; letter-spacing: .03em; }

/* -------------------- Contact -------------------- */
.contact-card { background: #fff; border-radius: 18px; padding: 34px; box-shadow: 0 15px 40px rgba(0,0,0,.06); }
.contact-card div { margin-bottom: 12px; }
.contact-card i { color: var(--accent); width: 24px; }

/* -------------------- Footer -------------------- */
.site-footer { background: linear-gradient(180deg, #2b1c1e, #1b1112); color: #ecdcd6; text-align: center; padding: 70px 20px 30px; position: relative; overflow: hidden; }
.footer-heart { font-size: 1.6rem; color: var(--accent); margin-bottom: 14px; }
.footer-names { font-family: var(--heading-font); font-size: 2.2rem; margin-bottom: 8px; }
.footer-date { letter-spacing: .15em; text-transform: uppercase; font-size: .85rem; color: rgba(236,220,214,.7); margin-bottom: 18px; }
.footer-message { max-width: 560px; margin: 0 auto 26px; color: rgba(236,220,214,.85); }
.footer-divider { width: 60px; height: 2px; background: var(--accent); margin: 26px auto; opacity: .6; }
.footer-copy { font-size: .78rem; color: rgba(236,220,214,.5); }

/* -------------------- Music Player -------------------- */
.music-player-fab {
    position: fixed; bottom: 24px; right: 24px; z-index: 900;
    width: 54px; height: 54px; border-radius: 50%; background: var(--primary); color: #fff;
    display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 26px rgba(139,38,53,.4);
    cursor: pointer; border: none; font-size: 1.2rem;
}
.music-player-fab.spinning i { animation: spin 4s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Fade-hidden sections controlled by admin section visibility */
[data-section].section-hidden { display: none !important; }
