/* assets/css/customer.css - Premium Luxury Florist Dark & Gold Theme */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --bg-dark: #0c0912;
    --bg-surface: rgba(23, 17, 34, 0.85);
    --bg-surface-elevated: rgba(32, 24, 48, 0.95);
    --card-gradient: linear-gradient(155deg, rgba(30, 22, 45, 0.9) 0%, rgba(16, 12, 24, 0.95) 100%);
    
    --gold-primary: #d4af37;
    --gold-light: #fbe69e;
    --gold-champagne: #ecd897;
    --gold-dark: #9a7b1b;
    --gold-glow: rgba(212, 175, 55, 0.28);
    
    --rose-accent: #f43f5e;
    --purple-accent: #a855f7;
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    --border-gold: rgba(212, 175, 55, 0.24);
    --border-gold-active: rgba(212, 175, 55, 0.65);
    --border-subtle: rgba(255, 255, 255, 0.08);
    
    --font-serif: 'Playfair Display', serif;
    --font-garamond: 'Cormorant Garamond', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Atmospheric Ambient Lighting (GPU-Optimized for Mobile) */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.55;
    will-change: auto;
}

.glow-top-left {
    top: -120px;
    left: -120px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.16) 0%, rgba(212, 175, 55, 0.04) 40%, transparent 70%);
}

.glow-bottom-right {
    bottom: -140px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.14) 0%, rgba(168, 85, 247, 0.03) 40%, transparent 70%);
}

.glow-center {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.09) 0%, rgba(244, 63, 94, 0.02) 40%, transparent 70%);
}

#app {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 520px;
    margin: 0 auto;
    padding: 6px 14px 20px;
    width: 100%;
}

/* ================= HEADER SECTION ================= */
.header {
    text-align: center;
    padding: 14px 16px 6px;
    position: relative;
    animation: headerFadeIn 0.8s ease-out forwards;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    margin-bottom: 5px;
    backdrop-filter: blur(10px);
}

.badge-sparkle {
    color: var(--gold-primary);
    font-size: 10px;
}

.logo {
    max-width: 100px;
    max-height: 48px;
    object-fit: contain;
    margin-bottom: 6px;
    filter: drop-shadow(0 3px 10px rgba(0,0,0,0.5));
}

.business-name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.4px;
    background: linear-gradient(135deg, #ffffff 0%, #fae69e 40%, #d4af37 80%, #aa820a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 14px rgba(212, 175, 55, 0.25);
    margin-bottom: 2px;
    line-height: 1.2;
}

.header-subtitle {
    font-size: 11.5px;
    color: var(--text-secondary);
    font-weight: 300;
    max-width: 380px;
    margin: 0 auto;
    line-height: 1.35;
}

@keyframes headerFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= VIEW CONTAINER & TRANSITIONS ================= */
.view {
    display: none;
    opacity: 0;
    will-change: opacity;
}

.view.active-view {
    display: block;
    opacity: 1;
    animation: viewFadeIn 0.22s ease-out forwards;
}

@keyframes viewFadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================= HOME VIEW (SELECTION SCREEN) ================= */
.selection-intro {
    text-align: center;
    margin-bottom: 8px;
}

.selection-title {
    font-family: var(--font-serif);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.3px;
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

/* Choice Cards - Compact Single-Screen Mobile First */
.choice-card {
    background: var(--card-gradient);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 10px 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 0.18s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.18s, box-shadow 0.18s;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
}

.choice-card:hover {
    transform: translateY(-2px);
    border-color: var(--border-gold-active);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5), 0 0 18px var(--gold-glow);
}

/* Instant Mobile Touch Active State */
.choice-card:active {
    transform: scale(0.98);
    border-color: var(--gold-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    filter: brightness(1.08);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.07) 0%, transparent 100%);
    pointer-events: none;
}

.choice-card.digital-card .card-glow {
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.1) 0%, transparent 100%);
}

.card-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 7px;
}

.badge-group {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.card-ribbon-inline {
    background: linear-gradient(135deg, #f43f5e, #be123c);
    color: #ffffff;
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 2px 6px rgba(244, 63, 94, 0.35);
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 7px;
    border-radius: 12px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.badge-classic {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-light);
    border: 1px solid rgba(212, 175, 55, 0.35);
}

.badge-vip {
    background: rgba(168, 85, 247, 0.16);
    color: #d8b4fe;
    border: 1px solid rgba(168, 85, 247, 0.45);
}

/* Mobile Price Pills */
.card-price-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 7px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.pill-gold-badge {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22) 0%, rgba(168, 85, 247, 0.2) 100%);
    border: 1px solid rgba(212, 175, 55, 0.55);
    color: var(--gold-light);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.15);
}

.pill-free-badge {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #86efac;
}

.card-type-hint {
    font-size: 10.5px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Card Body */
.card-body {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 7px;
}

.card-icon-wrapper {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.print-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(26, 19, 36, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
}

.digital-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25) 0%, rgba(26, 19, 36, 0.8) 100%);
    border: 1px solid rgba(168, 85, 247, 0.5);
    color: #c084fc;
}

.custom-svg-icon {
    width: 22px;
    height: 22px;
}

.card-content {
    flex: 1;
    min-width: 0;
}

.card-title {
    font-family: var(--font-serif);
    font-size: 15.5px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
    line-height: 1.25;
}

.card-description {
    font-size: 11.5px;
    color: var(--text-secondary);
    line-height: 1.35;
    margin-bottom: 5px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Feature Pills */
.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    padding: 2px 7px;
    border-radius: 6px;
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
}

.pill i {
    font-size: 8.5px;
    color: var(--gold-primary);
}

.digital-card .pill i {
    color: #c084fc;
}

.pill-gold {
    background: rgba(212, 175, 55, 0.14);
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
    font-weight: 700;
}

.pill-gold i {
    color: var(--gold-primary) !important;
}

.pill-free {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.25);
    color: #86efac;
}

.pill-free i {
    color: #86efac;
}

/* Card Action Bar with Mobile Touch Buttons */
.card-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 7px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.action-info {
    display: flex;
    flex-direction: column;
}

.action-text {
    font-size: 12.5px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.action-subtext {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 400;
}

.action-btn-touch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: transform 0.18s ease, filter 0.18s ease;
}

.touch-vip {
    background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
    color: #120917;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.35);
}

.choice-card:active .touch-vip {
    transform: scale(0.95);
    filter: brightness(1.15);
}

.touch-free {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold-light);
}

.choice-card:active .touch-free {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(0.95);
}

/* ================= LIVE SAMPLE PREVIEW BUTTON ================= */
.preview-trigger-container {
    margin-top: 4px;
}

.btn-sample-preview {
    width: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px dashed rgba(212, 175, 55, 0.45);
    border-radius: 14px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-sample-preview:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(168, 85, 247, 0.18) 100%);
    border-color: var(--gold-primary);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.15);
}

.btn-sample-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.18);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.btn-sample-text {
    flex: 1;
    min-width: 0;
}

.btn-sample-text strong {
    display: block;
    font-size: 12.5px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1px;
}

.btn-sample-text span {
    font-size: 10.5px;
    color: var(--text-muted);
}

.btn-sample-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
    padding: 3px 8px;
    border-radius: 16px;
    font-size: 10px;
    font-weight: 600;
}

/* ================= SAMPLE MODAL PREVIEW ================= */
.sample-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.sample-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.sample-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 3, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sample-modal-container {
    position: relative;
    z-index: 2;
    background: #140d20;
    border: 1px solid var(--border-gold);
    border-radius: 26px;
    width: 92%;
    max-width: 440px;
    height: 84vh;
    max-height: 750px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(212, 175, 55, 0.2);
    transform: translateY(30px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sample-modal-overlay.is-open .sample-modal-container {
    transform: translateY(0) scale(1);
}

.sample-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(26, 19, 38, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sample-header-pill {
    font-size: 9.5px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.15);
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 2px;
}

.sample-header-title h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    color: #ffffff;
    margin: 0;
}

.sample-modal-close {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.sample-modal-close:hover {
    background: rgba(244, 63, 94, 0.2);
    color: #fda4af;
}

.sample-modal-body {
    flex: 1;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.sample-iframe-wrapper {
    width: 100%;
    height: 100%;
}

.sample-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.sample-modal-footer {
    padding: 14px 20px;
    background: rgba(20, 13, 30, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-sample-choose {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
    color: #120917;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    transition: var(--transition);
}

.btn-sample-choose:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

/* ================= GENERAL UI COMPONENTS ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    border-radius: 16px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
    color: #120917;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover, .btn-primary:active {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
}

.btn-secondary:hover, .btn-secondary:active {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold-primary);
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.btn-success:hover, .btn-success:active {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.back-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s;
    font-weight: 500;
}

.back-btn:hover {
    color: var(--gold-light);
}

/* Form Controls */
.form-group {
    margin-bottom: 25px;
}

textarea, input[type="text"], input[type="file"], select {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    background: rgba(24, 18, 35, 0.9);
    font-family: var(--font-sans);
    font-size: 15px;
    color: #ffffff;
    transition: var(--transition);
    resize: none;
}

textarea:focus, input[type="text"]:focus, select:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(30, 22, 45, 0.98);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}

textarea::placeholder, input::placeholder {
    color: #64748b;
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Locked & Info Boxes */
.locked-box {
    background: var(--card-gradient);
    padding: 40px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.locked-icon-svg {
    width: 64px;
    height: 64px;
    stroke: var(--gold-light);
    margin-bottom: 18px;
}

.info-box {
    background: rgba(212, 175, 55, 0.08);
    border-left: 3px solid var(--gold-primary);
    padding: 16px 20px;
    text-align: left;
    margin-top: 25px;
    border-radius: 0 12px 12px 0;
    color: var(--text-secondary);
    font-size: 13.5px;
}

/* Themes Grid */
.themes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.theme-card {
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 14px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(24, 18, 36, 0.85);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.theme-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.theme-card.selected {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 0 2px var(--gold-primary), 0 8px 25px rgba(212, 175, 55, 0.25);
}

/* Suggestions Modal */
.modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 3, 10, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-end;
    z-index: 1000;
}

.modal-content {
    background: #191226;
    border: 1px solid var(--border-gold);
    width: 100%;
    max-height: 80vh;
    border-radius: 26px 26px 0 0;
    padding: 30px 22px;
    overflow-y: auto;
    animation: slideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.close-modal {
    float: right;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}

.close-modal:hover {
    color: #ffffff;
}

.suggestions-list button {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    padding: 14px 18px;
    border-radius: 12px;
    text-align: left;
    width: 100%;
    cursor: pointer;
    font-size: 13.5px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.suggestions-list button:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.08);
    color: #ffffff;
}

.categories-tabs button {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 12.5px;
}

.categories-tabs button.active {
    background: var(--gold-primary);
    color: #140d1e;
    border-color: var(--gold-primary);
    font-weight: 600;
}

/* Success View */
.success-icon-svg {
    width: 80px;
    height: 80px;
    stroke: var(--gold-primary);
    stroke-width: 1.5;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px var(--gold-glow));
}

.text-center { text-align: center; }
.full-width { width: 100%; }
.action-bar { margin-top: 30px; }

/* Responsive adjustments */
@media (max-width: 480px) {
    .business-name {
        font-size: 21px;
    }
    .card-body {
        gap: 10px;
    }
    .card-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    .custom-svg-icon {
        width: 20px;
        height: 20px;
    }
    .choice-card {
        padding: 9px 12px;
    }
    .container {
        padding: 4px 12px 14px;
    }
}


/* ================= PHYSICAL PRINT NOTE STYLING ================= */
.view-header-block {
    text-align: center;
    margin-bottom: 14px;
}

/* ================= DIGITAL STEP PROGRESS BAR (FILL-UP BAR) ================= */
.digital-step-progress-card {
    background: linear-gradient(145deg, rgba(26, 17, 40, 0.88) 0%, rgba(13, 9, 22, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 13px 16px 11px;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.digital-step-progress-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.5) 50%, transparent 100%);
}

.step-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.step-left {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.step-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #0c0912;
    background: linear-gradient(135deg, #f6e05e 0%, #d4af37 100%);
    padding: 3.5px 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
}

.step-name {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.2px;
}

.step-right {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.step-percentage {
    font-size: 16px;
    font-weight: 800;
    color: var(--gold-light, #f6e05e);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.45);
}

.step-status {
    font-size: 10.5px;
    color: var(--text-muted, #94a3b8);
    font-weight: 500;
}

.step-bar-container {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.step-bar-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6);
}

.step-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37 0%, #f6e05e 50%, #f59e0b 100%);
    border-radius: 10px;
    position: relative;
    transition: width 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6), 0 0 4px rgba(245, 158, 11, 0.8);
}

.step-bar-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
    animation: barShimmer 2.2s infinite ease-in-out;
}

@keyframes barShimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.step-milestones {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 4px;
}

.step-milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: default;
    transition: all 0.25s ease;
    user-select: none;
}

.step-milestone.clickable {
    cursor: pointer;
}

.step-milestone.clickable:hover .milestone-dot {
    transform: scale(1.15);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
    border-color: #f6e05e;
}

.step-milestone.clickable:hover .milestone-label {
    color: #fff;
}

.milestone-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    color: var(--text-muted, #94a3b8);
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.milestone-label {
    font-size: 10px;
    color: var(--text-muted, #94a3b8);
    font-weight: 500;
    transition: color 0.25s ease;
}

.step-milestone.is-active .milestone-dot {
    background: linear-gradient(135deg, #f6e05e 0%, #d4af37 100%);
    border-color: #ffffff;
    color: #0c0912;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.75), 0 0 4px rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.step-milestone.is-active .milestone-label {
    color: var(--gold-light, #f6e05e);
    font-weight: 700;
}

.step-milestone.is-completed .milestone-dot {
    background: rgba(212, 175, 55, 0.22);
    border-color: var(--gold-primary, #d4af37);
    color: var(--gold-light, #f6e05e);
}

.step-milestone.is-completed .milestone-label {
    color: #cbd5e1;
}

.step-pill {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 5px;
}

.view-heading {
    font-family: var(--font-serif);
    font-size: 19px;
    color: #fff;
    margin-bottom: 3px;
}

.view-subheading {
    font-size: 11.5px;
    color: var(--text-muted);
}

.form-luxury-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.field-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.luxury-label {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.optional-badge {
    font-size: 10px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 7px;
    border-radius: 10px;
}

.luxury-input {
    width: 100%;
    padding: 9px 12px;
    background: rgba(12, 9, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 13.5px;
    font-family: var(--font-sans);
    box-sizing: border-box;
    transition: var(--transition);
}

.luxury-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
    outline: none;
}

.field-hint {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.field-hint strong {
    color: var(--gold-light);
}

.luxury-textarea {
    width: 100%;
    padding: 10px 12px;
    background: rgba(12, 9, 18, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #fff;
    font-size: 13.5px;
    font-family: var(--font-serif);
    line-height: 1.5;
    box-sizing: border-box;
    resize: none;
    transition: var(--transition);
}

.luxury-textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
    outline: none;
}

/* Suggestions Trigger Button */
.btn-suggestions-trigger {
    width: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(168, 85, 247, 0.12) 100%);
    border: 1px dashed rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin-top: 10px;
    text-align: left;
    transition: var(--transition);
    touch-action: manipulation;
}

.btn-suggestions-trigger:active {
    transform: scale(0.98);
    background: rgba(212, 175, 55, 0.2);
}

.sugg-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.sugg-text {
    flex: 1;
    min-width: 0;
}

.sugg-text strong {
    display: block;
    font-size: 13px;
    color: #fff;
    margin-bottom: 2px;
}

.sugg-text span {
    font-size: 11px;
    color: var(--text-muted);
}

.sugg-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold-light);
    padding: 3px 8px;
    border-radius: 14px;
    font-size: 10.5px;
    font-weight: 600;
}

/* Direct Print Preview Stage */
.card-preview-stage {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.live-physical-card {
    width: 100%;
    max-width: 310px;
    display: flex;
    justify-content: center;
}

.physical-card-shell {
    width: 100%;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    user-select: none;
}

.physical-card-inner {
    position: absolute;
    inset: 0;
    box-sizing: border-box;
}

.card-crop-guides {
    position: absolute;
    inset: 0;
    border: 1.5px dotted #ef4444;
    pointer-events: none;
    z-index: 10;
    border-radius: 6px;
}

.crop-mark {
    position: absolute;
}

.c-tl-h { top: -1px; left: -10px; width: 10px; border-top: 1.5px dotted #ef4444; }
.c-tl-v { top: -10px; left: -1px; height: 10px; border-left: 1.5px dotted #ef4444; }
.c-tr-h { top: -1px; right: -10px; width: 10px; border-top: 1.5px dotted #ef4444; }
.c-tr-v { top: -10px; right: -1px; height: 10px; border-right: 1.5px dotted #ef4444; }
.c-bl-h { bottom: -1px; left: -10px; width: 10px; border-bottom: 1.5px dotted #ef4444; }
.c-bl-v { bottom: -10px; left: -1px; height: 10px; border-left: 1.5px dotted #ef4444; }
.c-br-h { bottom: -1px; right: -10px; width: 10px; border-bottom: 1.5px dotted #ef4444; }
.c-br-v { bottom: -10px; right: -1px; height: 10px; border-right: 1.5px dotted #ef4444; }

/* Borders for customer preview */
.card-border-gold_luxury {
    border: 2px solid var(--border-col, #d4af37);
    margin: 8px;
    height: calc(100% - 16px);
    outline: 1px solid rgba(212, 175, 55, 0.35);
    outline-offset: -4px;
}

.card-border-vintage_floral {
    border: 2px dashed var(--border-col, #b38938);
    margin: 10px;
    height: calc(100% - 20px);
}

.card-border-thin_minimal {
    border: 1px solid var(--border-col, #c5a059);
    margin: 6px;
    height: calc(100% - 12px);
}

.card-border-double_classic {
    border: 3px double var(--border-col, #d4af37);
    margin: 8px;
    height: calc(100% - 16px);
}

.card-border-none {
    border: none;
    margin: 0;
    height: 100%;
}

.card-decor-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.preview-text-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
}

.preview-sender-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
    font-weight: 600;
}

/* ================= LUXURY SUGGESTIONS MODAL ================= */
.modal-backdrop-luxury {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: none;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop-luxury.is-active,
.modal-backdrop-luxury.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal-drawer-luxury {
    background: #140e1f;
    border: 1px solid var(--border-gold, #d4af37);
    border-radius: 22px 22px 0 0;
    width: 100%;
    max-width: 540px;
    max-height: 82vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.85);
    transform: translateY(100%);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    pointer-events: auto;
}

.modal-backdrop-luxury.is-active .modal-drawer-luxury,
.modal-backdrop-luxury.is-open .modal-drawer-luxury {
    transform: translateY(0);
}

.modal-drawer-header {
    padding: 16px 18px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 14, 31, 0.95);
}

.drawer-title-row h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: #fff;
    margin: 2px 0 0 0;
}

.drawer-pill {
    font-size: 9.5px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--gold-light, #f6e05e);
    background: rgba(212, 175, 55, 0.15);
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

.drawer-close-btn {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #cbd5e1;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: var(--transition, all 0.2s ease);
}

.drawer-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.categories-scroll-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 18px;
    background: rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.categories-scroll-tabs::-webkit-scrollbar {
    display: none;
}

.tab-cat-pill,
.cat-pill-btn {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary, #94a3b8);
    padding: 7px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    touch-action: manipulation;
    white-space: nowrap;
}

.tab-cat-pill:hover,
.cat-pill-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(212, 175, 55, 0.4);
}

.tab-cat-pill.active,
.cat-pill-btn.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.12) 100%);
    border-color: var(--gold-primary, #d4af37);
    color: var(--gold-light, #f6e05e);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.18);
}

.suggestions-cards-list {
    padding: 14px 18px 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: calc(82vh - 120px);
    -webkit-overflow-scrolling: touch;
}

.suggestion-item-card,
.suggestion-quote-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 13px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    touch-action: manipulation;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.suggestion-item-card:hover, .suggestion-item-card:active,
.suggestion-quote-card:hover, .suggestion-quote-card:active {
    background: rgba(212, 175, 55, 0.09);
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.sugg-card-quote {
    color: var(--gold-primary, #d4af37);
    font-size: 13px;
    opacity: 0.6;
    margin-bottom: 4px;
}

.quote-text,
.sugg-card-text {
    font-family: var(--font-serif);
    font-size: 13.5px;
    color: #f1f5f9;
    line-height: 1.55;
    font-style: italic;
}

.quote-action,
.sugg-card-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    font-size: 11.5px;
    color: var(--gold-light, #f6e05e);
    font-weight: 600;
}
/* ================= 16 PHYSICAL CARD BORDERS FOR CUSTOMER PREVIEW ================= */
.card-border-gold_baroque {
    border: 2px solid var(--border-col, #d4af37);
    margin: 8px;
    height: calc(100% - 16px);
    outline: 1px solid rgba(212, 175, 55, 0.45);
    outline-offset: -4px;
    box-shadow: inset 0 0 0 2px rgba(212, 175, 55, 0.15);
}
.card-border-art_deco {
    border: 3px double var(--border-col, #d4af37);
    margin: 8px;
    height: calc(100% - 16px);
    outline: 1px dashed rgba(212, 175, 55, 0.6);
    outline-offset: -4px;
}
.card-border-vintage_floral {
    border: 2px dashed var(--border-col, #b38938);
    margin: 8px;
    height: calc(100% - 16px);
}
.card-border-royal_crown {
    border: 2px solid var(--border-col, #d4af37);
    margin: 8px;
    height: calc(100% - 16px);
    border-radius: 4px;
}
.card-border-thin_minimal {
    border: 1px solid var(--border-col, #c5a059);
    margin: 6px;
    height: calc(100% - 12px);
}
.card-border-double_classic {
    border: 3px double var(--border-col, #d4af37);
    margin: 8px;
    height: calc(100% - 16px);
}
.card-border-stitched {
    border: 2px dotted var(--border-col, #b38938);
    margin: 8px;
    height: calc(100% - 16px);
}
.card-border-oval_elegance {
    border: 1.5px solid var(--border-col, #d4af37);
    margin: 8px;
    height: calc(100% - 16px);
    border-radius: 16px;
}
.card-border-romantic_hearts {
    border: 2px solid var(--border-col, #f43f5e);
    margin: 8px;
    height: calc(100% - 16px);
    outline: 1px solid rgba(244, 63, 94, 0.35);
    outline-offset: -4px;
}
.card-border-french_lace {
    border: 4px double var(--border-col, #c084fc);
    margin: 8px;
    height: calc(100% - 16px);
}
.card-border-ornate_corners {
    border: 1.5px solid var(--border-col, #d4af37);
    margin: 8px;
    height: calc(100% - 16px);
    outline: 2px solid rgba(212, 175, 55, 0.25);
    outline-offset: -4px;
}
.card-border-floral_wreath {
    border: 2px solid var(--border-col, #10b981);
    margin: 8px;
    height: calc(100% - 16px);
    outline: 1px dashed rgba(16, 185, 129, 0.4);
    outline-offset: -4px;
}
.card-border-modern_bracket {
    border-top: 3px solid var(--border-col, #d4af37);
    border-bottom: 3px solid var(--border-col, #d4af37);
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    margin: 8px;
    height: calc(100% - 16px);
}
.card-border-gothic_arch {
    border: 2px solid var(--border-col, #d4af37);
    margin: 8px;
    height: calc(100% - 16px);
    border-radius: 16px 16px 0 0;
}
.card-border-starry_night {
    border: 2px dashed var(--border-col, #eab308);
    margin: 8px;
    height: calc(100% - 16px);
    outline: 1px dotted rgba(234, 179, 8, 0.5);
    outline-offset: -4px;
}
.card-border-none {
    border: none;
    margin: 0;
    height: 100%;
}

/* Texture Backgrounds in Customer CSS */
.texture-bg-parchment {
    background: #fdfbf7 radial-gradient(#ede8db 15%, transparent 16%) !important;
    background-size: 16px 16px !important;
}
.texture-bg-linen {
    background: #faf8f5 linear-gradient(45deg, #f0ede6 25%, transparent 25%, transparent 75%, #f0ede6 75%, #f0ede6), linear-gradient(45deg, #f0ede6 25%, transparent 25%, transparent 75%, #f0ede6 75%, #f0ede6) !important;
    background-size: 8px 8px !important;
}
.texture-bg-marble {
    background: #fffdf9 !important;
    background-image: radial-gradient(at 10% 20%, rgba(212, 175, 55, 0.12) 0px, transparent 50%),
                      radial-gradient(at 90% 80%, rgba(212, 175, 55, 0.14) 0px, transparent 50%) !important;
}
.texture-bg-rose {
    background: #fff5f7 !important;
    background-image: radial-gradient(at 0% 0%, rgba(244, 63, 94, 0.12) 0px, transparent 50%),
                      radial-gradient(at 100% 100%, rgba(244, 63, 94, 0.1) 0px, transparent 50%) !important;
}
.texture-bg-kraft {
    background: #d8be9b !important;
    background-image: radial-gradient(rgba(175, 142, 103, 0.3) 15%, transparent 16%) !important;
    background-size: 12px 12px !important;
}
.texture-bg-lavender {
    background: #fbf9ff !important;
    background-image: radial-gradient(at 20% 20%, rgba(192, 132, 252, 0.15) 0px, transparent 50%),
                      radial-gradient(at 80% 80%, rgba(216, 180, 254, 0.15) 0px, transparent 50%) !important;
}
.texture-bg-velvet {
    background: #150914 !important;
    background-image: radial-gradient(circle, rgba(244, 63, 94, 0.2) 0%, rgba(20, 8, 18, 0.98) 100%) !important;
}
.texture-bg-pure_white {
    background: #ffffff !important;
}
/* ==========================================================================
   DIGITAL SMART SURVEY & 3D ALBUM LUXURY STYLING
   ========================================================================== */

/* Step 1 Relationship & Occasion Dropdown Screen (Matching UI) */
.survey-screen-card {
    background: linear-gradient(160deg, rgba(21, 16, 35, 0.95) 0%, rgba(13, 10, 24, 0.98) 100%);
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px 22px 26px;
    max-width: 480px;
    margin: 0 auto;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    position: relative;
    box-sizing: border-box;
}

.survey-card-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    font-family: var(--font-serif, 'Playfair Display', serif);
    letter-spacing: 0.3px;
}

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

.survey-field-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.luxury-select-wrapper {
    position: relative;
    width: 100%;
}

.luxury-select {
    width: 100%;
    padding: 13px 38px 13px 16px;
    background: #0f1524;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14.5px;
    font-family: inherit;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.22s ease;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.luxury-select:hover {
    border-color: rgba(56, 189, 248, 0.45);
    background: #131a2d;
}

.luxury-select:focus {
    border-color: #38bdf8;
    background: #131a2d;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.luxury-select option {
    background: #0f172a;
    color: #ffffff;
    padding: 12px;
}

.luxury-select-chevron {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.luxury-select-wrapper:focus-within .luxury-select-chevron {
    color: #38bdf8;
}

.luxury-date-input {
    color-scheme: dark;
}

.survey-btn-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn-survey-back {
    flex: 1;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #cbd5e1;
    font-size: 14.5px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}

.btn-survey-back:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-survey-continue {
    flex: 1.5;
    height: 48px;
    background: linear-gradient(135deg, #0284c7 0%, #38bdf8 100%);
    border: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.22s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(56, 189, 248, 0.38);
    font-family: inherit;
}

.btn-survey-continue:hover {
    background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
    box-shadow: 0 6px 22px rgba(56, 189, 248, 0.55);
    transform: translateY(-1px);
}

.btn-survey-continue:active {
    transform: translateY(0);
}

.btn-survey-reset {
    margin: 16px auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 12px;
    padding: 7px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-survey-reset:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #f87171;
    border-color: rgba(248, 113, 113, 0.3);
}

/* Survey Blocks */
.survey-card-block {
    background: var(--bg-surface);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.survey-q-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.survey-q-title .q-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), #b8860b);
    color: #1a0f00;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px var(--gold-glow);
    flex-shrink: 0;
}

.survey-q-hint {
    font-size: 12.5px;
    color: var(--text-muted);
    margin: -6px 0 12px 36px;
}

/* Survey Options Grid */
.survey-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.survey-opt-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: left;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.survey-opt-btn .opt-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.survey-opt-btn:active {
    transform: scale(0.97);
}

.survey-opt-btn.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.06) 100%);
    border-color: var(--gold-primary);
    color: #fff;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.25), inset 0 0 12px rgba(212, 175, 55, 0.1);
}

/* Baby Gender Cards (Pink & Blue Glowing) */
.gender-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.gender-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gender-card .gender-icon {
    font-size: 32px;
    margin-bottom: 6px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.gender-card .gender-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.gender-card .gender-desc {
    font-size: 11px;
    color: var(--text-muted);
}

.gender-card:active {
    transform: scale(0.97);
}

/* Girl card neon pink */
.gender-card.gender-girl.active {
    background: linear-gradient(145deg, rgba(244, 63, 94, 0.22) 0%, rgba(244, 63, 94, 0.05) 100%);
    border-color: #f43f5e;
    box-shadow: 0 0 22px rgba(244, 63, 94, 0.35), inset 0 0 15px rgba(244, 63, 94, 0.15);
}
.gender-card.gender-girl.active .gender-title {
    color: #fda4af;
}

/* Boy card neon cyan/blue */
.gender-card.gender-boy.active {
    background: linear-gradient(145deg, rgba(14, 165, 233, 0.22) 0%, rgba(14, 165, 233, 0.05) 100%);
    border-color: #0ea5e9;
    box-shadow: 0 0 22px rgba(14, 165, 233, 0.35), inset 0 0 15px rgba(14, 165, 233, 0.15);
}
.gender-card.gender-boy.active .gender-title {
    color: #7dd3fc;
}

/* Survey Pills List (Duration) */
.survey-pills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.survey-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 9px 15px;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.survey-pill-btn:active {
    transform: scale(0.96);
}

.survey-pill-btn.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-color: var(--gold-primary);
    color: #fff;
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.3);
}

/* Matched Banner */
.survey-matched-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(168, 85, 247, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: var(--radius-md);
    padding: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.survey-matched-banner .matched-icon {
    font-size: 28px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.survey-matched-banner .matched-text strong {
    display: block;
    color: var(--gold-light);
    font-size: 14.5px;
    font-weight: 600;
}

.survey-matched-banner .matched-text span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Form Badges */
.badge-count {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* File Upload Buttons */
.btn-file-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14) 0%, rgba(212, 175, 55, 0.04) 100%);
    border: 1.5px dashed var(--border-gold);
    border-radius: var(--radius-md);
    color: var(--gold-light);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.btn-file-upload:active {
    transform: scale(0.98);
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.2);
}

.btn-video-upload {
    border-color: rgba(168, 85, 247, 0.35);
    color: #d8b4fe;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(168, 85, 247, 0.03) 100%);
}

.btn-audio-upload {
    border-color: rgba(14, 165, 233, 0.35);
    color: #7dd3fc;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(14, 165, 233, 0.03) 100%);
}

/* Photos Thumbnails Grid */
.photos-thumb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.photo-thumb-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: #111;
}

.photo-thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-thumb-card .btn-remove-photo {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    transition: transform 0.2s;
}

.photo-thumb-card .btn-remove-photo:active {
    transform: scale(0.9);
}

.photo-thumb-card .thumb-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 8px;
}

/* Video Preview Box */
.video-preview-box {
    margin-top: 12px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-preview-box video {
    width: 100%;
    max-height: 220px;
    display: block;
}

.btn-remove-video {
    width: 100%;
    padding: 8px;
    background: rgba(239, 68, 68, 0.12);
    border: none;
    border-top: 1px solid rgba(239, 68, 68, 0.25);
    color: #fca5a5;
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Music Type Tabs */
.music-type-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.music-tab-btn {
    padding: 10px 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.music-tab-btn i {
    font-size: 16px;
}

.music-tab-btn.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-color: var(--gold-primary);
    color: #fff;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}

.btn-link-remove {
    background: none;
    border: none;
    color: #ef4444;
    text-decoration: underline;
    margin-left: 10px;
    cursor: pointer;
    font-size: 12px;
}

/* ==========================================================================
   DIGITAL SIMULATION VIEWPORT & 3D ALBUM STACK
   ========================================================================== */

.digital-sim-viewport {
    position: relative;
    width: 100%;
    min-height: 520px;
    border-radius: 20px;
    border: 1.5px solid var(--border-gold);
    background: #0d0a15;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(212, 175, 55, 0.15);
    overflow: hidden;
    margin-bottom: 20px;
}

/* Floating Particles inside Preview */
.sim-particles-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.sim-particle-item {
    position: absolute;
    bottom: -30px;
    user-select: none;
    pointer-events: none;
    animation: simParticleFloat 7s linear infinite;
}

@keyframes simParticleFloat {
    0% {
        transform: translateY(0) rotate(0deg) scale(0.6);
        opacity: 0;
    }
    15% {
        opacity: 0.85;
    }
    85% {
        opacity: 0.85;
    }
    100% {
        transform: translateY(-560px) rotate(360deg) scale(1.1);
        opacity: 0;
    }
}

.sim-content-scroll {
    position: relative;
    z-index: 2;
    padding: 24px 18px 40px;
}

.sim-recipient-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 10.5px;
    letter-spacing: 1.5px;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.sim-recipient-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    line-height: 1.25;
}

/* 3D Photo Album Stage */
.sim-album-section {
    margin-bottom: 22px;
}

.sim-album-container {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    -webkit-perspective: 1200px;
}

.album-3d-stage {
    position: relative;
    width: 220px;
    height: 270px;
    transform-style: preserve-3d;
}

.album-3d-card {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 10px rgba(212, 175, 55, 0.2);
    border: 2px solid rgba(212, 175, 55, 0.4);
    background: #111;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease, z-index 0.4s;
    user-select: none;
    -webkit-user-select: none;
}

.album-3d-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* 3D Stack positions */
.album-3d-card.card-active {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    z-index: 10;
    opacity: 1;
}

.album-3d-card.card-next {
    transform: translate3d(18px, 8px, -40px) rotate(4deg) scale(0.94);
    z-index: 8;
    opacity: 0.82;
}

.album-3d-card.card-next-2 {
    transform: translate3d(32px, 16px, -80px) rotate(8deg) scale(0.88);
    z-index: 6;
    opacity: 0.6;
}

.album-3d-card.card-hidden {
    transform: translate3d(45px, 24px, -120px) rotate(12deg) scale(0.8);
    z-index: 4;
    opacity: 0;
    pointer-events: none;
}

.sim-album-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 14px;
}

.btn-album-nav {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-album-nav:active {
    transform: scale(0.92);
    background: rgba(212, 175, 55, 0.25);
}

.album-nav-counter {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 1px;
}

.sim-album-hint {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
}

/* Simulation Note Card */
.sim-note-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    padding: 18px;
    position: relative;
    backdrop-filter: blur(8px);
    margin-bottom: 18px;
}

.sim-quote-icon {
    font-size: 20px;
    color: var(--gold-primary);
    opacity: 0.5;
    margin-bottom: 8px;
}

.sim-note-text {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-primary);
    font-family: var(--font-sans);
    white-space: pre-wrap;
    word-break: break-word;
}

.sim-sender-tag {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12.5px;
    color: var(--text-muted);
}

.sim-sender-tag strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* Simulation Music Player Bar */
.sim-music-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(18, 14, 28, 0.85);
    border: 1px solid var(--border-gold);
    border-radius: 14px;
    padding: 12px 14px;
    backdrop-filter: blur(10px);
}

.sim-music-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), #b8860b);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.sim-music-info {
    flex: 1;
    min-width: 0;
}

.sim-music-info strong {
    display: block;
    font-size: 13px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sim-music-info span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

.sim-music-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
}

.sim-music-wave span {
    width: 3px;
    height: 60%;
    background: var(--gold-primary);
    border-radius: 3px;
    animation: musicWaveAnim 1.2s ease-in-out infinite alternate;
}

.sim-music-wave span:nth-child(1) { animation-delay: 0.1s; height: 40%; }
.sim-music-wave span:nth-child(2) { animation-delay: 0.3s; height: 90%; }
.sim-music-wave span:nth-child(3) { animation-delay: 0.2s; height: 60%; }
.sim-music-wave span:nth-child(4) { animation-delay: 0.4s; height: 75%; }

@keyframes musicWaveAnim {
    0% { height: 25%; }
    100% { height: 100%; }
}

/* Lightbox Overlay */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.lightbox-content {
    position: relative;
    max-width: 95vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.9), 0 0 20px var(--gold-glow);
    object-fit: contain;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Completed Screen Luxury Box */
.completed-luxury-box {
    padding: 30px 20px;
    background: var(--bg-surface);
    border: 1.5px solid var(--border-gold);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.completed-icon-ring {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
    animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounceIn {
    0% { transform: scale(0.3); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}

.completed-title {
    font-family: var(--font-serif);
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.completed-highlight-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 1.5px solid var(--gold-primary);
    border-radius: var(--radius-md);
    padding: 16px;
    margin: 20px 0;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
    text-align: left;
}

.completed-highlight-banner i {
    font-size: 24px;
    color: var(--gold-light);
    flex-shrink: 0;
    animation: bellRing 2s infinite ease-in-out;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(14deg); }
    20%, 40% { transform: rotate(-14deg); }
    50% { transform: rotate(0); }
}

.completed-highlight-text {
    font-size: 15px;
    color: #fff;
    line-height: 1.4;
}

.completed-highlight-text strong {
    color: var(--gold-light);
    font-size: 15.5px;
}

.completed-subtext {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.completed-details-card {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 18px;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.detail-row span {
    color: var(--text-muted);
}

.detail-row strong {
    color: var(--text-primary);
}
/* ==========================================================================
   SIMULATION PREVIEW: GIFT BOX, BADGES & BUSINESS FOOTER
   ========================================================================== */

.sim-hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 6px 16px;
    border-radius: 30px;
    color: #fde68a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 0 auto 12px;
    width: fit-content;
}

.sim-warm-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 14px;
    padding: 14px 16px;
    text-align: center;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.sim-warm-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-style: italic;
    line-height: 1.55;
    color: #e2e8f0;
}

.sim-section-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.sim-video-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    background: #000;
    margin-bottom: 22px;
}

.sim-video-container video {
    width: 100%;
    max-height: 240px;
    display: block;
}

/* Scroll down prompt */
.sim-scroll-prompt {
    text-align: center;
    margin: 20px 0 15px;
}

.sim-scroll-prompt p {
    font-size: 12px;
    font-weight: 600;
    color: #fde68a;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.sim-bounce-arrow {
    color: var(--gold-primary);
    font-size: 16px;
    animation: simBounce 1.6s infinite ease-in-out;
}

@keyframes simBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ==========================================================================
   EDGE LASER BEAMS IN SIMULATOR VIEWPORT
   ========================================================================== */
.sim-edge-laser {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
    contain: strict;
}
.sim-edge-laser.sim-edge-left {
    left: 0;
    box-shadow: 1px 0 8px var(--sim-primary-color, #e11d48), 2px 0 14px var(--sim-gold-color, #ffd700);
}
.sim-edge-laser.sim-edge-right {
    right: 0;
    box-shadow: -1px 0 8px var(--sim-primary-color, #e11d48), -2px 0 14px var(--sim-gold-color, #ffd700);
}
.sim-edge-laser::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to bottom, transparent, #ffffff, transparent);
    will-change: transform;
    transform: translate3d(0, -35%, 0);
}
.sim-edge-laser.sim-edge-left::after {
    animation: simLaserDown 2.8s linear infinite;
}
.sim-edge-laser.sim-edge-right::after {
    animation: simLaserUp 2.8s linear infinite;
}
@keyframes simLaserDown {
    0% { transform: translate3d(0, -35%, 0); }
    100% { transform: translate3d(0, 100%, 0); }
}
@keyframes simLaserUp {
    0% { transform: translate3d(0, 100%, 0); }
    100% { transform: translate3d(0, -35%, 0); }
}

/* ==========================================================================
   3D LUXURY ENVELOPE SIMULATION (PURE CSS INTERACTIVE)
   ========================================================================== */
.sim-envelope-section {
    margin: 24px 0 35px;
    text-align: center;
    position: relative;
    z-index: 5;
}

.sim-envelope-prompt {
    font-family: var(--font-serif);
    font-size: 15px;
    color: #fef08a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-shadow: 0 0 10px rgba(254, 240, 138, 0.4);
}

.sim-envelope-wrap {
    position: relative;
    width: 260px;
    height: 175px;
    margin: 0 auto;
    cursor: pointer;
    perspective: 1200px;
}

.sim-envelope {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, var(--sim-envelope-1, #2a040d), var(--sim-envelope-2, #180207));
}

/* Flap top */
.sim-envelope::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 85px 130px 0 130px;
    border-color: var(--sim-envelope-2, #180207) transparent transparent transparent;
    transform-origin: top;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 3;
}

/* Bottom fold */
.sim-envelope::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 130px 85px 130px;
    border-color: transparent transparent var(--sim-envelope-1, #2a040d) transparent;
    z-index: 1;
}

.sim-wax-seal {
    position: absolute;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), 0 0 12px rgba(212, 175, 55, 0.5);
    font-size: 18px;
    color: #fff;
    background: radial-gradient(circle, #f59e0b, #b45309);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: opacity 0.4s, transform 0.3s;
}

.sim-envelope-wrap:hover .sim-wax-seal {
    transform: scale(1.08);
}

.sim-letter-card {
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    background: #fffdf8;
    border-radius: 12px;
    padding: 16px 14px;
    z-index: 2;
    color: #1e1b18;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(0);
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
    border: 1.5px solid #d4af37;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    text-align: center;
}

.sim-letter-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    border: none;
    color: #71717a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}
.sim-letter-close:hover {
    background: #e11d48;
    color: #fff;
}

.sim-unfolding-inner {
    border: 1px dashed rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    padding: 12px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sim-card-floral-top {
    font-size: 20px;
    color: #b45309;
    margin-bottom: 4px;
}

.sim-letter-note {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    line-height: 1.6;
    color: #27272a;
    white-space: pre-wrap;
    word-break: break-word;
    flex: 1;
    overflow-y: auto;
    margin: 6px 0;
}

.sim-letter-signature {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.sim-sender-info {
    font-size: 12px;
    color: #71717a;
    text-align: right;
}

.sim-sender-info strong {
    display: block;
    color: #18181b;
}

.sim-wax-seal-mini {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: radial-gradient(circle, #f59e0b, #b45309);
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Envelope Open State */
.sim-envelope-wrap.is-open .sim-envelope::before {
    transform: rotateX(180deg);
    z-index: 1;
}

.sim-envelope-wrap.is-open .sim-wax-seal {
    opacity: 0;
    pointer-events: none;
}

.sim-envelope-wrap.is-open .sim-letter-card {
    transform: translateY(-90px) scale(1.05);
    opacity: 1;
    z-index: 6;
    height: 270px;
    pointer-events: auto;
    box-shadow: 0 18px 45px rgba(0,0,0,0.7);
}

/* Simulation Business Footer */
.sim-business-footer {
    margin-top: 35px;
    background: rgba(18, 11, 28, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 18px;
    padding: 20px 16px;
    text-align: center;
    margin-bottom: 18px;
}

.sim-biz-logo {
    max-height: 40px;
    max-width: 120px;
    object-fit: contain;
    margin-bottom: 8px;
}

.sim-biz-name {
    font-family: var(--font-serif);
    font-size: 17px;
    color: #fff;
    margin-bottom: 4px;
}

.sim-biz-sub {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 14px;
}

.sim-biz-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.sim-action-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    color: #cbd5e1;
}
/* Additional Simulation Styles for Blurred Video & Horizontal Slider */
.sim-video-container.is-blurred video {
    filter: blur(12px) brightness(0.7);
    transform: scale(1.05);
}

.sim-video-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.sim-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.4s;
}

.sim-play-pulse-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    padding-left: 3px;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.7);
}

.sim-play-lbl {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.sim-slider-viewport {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    background: #000;
}

.sim-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sim-slide-item {
    min-width: 100%;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.sim-slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sim-dots-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sim-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.sim-dot.active {
    width: 18px;
    border-radius: 10px;
    background: #f59e0b;
}

.sim-unfolding-card.card-revealed {
    display: block;
    animation: shootUpLetterSim 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes shootUpLetterSim {
    0% { opacity: 0; transform: translateY(70px) scale(0.3) rotate(5deg); }
    60% { opacity: 1; transform: translateY(-20px) scale(1.04) rotate(-2deg); }
    100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}

/* Live Smartphone Frame Preview for Step 4 */
.sim-phone-frame-wrapper {
    position: relative;
    max-width: 440px;
    width: 100%;
    margin: 0 auto 24px;
    height: 740px;
    border-radius: 38px;
    background: #08040f;
    border: 3px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(212, 175, 55, 0.2);
    overflow: hidden;
}

.sim-phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 18px;
    background: #000000;
    border-radius: 12px;
    z-index: 20;
    pointer-events: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.sim-digital-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 35px;
    display: block;
    background: #08040f;
}

@media (max-width: 480px) {
    .sim-phone-frame-wrapper {
        height: 640px;
        border-radius: 28px;
        border-width: 2px;
    }
    .sim-phone-notch {
        width: 100px;
        height: 16px;
        top: 8px;
    }
    .sim-digital-iframe {
        border-radius: 26px;
    }
}

/* ==========================================================================
   STEP 3: SEGMENTED MEDIA NAVIGATION & PRESET MUSIC CARDS
   ========================================================================== */

/* Top 3 Segmented Nav (Fotoğraf Ekle, Video Ekle, Müzik Ekle) */
.media-segmented-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background: rgba(20, 14, 31, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 16px;
    padding: 6px;
    margin-bottom: 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.media-nav-tab {
    position: relative;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 12px 6px;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.media-nav-tab-icon {
    font-size: 20px;
    line-height: 1;
    color: #cbd5e1;
    transition: transform 0.2s ease, color 0.2s ease;
}

.media-nav-tab-title {
    font-family: var(--font-sans, 'Inter', sans-serif);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.media-tab-count-badge {
    position: absolute;
    top: 6px;
    right: 8px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.4);
}

.media-nav-tab:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

.media-nav-tab.is-active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22) 0%, rgba(170, 130, 10, 0.15) 100%);
    border-color: rgba(212, 175, 55, 0.5);
    color: #fbe69e;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.18);
}

.media-nav-tab.is-active .media-nav-tab-icon {
    color: #d4af37;
    transform: scale(1.12);
}

.media-nav-tab.is-active .media-nav-tab-title {
    color: #ffffff;
    font-weight: 700;
}

/* Panel transitions */
.media-panel-section {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Preset Music Grid (6 items) */
.preset-music-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.preset-music-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 14px;
    padding: 12px 14px;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    -webkit-tap-highlight-color: transparent;
}

.preset-music-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-1px);
}

.preset-music-card.is-selected {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.16) 0%, rgba(20, 14, 31, 0.8) 100%);
    border-color: #d4af37;
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.25), inset 0 0 12px rgba(212, 175, 55, 0.08);
}

.preset-music-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #fbe69e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
}

.preset-music-card.is-selected .preset-music-icon {
    background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
    color: #140e1f;
    border-color: #d4af37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.35);
}

.preset-music-content {
    flex: 1;
    min-width: 0;
}

.preset-music-name {
    font-size: 14px;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preset-music-card.is-selected .preset-music-name {
    color: #fbe69e;
    font-weight: 700;
}

.preset-music-tag {
    font-size: 11.5px;
    color: #94a3b8;
}

.preset-music-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Test Audio Button (Dinle / Durdur) */
.btn-preset-test {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 7px 12px;
    color: #cbd5e1;
    font-size: 11.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
}

.btn-preset-test:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.btn-preset-test.is-playing {
    background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%);
    border-color: #f43f5e;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(244, 63, 94, 0.45);
    animation: pulsePlay 1.2s infinite ease-in-out;
}

@keyframes pulsePlay {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Select Button */
.btn-preset-select {
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 20px;
    padding: 7px 14px;
    color: #fbe69e;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.btn-preset-select:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: #d4af37;
}

.btn-preset-select.is-selected {
    background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
    border-color: #d4af37;
    color: #140e1f;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.35);
}

/* Reset / Clear Music Button */
.btn-reset-music {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 8px 16px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-reset-music:hover {
    background: rgba(244, 63, 94, 0.12);
    border-color: rgba(244, 63, 94, 0.35);
    color: #fca5a5;
}

/* Floating Mini YouTube Audio Player */
.preset-yt-floating-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    background: rgba(18, 12, 28, 0.96);
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.25);
    backdrop-filter: blur(16px);
    max-width: 360px;
    width: calc(100% - 40px);
    animation: slideUpFloating 0.3s ease-out;
}
@keyframes slideUpFloating {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.preset-yt-player-body {
    display: flex;
    align-items: center;
    gap: 12px;
}
.preset-yt-video-wrap {
    width: 68px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
}
.preset-yt-video-wrap iframe,
.preset-yt-video-wrap div {
    width: 100% !important;
    height: 100% !important;
}
.preset-yt-info {
    flex: 1;
    min-width: 0;
}
.preset-yt-title {
    font-size: 13px;
    font-weight: 700;
    color: #fbe69e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 6px;
}
.preset-yt-status {
    font-size: 11px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
}
.pulse-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #22c55e;
    animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}
.btn-preset-yt-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}
.btn-preset-yt-close:hover {
    background: rgba(239, 68, 68, 0.25);
    border-color: rgba(239, 68, 68, 0.5);
    color: #fca5a5;
}