/* ==============================================================================
   Wedding RSVP & Live Memory Wall - Stylesheet
   Fonts: 'Playfair Display' (Headings) & 'Lato' (Body & Controls)
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --gold-primary: #b8860b;
    --gold-accent: #c49b66;
    --gold-light: #f5eedf;
    --gold-dark: #8c6734;

    --glass-bg: rgba(255, 255, 255, 0.88);
    --glass-border: rgba(255, 255, 255, 0.65);
    --glass-blur: 16px;
    --glass-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.05);

    --text-main: #23211f;
    --text-muted: #5e5954;
    --text-light: #878078;
    --color-bg-failsafe: #1c1a19;
    
    --color-success: #2e7d32;
    --color-success-bg: #edf7ed;
    --color-danger: #c62828;
    --color-danger-bg: #fdeded;

    --transition-standard: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    min-height: 100vh;
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--color-bg-failsafe);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transition: opacity 0.8s ease-in-out;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
    z-index: -1;
    pointer-events: none;
}

/* Splash Overlay */
.splash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121110;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.splash-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    max-width: 85vw;
    max-height: 80vh;
    animation: splashEnter 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.splash-img {
    max-width: 100%;
    max-height: 65vh;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    object-fit: contain;
}

.splash-monogram {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-style: italic;
    color: var(--gold-accent);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.splash-spinner {
    width: 28px;
    height: 28px;
    margin: 20px auto 0;
    border: 2px solid rgba(196, 155, 102, 0.2);
    border-top-color: var(--gold-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes splashEnter {
    to { opacity: 1; transform: scale(1); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Main Container */
.main-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 880px;
    margin: auto;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-wrapper.content-revealed {
    opacity: 1;
    transform: translateY(0);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: 26px;
    padding: 38px 32px;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

@media (max-width: 600px) {
    .glass-card {
        padding: 26px 18px;
        border-radius: 20px;
    }
}

.ornament-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 14px 0 20px;
    color: var(--gold-accent);
}

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

.ornament-symbol {
    margin: 0 14px;
    font-size: 1.1rem;
}

.tagline-sub {
    font-family: var(--font-body);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.couple-names {
    font-family: var(--font-heading);
    font-size: 2.85rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

@media (max-width: 600px) {
    .couple-names {
        font-size: 2.2rem;
    }
}

.welcome-message {
    font-size: 0.98rem;
    color: var(--text-muted);
    margin: 10px auto 18px;
    max-width: 460px;
    line-height: 1.6;
}

.event-details-box {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 14px;
    padding: 12px 18px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: var(--text-main);
}

.event-details-box strong {
    color: var(--gold-dark);
    display: block;
    margin-bottom: 2px;
}

/* Google Maps Link Card */
.map-card-link {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(255,250,240,0.88) 0%, rgba(255,255,255,0.88) 100%);
    border: 1px solid rgba(196, 155, 102, 0.4);
    border-radius: 16px;
    padding: 14px 18px;
    margin-bottom: 24px;
    text-decoration: none;
    text-align: left;
    transition: all 0.25s ease;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.map-card-link:hover {
    background: linear-gradient(135deg, rgba(255,245,230,0.95) 0%, rgba(255,255,255,0.95) 100%);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(140, 103, 52, 0.12);
}

.map-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--gold-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.map-text-content { flex: 1; }

.map-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.map-tag {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-dark);
}

.map-live-pill {
    font-size: 0.7rem;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 1px 8px;
    border-radius: 12px;
    font-weight: 700;
}

.map-location-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

.map-subtext {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Countdown */
.countdown-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 16px 0 22px;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 10px 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.countdown-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
    margin-top: 4px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-dark) 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-standard);
    box-shadow: 0 6px 18px rgba(140, 103, 52, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(140, 103, 52, 0.35);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    margin-top: 12px;
    transition: var(--transition-standard);
}

.form-group {
    text-align: left;
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
}

.required-star { color: var(--color-danger); }

.form-input, .form-select {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-main);
    outline: none;
    transition: var(--transition-standard);
}

.form-input:focus, .form-select:focus {
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(196, 155, 102, 0.2);
}

.conditional-group {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-bottom: 0;
    transition: all 0.35s ease;
}

.conditional-group.show {
    max-height: 140px;
    opacity: 1;
    margin-bottom: 16px;
}

.form-help {
    display: block;
    font-size: 0.74rem;
    color: var(--text-light);
    margin-top: 4px;
}

.alert-box {
    display: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    margin-bottom: 18px;
    text-align: left;
}

.alert-box.show { display: block; }
.alert-box.error {
    background-color: var(--color-danger-bg);
    color: var(--color-danger);
    border: 1px solid rgba(198, 40, 40, 0.2);
}
.alert-box.success {
    background-color: var(--color-success-bg);
    color: var(--color-success);
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.bot-trap {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}

.success-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: var(--color-success-bg);
    color: var(--color-success);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

/* ------------------------------------------------------------------------------
   LIVE WEDDING GALLERY & PHOTO WALL STYLES
   ------------------------------------------------------------------------------ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 14px;
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.gallery-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #2a2522;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-item-info {
    padding: 10px 12px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gallery-guest-name {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gallery-caption {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-timestamp {
    font-size: 0.68rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    max-height: 90vh;
    background: #1c1a19;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.lightbox-content img {
    max-height: 70vh;
    width: auto;
    object-fit: contain;
    background: #000;
}

.lightbox-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lightbox-caption-bar {
    padding: 14px 20px;
    background: #1c1a19;
    color: #f5eedf;
    text-align: left;
    font-size: 0.9rem;
}

/* ------------------------------------------------------------------------------
   ADMIN DASHBOARD STYLES
   ------------------------------------------------------------------------------ */
.admin-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.admin-header {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 30px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.admin-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-main);
    margin: 0;
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.metric-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-left: 5px solid var(--gold-accent);
}

.metric-attending { border-left-color: var(--color-success); }
.metric-declined { border-left-color: var(--color-danger); }

.metric-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 700;
}

.metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 6px;
}

.table-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.04);
    overflow: hidden;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    text-align: left;
}

.styled-table th {
    background: #faf8f5;
    color: var(--text-muted);
    font-weight: 700;
    padding: 14px 16px;
    border-bottom: 2px solid #eeebe5;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 0.76rem;
    letter-spacing: 1px;
}

.styled-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f0ede8;
    vertical-align: top;
    color: var(--text-main);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
}

.badge-attending {
    background: var(--color-success-bg);
    color: var(--color-success);
    border: 1px solid rgba(46, 125, 50, 0.25);
}

.badge-declined {
    background: var(--color-danger-bg);
    color: var(--color-danger);
    border: 1px solid rgba(198, 40, 40, 0.25);
}

/* ------------------------------------------------------------------------------
   WEDDING GIFT FLOATING BUBBLE & MODAL WINDOW
   ------------------------------------------------------------------------------ */
.floating-gift-bubble-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
}

.floating-gift-bubble {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #2a2522 0%, #171513 100%);
    color: #ffffff;
    border: 1.5px solid rgba(196, 155, 102, 0.6);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35), 0 0 15px rgba(196, 155, 102, 0.25);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.floating-gift-bubble:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 36px rgba(0,0,0,0.45), 0 0 24px rgba(196, 155, 102, 0.4);
}

.gift-bubble-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c49b66 0%, #b8860b 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gift-bubble-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.gift-bubble-subtitle {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c49b66;
    font-weight: 700;
}

.gift-bubble-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.gift-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 16, 15, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: giftFadeIn 0.3s ease;
}

@keyframes giftFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gift-modal-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border-radius: 28px;
    padding: 32px 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(196, 155, 102, 0.3);
    text-align: center;
    transform-origin: center;
    animation: giftCardScale 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes giftCardScale {
    from { opacity: 0; transform: scale(0.88); }
    to { opacity: 1; transform: scale(1); }
}

.gift-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f3ef;
    color: var(--text-muted);
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.gift-modal-close:hover {
    background: #eeebe5;
    color: var(--text-main);
}

.gift-modal-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fdfaf3;
    border: 1px solid rgba(196, 155, 102, 0.4);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.gift-modal-kicker {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-dark);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.gift-modal-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-main);
    margin: 0 0 8px;
    line-height: 1.25;
}

.gift-modal-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 20px;
}

.gift-qr-container {
    background: #faf8f5;
    border: 1px dashed rgba(196, 155, 102, 0.45);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gift-qr-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    background: #ffffff;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.gift-qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px;
}

.qr-placeholder-text {
    font-size: 0.82rem;
    color: var(--gold-dark);
    font-weight: 700;
}

.gift-account-box {
    background: #f5f3ef;
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 18px;
    text-align: left;
}

.gift-account-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.gift-account-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    font-weight: 700;
}

.gift-account-number {
    font-family: monospace;
    font-size: 0.84rem;
    color: var(--text-main);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gift-copy-btn {
    padding: 6px 14px;
    background: #ffffff;
    border: 1px solid #dcd7ce;
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.gift-copy-btn:hover {
    background: var(--gold-primary);
    color: #ffffff;
    border-color: var(--gold-primary);
}

.gift-modal-footer {
    font-size: 0.78rem;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
}
