/* ═══════════════════════════════════════════════════════════
   VARIABLES DE DISEÑO (Jardín Romántico - Ximena)
   ═══════════════════════════════════════════════════════════ */
:root {
    --cream: #FDF8F5;
    /* Fondo rosado/crema muy tenue */
    --cream-dark: #F5EBE8;
    --blush: #F0D6D6;
    /* Rosa pastel de los detalles */
    --blush-light: #FFF5F5;
    --rose: #C28B94;
    /* Color principal de textos cursivos */
    --rose-dark: #A36B74;
    --gold: #B5955C;
    /* Dorado elegante */
    --gold-light: #DBC396;
    --sage: #9BA894;
    /* Verde botánico suave */
    --text-main: #4A4444;
    /* Gris cálido para lectura */
    --text-muted: #887D7D;

    /* Sombras Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: 1px solid rgba(255, 255, 255, 0.8);
    --shadow-soft: 0 12px 40px rgba(194, 139, 148, 0.12);
    --shadow-hover: 0 20px 50px rgba(194, 139, 148, 0.25);
}

/* ═══════════════════════════════════════════════════════════
   RESET Y ESTRUCTURA FULL-WIDTH
   ═══════════════════════════════════════════════════════════ */
html,
body {
    overflow-x: hidden;
    width: 100vw;
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    background-color: var(--cream);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Patrón de textura de papel sutil en el fondo global */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Contenedor centralizado */
.section-wrapper {
    width: 100%;
    position: relative;
    padding: clamp(4rem, 8vw, 8rem) 0;
    overflow: hidden;
}

.content-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* ═══════════════════════════════════════════════════════════
   FONDOS Y DECORACIONES
   ═══════════════════════════════════════════════════════════ */
#petals-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

/* Decoraciones florales — compatibles con img y svg */
.floral-accent {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    opacity: 0.82;
    max-width: none;
    height: auto;
    display: block;
}

.floral-tl {
    top: -5%;
    left: -3%;
    transform: scaleX(-1);
    width: clamp(140px, 22vw, 320px);
}

.floral-tr {
    top: -5%;
    right: -3%;
    transform: rotate(0deg);
    width: clamp(140px, 22vw, 320px);
}

.floral-bl {
    bottom: -5%;
    left: -3%;
    transform: scale(-1, -1);
    width: clamp(140px, 22vw, 320px);
}

.floral-br {
    bottom: -5%;
    right: -3%;
    transform: scaleY(-1);
    width: clamp(140px, 22vw, 320px);
}

/* ═══════════════════════════════════════════════════════════
   EFECTO GLASSMORPHISM GLOBAL
   ═══════════════════════════════════════════════════════════ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: clamp(2.5rem, 6vw, 4rem);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Shimmer suave en hover para glass-card */
.glass-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -60%;
    width: 50%;
    height: 300%;
    background: linear-gradient(115deg,
            transparent 0%,
            rgba(255, 255, 255, 0.18) 50%,
            transparent 100%);
    transform: skewX(-15deg);
    transition: left 0.7s ease;
    pointer-events: none;
    z-index: 0;
}

.glass-card:hover::before {
    left: 140%;
}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover), 0 0 0 1px rgba(194, 139, 148, 0.15);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION — Vertical Centrado (Estilo Jardín Romántico)
   ═══════════════════════════════════════════════════════════ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #fff8f5 0%, var(--cream) 100%);
    position: relative;
    padding: 0;
    overflow: hidden;
}

/* Arco floral real — imagen PNG centrada en la parte superior */
.hero-arch-img {
    position: absolute;
    top: -1%;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(320px, 92vw, 600px);
    pointer-events: none;
    z-index: 3;
    opacity: 0.97;
}

/* Flores esquina superior izquierda (espejo) */
.hero-corner-tl {
    position: absolute;
    top: 0;
    left: 0;
    width: clamp(15rem, 30vw, 20rem);
    pointer-events: none;
    z-index: 2;
    opacity: 0.88;
    transform: scaleX(-1);
}

/* Flores esquina superior derecha */
.hero-corner-tr {
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(15rem, 30vw, 20rem);
    pointer-events: none;
    z-index: 2;
    opacity: 0.88;
}

/* Contenedor central del hero */
.hero-center {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(6rem, 15vh, 12rem) 1.5rem clamp(3rem, 6vw, 5rem);
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

/* "Mis XV Años" en script */
.hero-mis-xv {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.5rem, 9vw, 3rem);
    color: #5a7a5e;
    line-height: 1;
    margin-bottom: 0.2rem;
    text-shadow: 0 2px 12px rgba(90, 122, 94, 0.15);
    letter-spacing: 4px;
    margin-top: -35px;
}

/* Icono corona */
.hero-crown {
    filter: drop-shadow(0 2px 6px rgba(200, 164, 200, 0.3));
    display: block;
    z-index: 100;
    width: 80%;
    height: auto;
    object-fit: cover;
}

/* Nombre en script dorado */
.hero-name-script {
    font-family: 'Pinyon Script', cursive;
    font-size: clamp(2rem, 12vw, 4rem);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    text-shadow: 3px 16px 20px rgba(181, 149, 92, 0.25);
    margin: 5px 0 0.5rem;
}

/* Foto hero — ocupa todo el ancho, difuminada arriba y abajo */
.hero-photo-full {
    position: relative;
    width: 100vw;
    left: 57%;
    transform: translateX(-50%);
    margin-top: 1.5rem;
    margin-bottom: 0;
    overflow: hidden;
    /* Altura generosa para que se vea bien la protagonista */
    height: clamp(420px, 75vw, 600px);
}

.hero-photo-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: scale(1.04);
    transition: transform 0.1s linear;
}

/* Difuminado superior — se funde con el fondo crema del hero */
.hero-photo-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to bottom, #fff8f5 0%, rgba(255, 248, 245, 0.85) 5%, rgba(255, 248, 245, 0.5) 15%, rgba(255, 248, 245, 0.15) 30%, transparent 40%);
    pointer-events: none;
    z-index: 2;
}

/* Difuminado inferior — se funde con var(--cream) de la sección siguiente */
.hero-photo-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top,
            var(--cream) 0%,
            rgba(253, 248, 245, 0.85) 15%,
            rgba(253, 248, 245, 0.5) 40%,
            rgba(253, 248, 245, 0.15) 70%,
            transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* Tipografía — solo para compatibilidad con otros elementos */
.hero-pretitle {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--sage);
    line-height: 1;
    margin-bottom: -1rem;
    text-shadow: 0 2px 10px rgba(155, 168, 148, 0.3);
}

.hero-title {
    font-family: 'Pinyon Script', cursive;
    font-size: clamp(4.5rem, 12vw, 8rem);
    font-weight: 400;
    color: var(--gold);
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(181, 149, 92, 0.2);
}

.gold-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem auto;
    width: 100%;
    max-width: 250px;
}

.gold-divider::before,
.gold-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/* Nuevos Diseños de Fecha, Countdown y Calendario */
.date-showcase {
    position: relative;
    width: 100%;
}

.ds-month {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3rem, 7vw, 4rem);
    color: var(--sage);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ds-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 1.5rem);
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.ds-line {
    flex: 1;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.ds-day-name,
.ds-year {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-main);
    text-transform: uppercase;
}

.ds-day-num {
    font-family: 'Pinyon Script', cursive;
    font-size: clamp(3.5rem, 8vw, 5rem);
    color: var(--gold);
    line-height: 1;
}

.countdown-showcase {
    width: 100%;
    margin-top: 2rem;
}

.cs-title {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.cs-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(0.3rem, 1vw, 1rem);
    font-family: 'Playfair Display', serif;
}

.cs-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 45px;
}

.cs-item span:first-child {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--sage);
    font-weight: 600;
    line-height: 1;
}

.cs-colon {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--sage);
    font-weight: 600;
    line-height: 0.9;
    margin-top: -3px;
}

.cs-lbl {
    font-family: 'Raleway', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 600;
}

.calendar-showcase {
    width: 100%;
    margin-top: 3.5rem;
}

.csh-title1 {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--gold);
    line-height: 1;
}

.csh-title2 {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--sage);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.csh-grid {
    max-width: 320px;
    margin: 0 auto;
}

.csh-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 1rem;
}

.csh-days span {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 1px;
}

.csh-numbers {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px 0;
}

.csh-numbers span {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
}

.csh-active {
    color: var(--text-main) !important;
    font-weight: 700;
}

.csh-heart {
    position: absolute;
    font-size: 2.2rem;
    color: rgba(194, 139, 148, 0.4);
    z-index: -1;
    transform: translateY(-1px);
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   BOTONES E INTERACCIONES
   ═══════════════════════════════════════════════════════════ */
.btn-primary-aurea {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, #9a7d4a 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(181, 149, 92, 0.4);
    transition: all 0.3s ease;
}

.btn-primary-aurea:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(181, 149, 92, 0.6);
    color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   SECCIONES DE CONTENIDO
   ═══════════════════════════════════════════════════════════ */
.section-title {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3rem, 8vw, 4.5rem);
    color: var(--sage);
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1;
}

/* Mensaje & Familia */
.message-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 2;
    color: var(--text-main);
    font-style: italic;
    text-align: center;
    letter-spacing: 0.5px;
}

.family-role {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-main);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.family-names {
    font-family: 'Pinyon Script', cursive;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    color: var(--gold);
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(181, 149, 92, 0.1);
}

/* Eventos */
.event-type {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
}

.event-time {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.event-name {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.event-address {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ==========================================
   DYNAMIC TIMELINE / ITINERARIO (JARDÍN ROMÁNTICO)
   ========================================== */
.magic-timeline-wrap {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}

.magic-timeline-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold-light) 15%, var(--gold-light) 85%, transparent);
    transform: translateX(-50%);
}

.mtl-row {
    display: flex;
    align-items: center;
    margin-bottom: 3.5rem;
    width: 100%;
    position: relative;
}

.mtl-row:last-child {
    margin-bottom: 0;
}

.mtl-left {
    width: 45%;
    text-align: right;
    padding-right: 2.5rem;
}

.mtl-right {
    width: 45%;
    text-align: left;
    padding-left: 2.5rem;
}

.mtl-node {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 6px var(--cream-dark), var(--shadow-soft);
    transition: all 0.3s ease;
}

.mtl-row:hover .mtl-node {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 0 8px var(--blush), var(--shadow-hover);
}

.mtl-node-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.mtl-time {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--rose-dark);
}

.mtl-activity {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.mtl-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

.mtl-row:nth-child(even) {
    flex-direction: row-reverse;
}

.mtl-row:nth-child(even) .mtl-left {
    text-align: left;
    padding-left: 2.5rem;
    padding-right: 0;
}

.mtl-row:nth-child(even) .mtl-right {
    text-align: right;
    padding-right: 2.5rem;
    padding-left: 0;
}

@media (max-width: 768px) {
    .magic-timeline-wrap::before {
        left: 25px;
    }

    .mtl-row {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
        margin-bottom: 2.5rem;
    }

    .mtl-left {
        width: 100% !important;
        text-align: left !important;
        padding: 0 0 4px 0 !important;
    }

    .mtl-right {
        width: 100% !important;
        text-align: left !important;
        padding: 0 !important;
    }

    .mtl-node {
        left: 0;
        transform: translateX(0);
        width: 48px;
        height: 48px;
    }

    .mtl-row:hover .mtl-node {
        transform: scale(1.08);
    }

    .mtl-time {
        font-size: 1.05rem;
    }

    .mtl-activity {
        font-size: 0.75rem;
    }

    .mtl-desc {
        font-size: 0.8rem;
    }
}

/* ==========================================
   PREMIUM RSVP STYLE (JARDÍN ROMÁNTICO)
   ========================================== */
.hp-rsvp-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    border-radius: 24px;
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    max-width: 680px;
    margin: 0 auto;
}

.hp-rsvp-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hp-card-crest {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(181, 149, 92, 0.2);
}

.hp-card-crest-sym {
    display: block;
    font-size: 0;
    /* Ocultar el rayo */
    color: var(--rose);
    margin-bottom: 8px;
}

.hp-card-crest-sym::before {
    content: "🌸";
    /* Sello floral romántico */
    font-size: 2.2rem;
}

.hp-card-crest-text {
    font-family: 'Raleway', sans-serif;
    font-size: 0;
    /* Ocultar el texto mágico */
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
}

.hp-card-crest-text::before {
    content: "Confirmación de Asistencia";
    /* Texto adaptado premium */
    font-size: 0.75rem;
}

.hp-field {
    margin-bottom: 1.5rem;
    text-align: left;
}

.hp-label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose);
    font-weight: 700;
    margin-bottom: 8px;
}

.hp-input,
.hp-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(194, 139, 148, 0.3);
    border-radius: 12px;
    color: var(--text-main);
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    padding: 12px 16px;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.hp-input::placeholder,
.hp-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
    font-style: italic;
}

.hp-input:focus,
.hp-textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(181, 149, 92, 0.15);
}

.hp-textarea {
    resize: vertical;
    min-height: 100px;
}

.hp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

@media (max-width: 576px) {
    .hp-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.hp-steppers-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hp-steppers-row>* {
    flex: 1;
}

.hp-stepper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(194, 139, 148, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.hp-stepper-btn {
    background: transparent;
    border: none;
    color: var(--rose);
    font-size: 1.4rem;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.hp-stepper-btn:hover {
    background: var(--blush);
    color: var(--rose-dark);
}

.hp-stepper-val {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-main);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
    min-width: 0;
}

.hp-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 2rem 0;
}

.hp-divider::before,
.hp-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(181, 149, 92, 0.3), transparent);
}

.hp-divider-sym {
    font-size: 0;
    color: var(--gold-light);
    letter-spacing: 2px;
}

.hp-divider-sym::before {
    content: "🌸 ✦ 🌸";
    font-size: 0.8rem;
}

.hp-btn-confirm {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--gold) 0%, #9a7d4a 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(181, 149, 92, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.hp-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(181, 149, 92, 0.45);
}

.hp-btn-decline {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(194, 139, 148, 0.4);
    border-radius: 50px;
    color: var(--rose);
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hp-btn-decline:hover {
    background: rgba(194, 139, 148, 0.08);
    border-color: var(--rose);
    color: var(--rose-dark);
}

.hp-preview-lock {
    text-align: center;
    padding: 3rem 1rem;
}

.hp-preview-lock i {
    font-size: 3.5rem;
    color: var(--gold-light);
    display: block;
    margin-bottom: 1.2rem;
}

.hp-preview-lock h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hp-preview-lock p {
    font-family: 'Raleway', sans-serif;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* ==========================================
   WISHLIST / COFRE DE DESEOS PREMIUM
   ========================================== */
.hp-wish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.hp-wish-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 2.2rem 1.6rem 1.6rem;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.hp-wish-card:hover {
    transform: translateY(-6px);
    border-color: var(--rose);
    box-shadow: var(--shadow-hover);
}

.hp-wish-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(194, 139, 148, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hp-wish-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(194, 139, 148, 0.2));
}

.hp-wish-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.6rem;
    line-height: 1.35;
}

.hp-wish-desc {
    font-family: 'Raleway', sans-serif;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.hp-wish-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.hp-wish-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.hp-wish-btn--amazon {
    background: rgba(255, 153, 0, 0.08);
    border: 1px solid rgba(255, 153, 0, 0.3);
    color: #e07b00;
}

.hp-wish-btn--amazon:hover {
    background: rgba(255, 153, 0, 0.15);
    border-color: rgba(255, 153, 0, 0.6);
    color: #ff9900;
}

.hp-wish-btn--ml {
    background: rgba(57, 169, 0, 0.08);
    border: 1px solid rgba(57, 169, 0, 0.3);
    color: #2e8200;
}

.hp-wish-btn--ml:hover {
    background: rgba(57, 169, 0, 0.15);
    border-color: rgba(57, 169, 0, 0.6);
    color: #39a900;
}

.hp-wish-suggestion {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--rose);
    text-transform: uppercase;
}

/* ==========================================
   GIFT REGISTRY / TRANSFERENCIA (JARDÍN ROMÁNTICO)
   ========================================== */
.hp-gift-wrap {
    max-width: 820px;
    margin: 0 auto 3rem;
}

.hp-gift-message {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-main);
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hp-gift-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.hp-gift-cards--mixed {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.hp-gift-card {
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    border: var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.hp-gift-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.hp-gift-card-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(181, 149, 92, 0.25));
}

.hp-gift-card-title {
    font-family: 'Pinyon Script', cursive;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.hp-gift-card-subtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rose);
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
}

.hp-bank-rows {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(194, 139, 148, 0.2);
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    margin-top: 1rem;
}

.hp-bank-row {
    display: flex;
    flex-direction: column;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(194, 139, 148, 0.15);
}

.hp-bank-row:last-child {
    border-bottom: none;
}

.hp-bank-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 4px;
}

.hp-bank-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 700;
}

.hp-clabe-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.hp-bank-value--clabe {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 700;
}

.hp-copy-btn {
    background: rgba(181, 149, 92, 0.1);
    border: 1px solid rgba(181, 149, 92, 0.3);
    border-radius: 8px;
    color: var(--gold);
    padding: 6px 14px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
}

.hp-copy-btn:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.hp-gift-link-desc {
    font-family: 'Raleway', sans-serif;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hp-gift-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--gold) 0%, #9a7d4a 100%);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 6px 15px rgba(181, 149, 92, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

.hp-gift-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(181, 149, 92, 0.4);
    color: #fff;
}

/* ==========================================
   GALLERY MODULE (JARDÍN ROMÁNTICO)
   ========================================== */
.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--blush);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

#galleryTitle {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(3rem, 8vw, 4.5rem);
    color: var(--sage);
    text-shadow: 0 2px 8px rgba(155, 168, 148, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   FOTO INTERMEDIA (TORN PAPER) — PREMIUM v2
   ═══════════════════════════════════════════════════════════ */
.torn-photo-section {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    overflow: hidden;
    margin: 0;
}

/* Cinematic vignette overlay */
.mid-photo-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse at center, transparent 35%, rgba(74, 48, 48, 0.35) 100%),
        linear-gradient(to bottom,
            rgba(253, 248, 245, 0.35) 0%,
            transparent 25%,
            transparent 70%,
            rgba(245, 235, 232, 0.4) 100%);
    pointer-events: none;
}

/* Shimmer dorado suave que recorre la imagen */
.mid-photo-shimmer {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(115deg,
            transparent 30%,
            rgba(181, 149, 92, 0.06) 50%,
            transparent 70%);
    background-size: 200% 100%;
    animation: shimmerSweep 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerSweep {
    0% {
        background-position: -100% 0;
    }

    60% {
        background-position: 200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Caption flotante centrado en la parte inferior */
.mid-photo-caption {
    position: absolute;
    bottom: clamp(60px, 10vh, 90px);
    left: 0;
    right: 0;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 0 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease 0.4s, transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s;
}

.mid-photo-caption.visible {
    opacity: 1;
    transform: translateY(0);
}

.mid-photo-caption p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(0.9rem, 2.5vw, 1.15rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(181, 149, 92, 0.3);
    letter-spacing: 0.5px;
    margin: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 300px;
}

.mid-photo-caption-line {
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.6), transparent);
    display: block;
}

/* Foto principal — parallax suave */
.torn-photo-section #mid-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.12);
    will-change: transform;
    transition: transform 0.1s linear;
    filter: brightness(0.92) contrast(1.04) saturate(1.08);
}

/* Florales sobre la foto — con z-index por encima del vignette */
.torn-floral-overlay {
    z-index: 9 !important;
    width: clamp(130px, 26vw, 260px) !important;
    opacity: 0.9;
    filter: drop-shadow(0 4px 12px rgba(194, 139, 148, 0.3));
}

/* Difuminado superior — se funde con la sección anterior (cream) */
.mid-photo-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to bottom, var(--cream) 0%, rgba(253, 248, 245, 0.85) 5%, rgba(253, 248, 245, 0.5) 15%, rgba(253, 248, 245, 0.15) 30%, transparent 40%);
    pointer-events: none;
    z-index: 8;
}

/* Difuminado inferior — se funde con la sección siguiente (cream-dark) */
.mid-photo-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--cream) 0%, rgba(253, 248, 245, 0.85) 5%, rgba(253, 248, 245, 0.5) 15%, rgba(253, 248, 245, 0.15) 30%, transparent 40%);
    pointer-events: none;
    z-index: 8;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER FOTO
   ═══════════════════════════════════════════════════════════ */
.footer-photo-section {
    width: 100%;
    height: 55vh;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}

.footer-photo-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    transform: scale(1.08);
    will-change: transform;
    filter: brightness(0.92) contrast(1.04) saturate(1.08); /* Mismo tratamiento que mid-photo */
}

/* Fades into --cream-dark (RSVP section background) */
.footer-photo-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(
        to bottom, 
        var(--cream-dark) 0%, 
        rgba(245, 235, 232, 0.85) 15%, 
        rgba(245, 235, 232, 0.5) 40%, 
        rgba(245, 235, 232, 0.15) 70%, 
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* Subtle fade to bottom */
.footer-photo-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(
        to top, 
        rgba(245, 235, 232, 0.6) 0%, 
        rgba(245, 235, 232, 0.2) 40%, 
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* ═══════════════════════════════════════════════════════════
   REPRODUCTOR SPOTIFY-STYLE FLOTANTE
   ═══════════════════════════════════════════════════════════ */
.floating-widgets {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    pointer-events: none;
}

/* Botón RSVP separado arriba a la derecha */
.fab-rsvp-fixed {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--rose);
    color: #fff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(194, 139, 148, 0.45);
    transition: all 0.3s;
    text-decoration: none;
    z-index: 9999;
    pointer-events: all;
}

.fab-rsvp-fixed:hover {
    background: var(--rose-dark);
    color: #fff;
    transform: scale(1.1);
}

/* Player card */
.music-player {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(181, 149, 92, 0.2);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(194, 139, 148, 0.18), 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 20px 24px 16px;
    width: min(350px, 92vw);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.music-player:hover {
    box-shadow: 0 20px 55px rgba(194, 139, 148, 0.28);
    transform: translateY(-3px);
}

/* Fila superior: info a la izquierda, corazón a la derecha */
.mp-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mp-info {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.mp-song-name {
    font-family: 'Raleway', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.mp-artist {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    margin: 2px 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mp-actions {
    display: flex;
    align-items: center;
}

.mp-like-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.35rem;
    color: var(--text-main);
    transition: all 0.25s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mp-like-btn:hover {
    transform: scale(1.15);
}

.mp-like-btn.liked {
    color: #e25c80;
}

/* Sound Wave (Visualizer) */
.mp-wave {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 38px;
    gap: 3px;
    margin: 12px 0 6px;
    padding: 0 2px;
}

.mp-wave span {
    flex: 1;
    background-color: var(--text-main);
    border-radius: 4px;
    height: 30%;
    transform-origin: bottom;
    transition: height 0.3s ease;
}

/* Base heights representing a nice sound wave when paused */
.mp-wave span:nth-child(1) {
    height: 35%;
}

.mp-wave span:nth-child(2) {
    height: 50%;
}

.mp-wave span:nth-child(3) {
    height: 75%;
}

.mp-wave span:nth-child(4) {
    height: 45%;
}

.mp-wave span:nth-child(5) {
    height: 60%;
}

.mp-wave span:nth-child(6) {
    height: 85%;
}

.mp-wave span:nth-child(7) {
    height: 40%;
}

.mp-wave span:nth-child(8) {
    height: 55%;
}

.mp-wave span:nth-child(9) {
    height: 75%;
}

.mp-wave span:nth-child(10) {
    height: 45%;
}

.mp-wave span:nth-child(11) {
    height: 65%;
}

.mp-wave span:nth-child(12) {
    height: 90%;
}

.mp-wave span:nth-child(13) {
    height: 90%;
}

.mp-wave span:nth-child(14) {
    height: 65%;
}

.mp-wave span:nth-child(15) {
    height: 45%;
}

.mp-wave span:nth-child(16) {
    height: 75%;
}

.mp-wave span:nth-child(17) {
    height: 55%;
}

.mp-wave span:nth-child(18) {
    height: 40%;
}

.mp-wave span:nth-child(19) {
    height: 85%;
}

.mp-wave span:nth-child(20) {
    height: 60%;
}

.mp-wave span:nth-child(21) {
    height: 45%;
}

.mp-wave span:nth-child(22) {
    height: 75%;
}

.mp-wave span:nth-child(23) {
    height: 50%;
}

.mp-wave span:nth-child(24) {
    height: 35%;
}

/* Animate wave bars when playing */
@keyframes bounce-bar {

    0%,
    100% {
        transform: scaleY(0.25);
    }

    50% {
        transform: scaleY(1);
    }
}

.music-player.is-playing .mp-wave span {
    animation: bounce-bar 1.2s ease-in-out infinite;
}

.music-player.is-playing .mp-wave span:nth-child(2n) {
    animation-delay: 0.15s;
    animation-duration: 1.4s;
}

.music-player.is-playing .mp-wave span:nth-child(3n) {
    animation-delay: 0.3s;
    animation-duration: 1s;
}

.music-player.is-playing .mp-wave span:nth-child(4n) {
    animation-delay: 0.45s;
    animation-duration: 1.2s;
}

.music-player.is-playing .mp-wave span:nth-child(5n) {
    animation-delay: 0.2s;
    animation-duration: 1.6s;
}

/* Progress bar & Seek bar below visualizer */
.mp-progress-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}

.mp-progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(74, 68, 68, 0.12);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.mp-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--text-main);
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
    transition: none;
    /* remove linear transition for precise seeking */
}

.mp-progress-knob {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-main);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 10;
}

.mp-time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mp-time {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
}

/* Controls */
.mp-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    margin-top: 4px;
}

.mp-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-main);
    font-size: 1.3rem;
    padding: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mp-btn:hover {
    transform: scale(1.15);
    color: var(--rose);
}

.mp-btn.active {
    color: var(--rose);
}

.mp-btn-play {
    width: 52px;
    height: 52px;
    background: var(--text-main);
    color: #fff !important;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(74, 68, 68, 0.25);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.mp-btn-play:hover {
    transform: scale(1.1);
    background: var(--rose-dark);
    box-shadow: 0 8px 20px rgba(194, 139, 148, 0.4);
}

.mp-btn-play:active {
    transform: scale(0.95);
}

/* Volume row */
.mp-volume-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    opacity: 0.5;
    transition: opacity 0.2s;
    padding-top: 4px;
}

.mp-volume-wrap:hover {
    opacity: 1;
}

.mp-vol-icon {
    color: var(--text-main);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.mp-volume-slider {
    width: 80px;
    -webkit-appearance: none;
    appearance: none;
    height: 3px;
    border-radius: 2px;
    background: rgba(74, 68, 68, 0.15);
    outline: none;
    cursor: pointer;
}

.mp-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-main);
    cursor: pointer;
}

.mp-volume-slider::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-main);
    border: none;
    cursor: pointer;
}

@media (max-width: 480px) {
    .music-player {
        width: min(320px, 92vw);
        padding: 16px 18px 12px;
    }

    .fab-rsvp-fixed {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        bottom: 1rem;
        right: 1rem;
    }

    .floating-widgets {
        bottom: 1rem;
    }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL Y SELLO DE APERTURA
   ═══════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(44px) scale(0.98);
    filter: blur(4px);
    transition:
        opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 1s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Variante: solo fade (para secciones ya posicionadas) */
.reveal-fade {
    opacity: 0;
    transition: opacity 1.4s ease;
}

.reveal-fade.active {
    opacity: 1;
}

/* Animación flotante suave para decoraciones florales */
@keyframes floatFloral {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-8px) rotate(0.8deg);
    }

    66% {
        transform: translateY(-4px) rotate(-0.5deg);
    }
}

@keyframes floatFloralbr {

    0%,
    100% {
        transform: scaleY(-1) translateY(0px);
    }

    33% {
        transform: scaleY(-1) translateY(-6px);
    }

    66% {
        transform: scaleY(-1) translateY(-3px);
    }
}

@keyframes floatFloral-tl {

    0%,
    100% {
        transform: scaleX(-1) translateY(0px) rotate(0deg);
    }

    33% {
        transform: scaleX(-1) translateY(-8px) rotate(0.8deg);
    }

    66% {
        transform: scaleX(-1) translateY(-4px) rotate(-0.5deg);
    }
}

/* Aplicar float a florales de secciones específicas */
.hero-corner-tl {
    animation: floatFloral-tl 8s ease-in-out infinite;
}

.hero-corner-tr {
    animation: floatFloral 9s ease-in-out infinite;
    animation-delay: 1.5s;
}

.floral-accent.floral-tl {
    animation: floatFloral-tl 10s ease-in-out infinite;
    animation-delay: 0.8s;
}

.floral-accent.floral-br {
    animation: floatFloralbr 11s ease-in-out infinite;
    animation-delay: 2s;
}

/* Glow pulse para el gold-divider */
.gold-divider::before,
.gold-divider::after {
    transition: opacity 0.6s ease;
}

.gold-divider {
    animation: dividerPulse 4s ease-in-out infinite;
}

@keyframes dividerPulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* Pulse suave para el countdown */
@keyframes countPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

.cs-item span:first-child {
    display: inline-block;
    animation: countPulse 2s ease-in-out infinite;
}

/* Sutil entrada del section-title desde abajo con blur */
.section-title {
    animation: none;
    /* controlado por .reveal */
}

/* Shine para los botones primarios */
.btn-primary-aurea {
    position: relative;
    overflow: hidden;
}

.btn-primary-aurea::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-primary-aurea:hover::after {
    left: 130%;
}

/* Hover suave en imagen hero */
.hero-photo-wrap:hover img {
    transform: scale(1.08);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Suave efecto en la foto hero al entrar */
@keyframes heroPhotoFadeIn {
    from {
        opacity: 0;
        transform: scale(1.08);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: scale(1.05);
        filter: blur(0);
    }
}

#hero-img {
    animation: heroPhotoFadeIn 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

#intro-screen {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: radial-gradient(circle at center, var(--cream-dark) 0%, var(--cream) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease, visibility 1s ease;
}

.envelope-seal {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
    border: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(194, 139, 148, 0.4), inset 0 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.envelope-seal:hover {
    transform: scale(1.1);
}

.seal-initial {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    text-align: center;
    align-items: center;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.intro-text {
    margin-top: 2rem;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--text-main);
}

/* ═══════════════════════════════════════════════════════════
   MOBILE-ONLY BLOCKER (DESKTOP BLOCKER)
   ═══════════════════════════════════════════════════════════ */
#desktop-blocker {
    display: none;
}

@media (min-width: 992px) {
    #desktop-blocker {
        display: flex;
        position: fixed;
        inset: 0;
        z-index: 999999;
        background: radial-gradient(circle at center, var(--cream-dark) 0%, var(--cream) 100%);
        align-items: center;
        justify-content: center;
        padding: 2rem;
        text-align: center;
        overflow-y: auto;
    }

    /* Hide the rest of the body to prevent scrolling / audio / interaction */
    body {
        overflow: hidden !important;
    }

    .blocker-card {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 2px solid rgba(194, 139, 148, 0.2);
        border-radius: 32px;
        padding: 3rem 2.5rem;
        max-width: 500px;
        width: 100%;
        box-shadow: 0 20px 60px rgba(194, 139, 148, 0.25), 0 5px 15px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.8rem;
        animation: blockerFadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .blocker-header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .blocker-crown {
        font-size: 2.5rem;
        color: var(--gold);
        line-height: 1;
        margin-bottom: 0.5rem;
        filter: drop-shadow(0 2px 5px rgba(181, 149, 92, 0.2));
    }

    .blocker-card h2 {
        font-family: 'Pinyon Script', cursive;
        font-size: clamp(3rem, 5vw, 4.5rem);
        color: var(--gold);
        line-height: 1;
        margin: 0;
    }

    .blocker-subtitle {
        font-family: 'Raleway', sans-serif;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--sage);
        font-size: 0.8rem;
        margin-top: 0.2rem;
        margin-bottom: 0;
    }

    .blocker-body {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .blocker-icon {
        font-size: 3rem;
        color: var(--rose);
        animation: pulsePhone 2s infinite ease-in-out;
    }

    .blocker-body h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-main);
        margin: 0;
    }

    .blocker-body p {
        font-family: 'Raleway', sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--text-muted);
        margin: 0;
        max-width: 400px;
    }

    .blocker-qr {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: rgba(255, 255, 255, 0.4);
        border: 1px solid rgba(194, 139, 148, 0.15);
        border-radius: 20px;
        padding: 1.5rem;
        width: 100%;
    }

    .blocker-qr p {
        font-family: 'Raleway', sans-serif;
        font-weight: 600;
        font-size: 0.8rem;
        color: var(--text-muted);
        letter-spacing: 0.5px;
    }

    .blocker-footer {
        font-family: 'Raleway', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 3px;
        color: var(--rose);
        text-transform: uppercase;
    }
}

@keyframes blockerFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulsePhone {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 0 rgba(194, 139, 148, 0));
    }

    50% {
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 5px 15px rgba(194, 139, 148, 0.3));
    }
}