/* ============================================
   WEDDING PACKAGE FINDER - CELEBRATORY UI
   Rich, elegant, inspiring design for brides
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,700;0,9..40,800;1,9..40,400&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&display=swap');

:root {
    /* Wedding Colors - Gold & Celebration */
    --gold-primary: #D4AF37;
    --gold-light: #F4E5B8;
    --gold-dark: #B8941F;
    --rose-gold: #ECC5C0;
    --blush: #FFF5F7;
    --maroon: #8B1538;
    --ivory: #FFFFF0;
    
    /* Elegant Neutrals */
    --charcoal: #2C2C2C;
    --warm-grey: #3A3A3A;  /* Darkened further for better readability */
    --soft-white: #FAFAFA;
    
    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(212, 175, 55, 0.1);
    --shadow-strong: 0 8px 40px rgba(212, 175, 55, 0.2);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

/* ICONIC CLICKS BRAND HEADER - Bold & Powerful */
.iconic-brand-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    animation: brandFadeIn 0.8s ease-out;
}

@keyframes brandFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.brand-aperture-left,
.brand-aperture-right {
    font-size: 3.5em;
    color: var(--gold-primary);
    font-weight: 300;
    animation: aperturePulse 2.5s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.brand-aperture-left {
    animation-delay: 0s;
}

.brand-aperture-right {
    animation-delay: 1.25s;
}

@keyframes aperturePulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

.brand-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.8em;
    font-weight: 800;
    color: #2C2C2C;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 0 rgba(212, 175, 55, 0.15);
    position: relative;
}

.brand-underline {
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--gold-light) 0%,
        var(--gold-primary) 50%,
        var(--gold-light) 100%
    );
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.brand-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95em;
    font-weight: 500;
    color: #4A4A4A;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    margin-top: 5px;
}

/* Hover effect - powerful impact */
.iconic-brand-header:hover .brand-name {
    color: var(--gold-dark);
    text-shadow: 
        3px 3px 0 rgba(212, 175, 55, 0.2),
        0 0 20px rgba(212, 175, 55, 0.3);
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.iconic-brand-header:hover .brand-underline {
    height: 5px;
    box-shadow: 0 3px 15px rgba(212, 175, 55, 0.6);
    transition: all 0.3s ease;
}

.iconic-brand-header:hover .brand-aperture-left,
.iconic-brand-header:hover .brand-aperture-right {
    color: var(--gold-dark);
    transform: scale(1.15);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.7);
    transition: all 0.3s ease;
}

/* Responsive brand header */
@media (max-width: 768px) {
    .iconic-brand-header {
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .brand-aperture-left,
    .brand-aperture-right {
        font-size: 2.5em;
    }
    
    .brand-name {
        font-size: 2.5em;
        letter-spacing: 6px;
    }
    
    .brand-tagline {
        font-size: 0.8em;
        letter-spacing: 1.5px;
    }
    
    .brand-underline {
        height: 3px;
    }
}

@media (max-width: 480px) {
    .iconic-brand-header {
        gap: 15px;
    }
    
    .brand-aperture-left,
    .brand-aperture-right {
        font-size: 2em;
    }
    
    .brand-name {
        font-size: 1.8em;
        letter-spacing: 4px;
    }
    
    .brand-tagline {
        font-size: 0.7em;
        letter-spacing: 1px;
    }
}

.package-wizard-container {
    min-height: 100vh;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 197, 192, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 240, 0.3) 0%, transparent 40%),
        linear-gradient(135deg, 
            #FFF9F0 0%, 
            #FFFAF5 25%,
            #FFF5F7 50%, 
            #FFFEF8 75%,
            #FFFFF0 100%);
    padding: 60px 20px;
    font-family: var(--font-body);
    position: relative;
    overflow-x: hidden;
}

/* Floating wedding elements animation */
.package-wizard-container::before {
    content: '✨';
    position: absolute;
    font-size: 30px;
    animation: floatSparkle 15s infinite;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes floatSparkle {
    0%, 100% {
        transform: translate(10vw, 10vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% {
        transform: translate(90vw, 90vh) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================
   HEADER - WARM & WELCOMING
   ============================================ */

.wizard-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.wizard-header::before {
    content: '🌸';
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    font-size: 50px;
    animation: gentleBounce 3s ease-in-out infinite;
}

@keyframes gentleBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Camera Flash Animation for Iconic Clicks */
@keyframes cameraFlash {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
    100% {
        opacity: 0;
        transform: scale(2);
    }
}

@keyframes shutterClick {
    0%, 100% {
        clip-path: inset(0 0 0 0);
    }
    50% {
        clip-path: inset(0 50% 0 50%);
    }
}

/* Flash overlay for option selections */
.flash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    animation: cameraFlash 0.4s ease-out;
}

.option-card.flash-effect {
    animation: shutterClick 0.3s ease-out;
}

.wizard-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 600;
    color: var(--maroon);
    margin: 0 0 15px 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

.wizard-title .gold-text {
    color: var(--gold-primary);
    font-weight: 700;
}

.wizard-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--warm-grey);
    font-weight: 400;  /* Increased from 300 for better readability */
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   PROGRESS BAR - ELEGANT & CLEAR
   ============================================ */

.progress-container {
    max-width: 900px;
    margin: 0 auto 50px;
    background: white;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #E8E8E8 0%, #E8E8E8 100%);
    z-index: 1;
}

.progress-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to right, var(--gold-primary), var(--rose-gold));
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.progress-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 3px solid #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--warm-grey);
    transition: all 0.3s ease;
}

.step-circle.active {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    border-color: var(--gold-primary);
    color: white;
    box-shadow: var(--shadow-glow);
    transform: scale(1.1);
}

.step-circle.completed {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: white;
}

.step-circle.completed::before {
    content: '✓';
    font-weight: bold;
}

.step-label {
    font-size: 13px;
    color: var(--warm-grey);
    text-align: center;
    max-width: 80px;
    font-weight: 500;
}

.step-circle.active ~ .step-label {
    color: var(--gold-dark);
    font-weight: 600;
}

/* ============================================
   WIZARD FORM - SPACIOUS & BEAUTIFUL
   ============================================ */

.wizard-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-strong);
    position: relative;
}

.wizard-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--gold-primary), var(--rose-gold), var(--gold-primary));
    border-radius: 25px 25px 0 0;
}

.wizard-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.wizard-step.active {
    display: block;
}

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

/* ============================================
   QUESTION STYLING - WARM & INVITING
   ============================================ */

.question-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--maroon);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.question-subtitle {
    font-size: 16px;
    color: var(--warm-grey);
    margin: 0 0 40px 0;
    line-height: 1.6;
    font-weight: 400;  /* Increased from 300 for better readability */
}

.question-subtitle .highlight {
    color: var(--gold-dark);
    font-weight: 500;
}

/* ============================================
   OPTION CARDS - ELEGANT & TOUCHABLE
   ============================================ */

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.option-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border: 2px solid #E8E8E8;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--rose-gold) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
    border-color: var(--gold-light);
}

.option-card:hover::before {
    opacity: 0.1;
}

.option-card.selected {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.option-card.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: white;
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.option-icon {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.option-card:hover .option-icon,
.option-card.selected .option-icon {
    filter: grayscale(0%);
}

.option-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--charcoal);
    margin: 0 0 8px 0;
    position: relative;
    z-index: 1;
}

.option-card.selected .option-title {
    color: white;
}

.option-description {
    font-size: 14px;
    color: var(--warm-grey);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.option-card.selected .option-description {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   CHECKBOX OPTIONS - MULTI-SELECT
   ============================================ */

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.checkbox-option {
    background: white;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-option:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-soft);
}

.checkbox-option.selected {
    background: linear-gradient(135deg, #FFF9F0 0%, var(--blush) 100%);
    border-color: var(--gold-primary);
}

.checkbox-option input[type="checkbox"] {
    width: 22px;
    height: 22px;
    border: 2px solid #CCC;
    border-radius: 5px;
    cursor: pointer;
    accent-color: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-content {
    flex: 1;
}

.checkbox-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin: 0 0 5px 0;
}

.checkbox-description {
    font-size: 14px;
    color: var(--warm-grey);
    line-height: 1.5;
    margin: 0;
}

.checkbox-note {
    font-size: 13px;
    color: var(--gold-dark);
    font-weight: 500;
    margin-top: 8px;
    font-style: italic;
}

/* Pre-selected / Included badge */
.included-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   FORM INPUTS - CLEAN & ELEGANT
   ============================================ */

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
    display: block;
}

.form-input,
.form-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: white;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* ============================================
   NAVIGATION BUTTONS
   ============================================ */

.wizard-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.btn {
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-previous {
    background: #f0f0f0;
    color: #555;
    border-color: #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.btn-previous:hover {
    background: #e4e4e4;
    color: #333;
    border-color: #bbb;
    box-shadow: 0 4px 14px rgba(0,0,0,0.13);
    transform: translateY(-1px);
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 100%);
    color: #f1c40f;
    border-color: #d4af37;
    box-shadow:
        0 8px 24px rgba(0,0,0,0.35),
        0 2px 8px rgba(212,175,55,0.20),
        inset 0 1px 0 rgba(255,255,255,0.07);
    letter-spacing: 1.5px;
    font-size: 15px;
    padding: 18px 52px;
    min-width: 200px;
}

.btn-next::after,
.btn-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0) 0%, rgba(212,175,55,0.08) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.btn-next:hover,
.btn-submit:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f1c40f 100%);
    color: #1a1a1a;
    border-color: #f1c40f;
    box-shadow:
        0 12px 32px rgba(212,175,55,0.40),
        0 4px 14px rgba(0,0,0,0.20),
        inset 0 1px 0 rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.btn-next:hover::after,
.btn-submit:hover::after {
    opacity: 1;
}

.btn-next:active,
.btn-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(212,175,55,0.30);
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .wizard-title {
        font-size: 36px;
    }
    
    .wizard-form {
        padding: 30px 20px;
    }
    
    .question-title {
        font-size: 26px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-container {
        padding: 20px;
    }
    
    .step-label {
        font-size: 10px;
        max-width: 60px;
    }
    
    .wizard-navigation {
        flex-direction: column-reverse;
    }
    
    .btn {
        width: 100%;
    }
}

/* Review/Verification Screen Styles */
.review-container {
    max-width: 800px;
    margin: 0 auto;
}

.review-section {
    background: white;
    border: 2px solid var(--blush);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.review-section:hover {
    border-color: var(--rose-gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--blush);
}

.review-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--charcoal);
    margin: 0;
}

.btn-edit {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-edit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.review-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-item {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 0;
}

.review-label {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 15px;
    min-width: 150px;
}

.review-value {
    color: var(--warm-grey);
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

/* Album Print Types Tooltip */
.album-tooltip {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 3px solid var(--gold-primary);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Dynamic Coverage Follow-up Questions */
.coverage-followup {
    margin-top: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #FFF9E6, #FFF5E6);
    border-radius: 12px;
    border-left: 4px solid var(--gold-primary);
    animation: slideDown 0.3s ease;
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.followup-question {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.followup-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--gold-dark);
    line-height: 1.6;
}

.followup-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.followup-radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 15px;
    background: white;
    border-radius: 8px;
    border: 2px solid var(--blush);
    transition: all 0.3s ease;
}

.followup-radio-option:hover {
    border-color: var(--gold-primary);
    background: var(--blush);
}

.followup-radio-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold-primary);
    cursor: pointer;
}

.followup-radio-option span {
    font-size: 14px;
    color: var(--charcoal);
    font-weight: 500;
}

.followup-number {
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 2px solid var(--rose-gold);
}

.followup-number label {
    font-size: 14px;
    color: var(--charcoal);
    font-weight: 500;
}

.followup-number input {
    padding: 8px 12px;
    border: 2px solid var(--blush);
    border-radius: 6px;
    font-size: 14px;
}

.followup-number input:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.tooltip-header {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: white;
    padding: 20px;
    border-radius: 17px 17px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tooltip-header h4 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 600;
}

.tooltip-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 30px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.tooltip-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.tooltip-content {
    padding: 25px;
}

.print-type {
    padding: 15px;
    margin-bottom: 15px;
    background: var(--blush);
    border-radius: 12px;
    border-left: 4px solid var(--gold-primary);
    transition: all 0.3s ease;
}

.print-type:hover {
    background: var(--rose-gold);
    transform: translateX(5px);
}

.print-type-name {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 16px;
    margin-bottom: 8px;
}

.print-type-desc {
    color: var(--warm-grey);
    font-size: 14px;
    line-height: 1.6;
}

.tooltip-note {
    padding: 15px;
    background: linear-gradient(135deg, #FFF9E6, #FFF5E6);
    border-radius: 12px;
    border: 2px solid var(--gold-primary);
    margin-top: 10px;
    font-size: 14px;
    color: var(--charcoal);
}

.tooltip-note strong {
    color: var(--gold-dark);
}

.info-icon {
    display: inline-block;
    transition: all 0.3s ease;
}

.info-icon:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .review-section {
        padding: 20px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .review-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .review-label {
        min-width: auto;
    }
    
    .album-tooltip {
        width: 95%;
        max-height: 90vh;
    }
    
    .tooltip-header h4 {
        font-size: 20px;
    }
    
    /* Additional mobile optimizations */
    .package-wizard-container {
        padding: 30px 15px;
    }
    
    .wizard-header {
        margin-bottom: 40px;
    }
    
    .wizard-header::before {
        font-size: 35px;
        top: -30px;
    }
    
    .wizard-title {
        font-size: 2em;
    }
    
    .wizard-subtitle {
        font-size: 1em;
    }
    
    .progress-container {
        margin-bottom: 40px;
    }
    
    .step-label {
        font-size: 11px;
    }
    
    .question-title {
        font-size: 1.8em;
    }
    
    .question-subtitle {
        font-size: 1em;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .option-card {
        padding: 20px;
    }
    
    .option-icon {
        font-size: 2.5em;
    }
    
    .option-title {
        font-size: 1.1em;
    }
    
    .checkboxes-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .checkbox-option {
        padding: 15px;
    }
    
    .checkbox-title {
        font-size: 1em;
    }
    
    .form-group label {
        font-size: 0.95em;
    }
    
    .form-input,
    .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .wizard-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .wizard-actions .btn {
        width: 100%;
        padding: 16px;
        font-size: 1em;
    }
    
    .followup-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .followup-radio-option {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .package-wizard-container {
        padding: 20px 12px;
    }
    
    .wizard-header::before {
        font-size: 30px;
        top: -25px;
    }
    
    .wizard-title {
        font-size: 1.6em;
        line-height: 1.3;
    }
    
    .wizard-subtitle {
        font-size: 0.9em;
        line-height: 1.5;
    }
    
    .progress-step {
        min-width: 50px;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .step-label {
        font-size: 10px;
        max-width: 50px;
    }
    
    .question-title {
        font-size: 1.5em;
        line-height: 1.3;
    }
    
    .question-subtitle {
        font-size: 0.9em;
    }
    
    .option-card {
        padding: 18px;
    }
    
    .option-icon {
        font-size: 2.2em;
    }
    
    .option-title {
        font-size: 1em;
    }
    
    .option-description {
        font-size: 0.85em;
    }
    
    .checkbox-option {
        padding: 12px;
    }
    
    .checkbox-icon {
        font-size: 1.8em;
    }
    
    .checkbox-title {
        font-size: 0.95em;
    }
    
    .checkbox-description {
        font-size: 0.8em;
    }
    
    .coverage-followup {
        padding: 15px;
    }
    
    .followup-label {
        font-size: 0.9em;
    }
    
    .review-group h3 {
        font-size: 1.2em;
    }
    
    .review-label,
    .review-value {
        font-size: 0.9em;
    }
    
    .btn-edit {
        font-size: 0.85em;
        padding: 6px 12px;
    }
    
    .muhurtham-alert {
        padding: 15px;
    }
    
    .muhurtham-icon {
        font-size: 2em;
    }
    
    .muhurtham-title {
        font-size: 1em;
    }
    
    .muhurtham-message {
        font-size: 0.85em;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    /* For touch devices */
    .option-card,
    .checkbox-option,
    .btn {
        min-height: 44px; /* Apple's recommended minimum touch target */
    }
    
    .option-card {
        padding: 20px;
    }
    
    .checkbox-option {
        padding: 16px;
    }
    
    .btn {
        padding: 16px 30px;
    }
    
    /* Remove hover effects on touch devices */
    .option-card:hover,
    .checkbox-option:hover {
        transform: none;
    }
    
    /* Better active states for touch */
    .option-card:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }
    
    .checkbox-option:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }
    
    .btn:active {
        transform: translateY(1px);
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .package-wizard-container {
        padding: 20px 15px;
    }
    
    .wizard-header {
        margin-bottom: 30px;
    }
    
    .wizard-header::before {
        display: none;
    }
    
    .progress-container {
        margin-bottom: 30px;
    }
    
    .wizard-title {
        font-size: 1.8em;
    }
    
    .question-title {
        font-size: 1.6em;
    }
}

/* ============================================
   PREMIUM FLOATING LOOK ENHANCEMENTS
   ============================================ */

.package-wizard-container::after {
    content: '🪔';
    position: absolute;
    right: 6vw;
    top: 12vh;
    font-size: 28px;
    opacity: 0.25;
    pointer-events: none;
    animation: floatingDiya 11s ease-in-out infinite;
}

@keyframes floatingDiya {
    0%, 100% {
        transform: translateY(0px) rotate(-2deg);
    }
    50% {
        transform: translateY(-16px) rotate(2deg);
    }
}

.progress-container,
.wizard-form,
.review-section {
    backdrop-filter: blur(10px);
}

.progress-container {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 24px 50px rgba(139, 21, 56, 0.12), 0 8px 20px rgba(212, 175, 55, 0.18);
}

.wizard-form {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 24px 50px rgba(139, 21, 56, 0.12), 0 8px 20px rgba(212, 175, 55, 0.18);
}

.review-section {
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 24px rgba(139, 21, 56, 0.08), 0 4px 10px rgba(212, 175, 55, 0.1);
}

.review-section:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 16px 30px rgba(139, 21, 56, 0.1), 0 8px 14px rgba(212, 175, 55, 0.16);
}

.heritage-pill-row {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.heritage-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.66);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--maroon);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.4px;
    font-weight: 600;
}

.investment-summary-card {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 245, 240, 0.9) 45%, rgba(255, 250, 240, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 18px;
    box-shadow: 0 24px 50px rgba(139, 21, 56, 0.12), 0 8px 20px rgba(212, 175, 55, 0.18);
    padding: 22px 24px;
    margin-bottom: 22px;
}

.investment-title {
    font-family: var(--font-heading);
    color: var(--maroon);
    font-weight: 700;
    font-size: 30px;
    line-height: 1.1;
}

.investment-subtitle {
    color: var(--warm-grey);
    font-size: 14px;
    margin-top: 6px;
    margin-bottom: 14px;
}

.investment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    color: var(--charcoal);
    border-bottom: 1px dashed rgba(212, 175, 55, 0.35);
}

.investment-row.total {
    font-size: 20px;
    font-weight: 700;
    color: var(--maroon);
    border-bottom: 1px solid rgba(212, 175, 55, 0.6);
    margin-top: 4px;
}

.investment-row.deposit {
    border-bottom: none;
    color: var(--gold-dark);
    font-weight: 600;
}

.investment-note {
    margin: 10px 0 0;
    color: var(--warm-grey);
    font-size: 12px;
}

/* ═══════════════════════════════════════════════════
   STEP 4 — QUALITY COMPARISON CARDS
   ═══════════════════════════════════════════════════ */

/* Make checkbox tiles in Step 4 coverage grid look better (non-coverage-tile checkboxes only) */
.wizard-step[data-step="4"] .checkbox-option:not(.coverage-tile) {
    border-radius: 14px;
    transition: border-color .2s, box-shadow .2s, transform .15s;
}
.wizard-step[data-step="4"] .checkbox-option:not(.coverage-tile):hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212,175,55,.18);
}
.wizard-step[data-step="4"] .checkbox-option:not(.coverage-tile).selected {
    border-color: var(--gold-primary);
    background: linear-gradient(145deg, #fffdf5, #fffbe6);
    box-shadow: 0 6px 20px rgba(212,175,55,.22);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .heritage-pill {
        font-size: 11px;
        padding: 7px 12px;
    }

    .investment-title {
        font-size: 26px;
    }

    /* Quality cards stack on mobile */
    .quality-cards-row {
        grid-template-columns: 1fr !important;
    }

    /* Coverage grid single column on mobile */
    .wizard-step[data-step="4"] .checkbox-grid {
        grid-template-columns: 1fr !important;
    }

    .quality-card {
        padding: 22px 18px !important;
    }

    .quality-card-title {
        font-size: 17px !important;
    }
}

@media (max-width: 480px) {
    .quality-cards-row {
        gap: 12px !important;
    }

    .step-number-badge {
        width: 32px !important;
        height: 32px !important;
        font-size: 15px !important;
    }

    .step-label-text h3 {
        font-size: 15px !important;
    }
}


/* ============================================================
   V3 — "The Wedding Journey" Redesign
   Warmer fonts · Photo tiles · Live price bar · Confetti
   ============================================================ */

/* ── Override font + root vars ── */
:root {
    --font-heading: 'Playfair Display', 'Cormorant Garamond', serif;
    --font-body:    'DM Sans', 'Montserrat', sans-serif;
    --cream-bg:     #fdf6ef;
    --warm-ink:     #2d1f14;
    --warm-mid:     #7a6050;
    --warm-light:   #b39880;
}

/* ── Page background: warm cream ── */
.package-wizard-container {
    background: var(--cream-bg) !important;
}

/* ── Override wizard title ── */
.wizard-title {
    font-family: var(--font-heading) !important;
    font-size: 42px !important;
    color: var(--warm-ink) !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
}
@media (max-width: 600px) {
    .wizard-title { font-size: 28px !important; }
}

/* ── Override wizard subtitle ── */
.wizard-subtitle {
    font-family: var(--font-body) !important;
    font-size: 17px !important;
    color: #5a4535 !important;
    line-height: 1.65 !important;
    font-weight: 400 !important;
}

/* ── Override question headings ── */
.question-title {
    font-family: var(--font-body) !important;
    font-size: 26px !important;
    color: var(--warm-ink) !important;
    line-height: 1.3 !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
    letter-spacing: -0.3px !important;
}
.question-subtitle {
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    color: var(--warm-mid) !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
    margin-bottom: 24px !important;
}

/* ── Planner quote block ── */
.step-planner-quote {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.03));
    border-left: 3px solid #d4af37;
    border-radius: 0 12px 12px 0;
    padding: 14px 18px;
    margin-bottom: 26px;
    animation: plannerQuoteFade 0.5s ease-out both;
}
.step-planner-quote-avatar { font-size: 26px; flex-shrink: 0; line-height: 1.2; }
.step-planner-quote-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: #6b4c30;
    line-height: 1.65;
    font-style: italic;
    font-weight: 400;
}
@keyframes plannerQuoteFade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Step enter slide-in animation ── */
@keyframes wizardStepEnter {
    from { opacity: 0; transform: translateX(28px); }
    to   { opacity: 1; transform: translateX(0); }
}
.wizard-step.step-entering {
    animation: wizardStepEnter 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* ── Clean Option Cards (Step 3 guest count) ── */
.option-card.photo-card {
    position: relative;
    min-height: 155px;
    border-radius: 18px;
    border: 2px solid #e8e2da !important;
    background: #ffffff !important;
    cursor: pointer;
    padding: 28px 20px 24px !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
}
.option-card.photo-card::before,
.option-card.photo-card::after { display: none !important; }
.option-card.photo-card > * { position: static !important; }
.option-card.photo-card .option-icon { font-size: 44px !important; filter: none !important; line-height: 1.2 !important; }
.option-card.photo-card .option-title {
    color: #2d1f14 !important;
    font-size: 18px !important;
    font-family: var(--font-body) !important;
    font-weight: 800 !important;
    text-shadow: none !important;
    margin-bottom: 6px !important;
}
.option-card.photo-card .option-description {
    color: #7a6a5a !important;
    font-size: 13px !important;
    text-shadow: none !important;
    line-height: 1.5 !important;
}
.option-card.photo-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 12px 32px rgba(212,175,55,0.18), 0 0 0 2px rgba(212,175,55,0.35) !important;
    border-color: rgba(212,175,55,0.5) !important;
    background: #fffbf0 !important;
}
.option-card.photo-card.selected {
    border-color: #d4af37 !important;
    background: linear-gradient(135deg, #fffbee, #fff8d6) !important;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.3), 0 10px 28px rgba(212,175,55,0.22) !important;
    transform: translateY(-5px) scale(1.02) !important;
}

/* ── Clean Event Tiles (V3 — no gallery photos) ── */
.event-tile:not(#addCustomEventTile) {
    background: #ffffff !important;
    border: 2px solid #e8e2da !important;
    border-radius: 18px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06) !important;
    min-height: 155px !important;
    padding: 22px 14px 18px !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease !important;
}
.event-tile .event-tile-title {
    color: #2d1f14 !important;
    text-shadow: none !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    font-family: var(--font-body) !important;
    line-height: 1.3 !important;
}
.event-tile .event-tile-tag {
    color: #9a8070 !important;
    text-shadow: none !important;
    font-size: 11px !important;
}
.event-tile .event-tile-icon {
    filter: none !important;
    font-size: 44px !important;
    display: block;
    margin-bottom: 10px;
}
.event-tile:not(#addCustomEventTile):hover {
    transform: translateY(-5px) !important;
    border-color: rgba(212,175,55,0.5) !important;
    background: #fffbf0 !important;
    box-shadow: 0 10px 28px rgba(212,175,55,0.18) !important;
}
.event-tile.selected {
    border-color: #d4af37 !important;
    background: linear-gradient(135deg, #fffbee, #fff8d6) !important;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.3), 0 10px 28px rgba(212,175,55,0.22) !important;
    transform: translateY(-5px) scale(1.02) !important;
}
.event-tile.selected .event-tile-check {
    display: flex !important;
    background: #d4af37 !important;
    color: #fff !important;
}
/* neutralise old photo-tile pseudo-elements */
.event-tile.photo-tile {
    position: relative;
    overflow: hidden;
    min-height: 165px;
}
.event-tile.photo-tile > * { position: relative; z-index: 2; }
.event-tile.photo-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: none !important;
    background-size: cover;
    background-position: center top;
    filter: none !important;
    border-radius: inherit;
    z-index: 0;
    display: none !important;
}
.event-tile.photo-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,4,4,0.9) 0%, rgba(12,4,4,0.3) 55%, transparent 100%);
    border-radius: inherit;
    z-index: 1;
}
.event-tile.photo-tile:hover::before { filter: none !important; transform: none !important; display: none !important; }
.event-tile.photo-tile.selected::before { filter: none !important; display: none !important; }

/* ── Clean Coverage Tiles (Step 4) ── */
.coverage-tile.checkbox-option {
    background: #ffffff !important;
    border: 2px solid #e8e2da !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07) !important;
    color: #2d1f14 !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease !important;
}
.coverage-tile.checkbox-option:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(212,175,55,0.5) !important;
    background: #fffbf0 !important;
    box-shadow: 0 8px 24px rgba(212,175,55,0.18) !important;
}
.coverage-tile.checkbox-option.selected {
    background: linear-gradient(135deg, #fffbee, #fff8d6) !important;
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.25), 0 8px 24px rgba(212,175,55,0.18) !important;
}
.coverage-tile .checkbox-title {
    color: #2d1f14 !important;
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}
.coverage-tile .coverage-tile-tag {
    color: #7a6a5a !important;
    font-size: 12px !important;
}
.coverage-tile .coverage-tile-check {
    background: #d4af37 !important;
    color: #fff !important;
    border: none !important;
}
.coverage-tile.checkbox-option:not(.selected) .coverage-tile-check {
    display: none !important;
}
.coverage-tile .coverage-tile-link {
    color: #b8860b !important;
    font-size: 11px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
}
.coverage-tile .coverage-tile-link:hover { color: #d4af37 !important; }
.coverage-tile .coverage-tile-divider {
    border-color: #e8e2da !important;
    opacity: 0.6 !important;
}
.coverage-tile .coverage-tile-icon {
    filter: none !important;
    font-size: 36px !important;
}
.coverage-quality-hint { color: #8a7a6a !important; }
.coverage-tile .quality-label {
    border-color: #d0c8bc !important;
    color: #6b5a4e !important;
}
.coverage-tile .quality-radio:checked + .quality-label {
    border-color: #d4af37 !important;
    color: #8a6500 !important;
    background: rgba(212,175,55,0.12) !important;
}

/* ── Live Price Bar ── */
.live-price-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #1a0e08, #2d1f14);
    border-top: 2px solid rgba(212,175,55,0.45);
    padding: 10px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.35);
    transform: translateY(100%);
    transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.live-price-bar.visible {
    transform: translateY(0);
}
.live-price-bar-left { display: flex; flex-direction: column; gap: 2px; }
.live-price-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.live-price-amount {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: #f1c40f;
    line-height: 1;
    min-width: 120px;
    transition: color 0.2s ease;
}
.live-price-amount.bumping {
    animation: priceNumberBump 0.38s ease-out both;
}
@keyframes priceNumberBump {
    0%   { transform: scale(1);    color: #f1c40f; }
    38%  { transform: scale(1.18); color: #fff; }
    100% { transform: scale(1);    color: #f1c40f; }
}
.live-price-note {
    font-family: var(--font-body);
    font-size: 10px;
    color: rgba(255,255,255,0.32);
    font-style: italic;
}
.live-price-bar-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}
.live-price-bar-right .lp-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    color: rgba(212,175,55,0.8);
}
.live-price-bar-right .lp-tagline {
    font-family: var(--font-body);
    font-size: 10px;
    color: rgba(255,255,255,0.4);
}
.wizard-navigation { margin-bottom: 90px !important; }
@media (max-width: 600px) {
    .live-price-bar { flex-direction: row; padding: 10px 18px; }
    .live-price-amount { font-size: 20px; }
    .live-price-bar-right { display: none; }
}

/* ── Confetti ── */
.confetti-container {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9998;
    overflow: hidden;
}
@keyframes confettiRain {
    0%   { transform: translateY(-12px) rotate(0deg) scale(1);   opacity: 1; }
    100% { transform: translateY(100vh)  rotate(720deg) scale(0.6); opacity: 0; }
}
.confetti-piece {
    position: absolute;
    top: -14px;
    animation: confettiRain linear both;
}

/* ── Checkbox & priority option improvements ── */
.checkbox-title {
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    line-height: 1.35 !important;
}
.checkbox-description {
    font-family: var(--font-body) !important;
    font-size: 13.5px !important;
    color: #555 !important;
    line-height: 1.6 !important;
}
.checkbox-option:not(.selected):hover {
    border-color: rgba(212,175,55,0.55) !important;
    box-shadow: 0 4px 18px rgba(212,175,55,0.13) !important;
}
.checkbox-option.selected {
    background: linear-gradient(135deg, #fffbee, #fff8d6) !important;
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.2), 0 6px 22px rgba(212,175,55,0.2) !important;
}
.checkbox-option[data-priority] { background: #ffffff !important; }

/* ── Navigation buttons friendlier ── */
.btn-next, .btn-submit {
    font-family: var(--font-body) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    padding: 16px 42px !important;
    border-radius: 50px !important;
    letter-spacing: 0.2px !important;
}
.btn-previous {
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    border-radius: 50px !important;
    padding: 13px 28px !important;
}

/* ── Form inputs: bigger & friendlier ── */
.form-input, .form-select {
    font-family: var(--font-body) !important;
    font-size: 16px !important;
    border-radius: 12px !important;
    padding: 14px 16px !important;
    border: 2px solid #e0d8d0 !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
}
.form-input:focus, .form-select:focus {
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15) !important;
    outline: none !important;
}
.form-label {
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #3d2b1f !important;
}

/* ── Quality cards ── */
.quality-card-title  { font-family: var(--font-body) !important; font-size: 20px !important; font-weight: 800 !important; }
.quality-card-tagline { font-family: var(--font-body) !important; }
.quality-card-features li { font-family: var(--font-body) !important; font-size: 13.5px !important; line-height: 1.5 !important; }

/* ── Progress step labels ── */
.step-label {
    font-family: var(--font-body) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
}
.step-circle { font-family: var(--font-body) !important; font-weight: 700 !important; }

/* ── Review screen ── */
.review-label { font-family: var(--font-body) !important; font-size: 13px !important; color: #9a8070 !important; }
.review-value { font-family: var(--font-body) !important; font-size: 14px !important; color: #2d1f14 !important; font-weight: 600 !important; }

/* ════════════════════════════════════════
   WIZARD 2-COLUMN LAYOUT + LIVE PRICE SIDEBAR   (V5 — transparent pricing)
   ════════════════════════════════════════ */

/* ── Outer layout wrapper ── */
.wizard-layout {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    max-width: 100%;
    position: relative;
}
.wizard-main {
    flex: 1;
    min-width: 0;
}

/* ── Sticky sidebar ── */
.wizard-sidebar {
    width: 268px;
    flex-shrink: 0;
    position: sticky;
    top: 24px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(212,175,55,.3) transparent;
    background: #fff;
    border: 2px solid #e8e2da;
    border-radius: 20px;
    padding: 22px 20px 18px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s;
}
.wizard-sidebar:hover {
    box-shadow: 0 8px 36px rgba(0,0,0,0.11);
}
.wizard-sidebar-title {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 15px;
    font-weight: 800;
    color: #2d1f14;
    margin: 0 0 3px;
    letter-spacing: -0.2px;
}
.wizard-sidebar-subtitle {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 12px;
    color: #9a8070;
    margin: 0 0 16px;
}

/* ── Empty state ── */
.sidebar-empty {
    text-align: center;
    padding: 22px 10px;
    color: #c0b0a0;
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 12.5px;
    line-height: 1.6;
}

/* ── Line items ── */
.sidebar-items {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 4px;
    min-height: 24px;
}
.sidebar-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    animation: sidebarItemSlideIn 0.28s ease;
}
@keyframes sidebarItemSlideIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}
.sidebar-item-name {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 12.5px;
    color: #5a4a3a;
    flex: 1;
    line-height: 1.45;
}
.sidebar-item-price {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 12.5px;
    color: #2d1f14;
    font-weight: 700;
    white-space: nowrap;
}
.sidebar-item-free {
    color: #27ae60 !important;
    font-weight: 700;
}

/* ── Totals block ── */
.sidebar-divider {
    border: none;
    border-top: 1.5px solid #e8e2da;
    margin: 12px 0;
}
.sidebar-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 13px;
    margin-bottom: 6px;
    color: #5a4a3a;
}
.sidebar-total-row.grand {
    font-size: 17px;
    font-weight: 900;
    color: #2d1f14;
    margin-bottom: 5px;
}
.sidebar-grand-val {
    color: #d4af37 !important;
    font-weight: 900;
}
.sidebar-total-row.deposit {
    font-size: 11.5px;
    color: #9a8070;
    margin-bottom: 0;
}
.sidebar-discount {
    color: #27ae60 !important;
    font-weight: 700;
}
.sidebar-footer-note {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 10.5px;
    color: #c0b0a0;
    margin: 13px 0 0;
    text-align: center;
    line-height: 1.4;
}

/* ── Responsive: sidebar stacks below on mobile ── */
@media (max-width: 940px) {
    .wizard-layout {
        flex-direction: column-reverse;
    }
    .wizard-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 0;
        order: -1;
    }
}
@media (max-width: 620px) {
    .wizard-sidebar {
        border-radius: 14px;
        padding: 16px 14px 14px;
    }
}

/* ═══════════════════════════════════════════════════════
   V6 — PRICING TRANSPARENCY & BRAND ADDITIONS
   ═══════════════════════════════════════════════════════ */

/* ── Quality card price block (Step 4) ── */
.quality-card-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 0 0 16px;
    padding: 12px 14px 10px;
    background: linear-gradient(135deg, #fffbe8, #fff5cc);
    border: 1.5px solid rgba(212,175,55,.35);
    border-radius: 10px;
}
.quality-radio:checked + .quality-card .quality-card-price {
    background: linear-gradient(135deg, #fff8d0, #ffeeaa);
    border-color: rgba(212,175,55,.65);
}
.qc-base-price {
    font-size: 17px;
    font-weight: 900;
    color: #7a5c00;
    line-height: 1.2;
}
.qc-base-price em {
    font-size: 12px;
    font-weight: 600;
    color: #b8860b;
    font-style: normal;
}
.qc-film-price {
    font-size: 12px;
    font-weight: 700;
    color: #8b6914;
}
.qc-diff-badge {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    color: #8b1538;
    background: rgba(139,21,56,.09);
    border: 1px solid rgba(139,21,56,.25);
    border-radius: 20px;
    padding: 2px 9px;
    letter-spacing: .3px;
    align-self: flex-start;
    margin-top: 2px;
}

/* ── Coverage tile price hint (Step 5) ── */
.coverage-tile-price-hint {
    font-size: 10.5px;
    font-weight: 700;
    color: rgba(255,218,100,.88);
    background: rgba(212,175,55,.11);
    border: 1px solid rgba(212,175,55,.28);
    border-radius: 8px;
    padding: 3px 10px;
    margin: 4px auto 0;
    text-align: center;
    line-height: 1.45;
}

/* ── Album sheet extra cost badge (Step 6) ── */
.sheet-extra-badge {
    font-size: 10px;
    font-weight: 700;
    color: #8b6914;
    background: rgba(212,175,55,.14);
    border: 1px solid rgba(212,175,55,.3);
    border-radius: 10px;
    padding: 1px 7px;
    margin-left: 5px;
    letter-spacing: .2px;
}
.sheet-radio:checked + .sheet-label .sheet-extra-badge {
    color: #5a3c00;
    background: rgba(212,175,55,.28);
}

/* ── Brand header updates ── */
.brand-city {
    font-size: 11px;
    font-weight: 900;
    color: rgba(212,175,55,.75);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: -2px 0 6px;
}
.brand-rights {
    font-size: 10px;
    color: rgba(255,255,255,.38);
    letter-spacing: .5px;
    margin: 5px 0 0;
}

/* ── Sidebar brand footer ── */
.sidebar-brand-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(212,175,55,.15);
}
.sidebar-brand-name {
    font-size: 11px;
    font-weight: 800;
    color: #c0a060;
    letter-spacing: .4px;
}
.sidebar-brand-copy {
    font-size: 9.5px;
    color: #998070;
    letter-spacing: .3px;
}

/* ── Bundle savings note in sidebar ── */
.sidebar-bundle-note {
    font-size: 11px;
    font-weight: 700;
    color: #7a5c00;
    background: linear-gradient(135deg, #fff8d0, #fff3a8);
    border: 1.5px solid rgba(212,175,55,.55);
    border-radius: 10px;
    padding: 8px 12px;
    margin-bottom: 10px;
    line-height: 1.45;
    text-align: center;
}

/* ── Grand total bump animation ── */
.sidebar-grand-val.bumping {
    animation: priceBump 0.38s ease-out;
}
@keyframes priceBump {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.12); color: #f1c40f; }
    100% { transform: scale(1); }
}

/* ── Review step brand strip (Step 10) ── */
.review-brand-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(212,175,55,.12), rgba(212,175,55,.04));
    border: 1px solid rgba(212,175,55,.3);
    border-radius: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.review-brand-icon {
    font-size: 16px;
    color: #d4af37;
    opacity: .7;
}
.review-brand-text {
    font-size: 14px;
    font-weight: 900;
    color: #c09030;
    letter-spacing: .5px;
}
.review-brand-rights {
    font-size: 11px;
    color: #a08040;
    font-weight: 600;
}

/* ── Pricing disclaimer block ── */
.wizard-disclaimer {
    margin: 24px 0 8px;
    padding: 18px 22px 16px;
    background: linear-gradient(135deg, #fdfaf2, #faf5e4);
    border: 1px solid rgba(212,175,55,.28);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(212,175,55,.08);
}
.disclaimer-warm {
    font-size: 13.5px;
    font-weight: 600;
    color: #7a5c00;
    margin: 0 0 10px;
    line-height: 1.55;
}
.disclaimer-legal {
    font-size: 11px;
    color: #9a8060;
    margin: 0;
    line-height: 1.6;
    border-top: 1px solid rgba(212,175,55,.2);
    padding-top: 10px;
}

/* ═══════════════════════════════════════════════════════════════════════
   COVERAGE TOUR — Step 5 + Step 6 one-at-a-time tour cards
   Light theme · Playfair Display headings · DM Sans body
   ═════════════════════════════════════════════════════════════════════ */

/* Outer wrapper */
.coverage-tour {
    width: 100%;
    margin-top: 4px;
}

/* Card shell */
.ctt-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-left: 4px solid var(--ctt-accent, #d4af37);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    overflow: hidden;
    animation: cttCardIn .28s ease;
}
@keyframes cttCardIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Top meta row */
.ctt-top {
    padding: 16px 20px 14px;
    background: rgba(0,0,0,.015);
    border-bottom: 1px solid rgba(0,0,0,.06);
}

/* Header: icon + text + toggle */
.ctt-header-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.ctt-icon {
    font-size: 34px;
    flex-shrink: 0;
    line-height: 1;
}
.ctt-header-text {
    flex: 1;
    min-width: 0;
}

/* Step counter — small DM Sans label above the title */
.ctt-counter {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 11px;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 3px;
    display: block;
}
.ctt-counter em { font-style: normal; color: #ccc; }

/* Service / deliverable title — Playfair Display, matches section headings */
.ctt-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 24px;
    font-weight: 700;
    color: var(--maroon, #8B1538);
    margin: 0;
    line-height: 1.2;
}
.ctt-title--done {
    font-size: 22px;
    color: var(--maroon, #8B1538);
}

/* Add / Added ✓ toggle checkbox */
.ctt-toggle-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 9px 14px;
    border-radius: 8px;
    border: 1.5px solid rgba(0,0,0,.13);
    background: #f9f9f9;
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 13px;
    font-weight: 700;
    color: #555;
    white-space: nowrap;
    flex-shrink: 0;
    transition: border-color .15s, background .15s, color .15s;
    user-select: none;
}
.ctt-toggle-label:hover { border-color: #d4af37; background: #fffbf0; color: #b8860b; }
.ctt-toggle-label[is-on] { border-color: #27ae60; background: rgba(39,174,96,.07); color: #1e8449; }
.ctt-toggle-label input[type="checkbox"] { width: 17px; height: 17px; accent-color: #27ae60; cursor: pointer; }

/* Progress dots */
.ctt-dots {
    display: flex;
    gap: 5px;
    margin-top: 10px;
    align-items: center;
}
.ctt-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0,0,0,.13);
    transition: background .2s, width .2s;
}
.ctt-dot--active {
    background: var(--ctt-accent, #d4af37);
    width: 20px;
    border-radius: 3px;
}
.ctt-dot--done { background: rgba(39,174,96,.45); }

/* Card body */
.ctt-body {
    padding: 16px 20px 8px;
}

/* Description — DM Sans, plain readable text */
.ctt-desc {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 14.5px;
    font-weight: 400;
    color: var(--warm-grey, #3a3a3a);
    line-height: 1.65;
    margin: 0 0 14px;
}

/* Gallery link */
.ctt-gallery-link {
    display: inline-block;
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 12.5px;
    font-weight: 700;
    color: #b8860b;
    background: rgba(212,175,55,.1);
    border: 1px solid rgba(212,175,55,.3);
    border-radius: 8px;
    padding: 5px 13px;
    margin-bottom: 14px;
    text-decoration: none;
    transition: background .15s;
}
.ctt-gallery-link:hover { background: rgba(212,175,55,.22); color: #7a5c00; }

/* Section wrapper (quality / events) */
.ctt-section {
    background: #f9f8f6;
    border: 1px solid rgba(0,0,0,.07);
    border-radius: 10px;
    padding: 13px 15px;
    margin-bottom: 12px;
    transition: border-color .2s, background .2s, box-shadow .2s;
}

/* Section label — clear DM Sans uppercase */
.ctt-section-lbl {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 11.5px;
    font-weight: 800;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px;
}
.ctt-warn { color: #c0392b !important; }

/* ── Event selection prompt state ─────────────────────────────────────
   Shown when service is added but no events ticked yet
   ────────────────────────────────────────────────────────────────── */
.ctt-section--evtprompt {
    border: 1.5px dashed rgba(212,175,55,.7);
    background: rgba(255,250,235,.7);
    animation: cttEvtGlow 2.2s ease-in-out infinite;
}
.ctt-section--evtprompt .ctt-section-lbl {
    color: #b8860b;
}
@keyframes cttEvtGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,.18); }
    50%       { box-shadow: 0 0 0 5px rgba(212,175,55,.0); }
}

/* Inline prompt text */
.ctt-evt-prompt {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 13px;
    font-weight: 700;
    color: #b8860b;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Quality buttons */
.ctt-quality-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.ctt-qbtn {
    flex: 1;
    min-width: 115px;
    padding: 10px 14px;
    border-radius: 9px;
    border: 1.5px solid rgba(0,0,0,.11);
    background: #fff;
    color: #444;
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color .15s, background .15s, color .15s;
}
.ctt-qbtn:hover { border-color: #b8860b; background: rgba(212,175,55,.06); color: #b8860b; }
.ctt-qbtn--on {
    border-color: #b8860b;
    background: rgba(212,175,55,.11);
    color: #7a5c00;
    box-shadow: 0 2px 8px rgba(212,175,55,.18);
}

/* ── Event labels ────────────────────────────────────────────────────
   Default (unselected, idle): dashed border, slight pulse
   Selected: solid gold border + warm tint
   ───────────────────────────────────────────────────────────────── */
.ctt-evt-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.ctt-evt-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 13px;
    font-weight: 600;
    color: #333;
    background: #fff;
    border: 1.5px solid rgba(0,0,0,.11);
    border-radius: 9px;
    padding: 9px 14px;
    transition: border-color .15s, background .15s, color .15s, box-shadow .15s;
    user-select: none;
}
.ctt-evt-label:hover {
    border-color: #d4af37;
    background: rgba(212,175,55,.05);
    box-shadow: 0 2px 8px rgba(212,175,55,.12);
}
.ctt-evt-label.is-on {
    border-color: #d4af37;
    border-style: solid;
    background: rgba(212,175,55,.10);
    color: #6b4c00;
    box-shadow: 0 2px 10px rgba(212,175,55,.18);
}
.ctt-evt-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #d4af37;
    cursor: pointer;
    flex-shrink: 0;
}

/* Idle label — dashed border + gentle pulse to invite selection */
.ctt-evt-label--idle {
    border-style: dashed;
    border-color: rgba(212,175,55,.5);
    animation: cttLabelBeat 2.4s ease-in-out infinite;
}
.ctt-evt-label--idle:hover {
    border-style: solid;
    animation: none;
}
@keyframes cttLabelBeat {
    0%, 100% { transform: scale(1);    box-shadow: none; }
    50%       { transform: scale(1.02); box-shadow: 0 0 0 3px rgba(212,175,55,.12); }
}

/* Shake animation (validation error) */
@keyframes cttShake {
    0%, 100% { transform: translateX(0); }
    18%      { transform: translateX(-6px); }
    36%      { transform: translateX(6px); }
    54%      { transform: translateX(-4px); }
    72%      { transform: translateX(4px); }
}
.ctt-shake {
    animation: cttShake .5s ease !important;
}

/* Album mutual-exclusion notice */
.ctt-album-notice {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    background: rgba(231,76,60,.06);
    border: 1.5px solid rgba(192,57,43,.25);
    border-radius: 10px;
    padding: 11px 14px;
    margin-bottom: 14px;
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 13px;
    font-weight: 500;
    color: #7a1a1a;
    line-height: 1.55;
}
.ctt-album-notice strong { font-weight: 800; color: #5a0f0f; }
.ctt-album-notice-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }

/* Badge */
.ctt-badge {
    display: inline-block;
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    background: rgba(212,175,55,.18);
    color: #7a5c00;
    border: 1px solid rgba(212,175,55,.35);
    vertical-align: middle;
    margin-left: 6px;
    letter-spacing: .4px;
    white-space: nowrap;
}

/* Bottom nav row */
.ctt-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 20px 17px;
    border-top: 1px solid rgba(0,0,0,.06);
    gap: 10px;
}
.ctt-nav-btn {
    padding: 10px 22px;
    border-radius: 8px;
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: all .15s;
}
.ctt-nav-btn--back {
    background: #f3f3f3;
    border-color: rgba(0,0,0,.1);
    color: #888;
}
.ctt-nav-btn--back:hover { border-color: rgba(0,0,0,.22); color: #333; }

/* Normal next — dark with gold hover */
.ctt-nav-btn--next {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}
.ctt-nav-btn--next:hover { background: #d4af37; border-color: #d4af37; color: #1a1a1a; }

/* Warning next — shown when event selection is missing */
.ctt-nav-btn--warn {
    background: #fff3cd;
    border-color: #e0a800;
    color: #7a5c00;
}
.ctt-nav-btn--warn:hover {
    background: #ffe69c;
    border-color: #c98a00;
}

/* Done / summary card */
.ctt-card--done {
    border-left-color: #27ae60 !important;
}
.ctt-body--done {
    text-align: center;
    padding: 28px 20px 20px;
}
.ctt-done-emoji {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}
.ctt-done-list {
    text-align: left;
    margin: 14px 0;
}
.ctt-done-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 13px;
    border-radius: 9px;
    background: #f8f7f5;
    border: 1px solid rgba(0,0,0,.07);
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 13.5px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 7px;
}
.ctt-done-check { color: #27ae60; font-weight: 900; }
.ctt-done-evts {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 11px;
    font-weight: 700;
    color: #b8860b;
    background: rgba(212,175,55,.12);
    border-radius: 6px;
    padding: 1px 7px;
    margin-left: 6px;
}
.ctt-done-empty {
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 14px;
    color: #999;
    padding: 14px 0;
    margin: 0;
    text-align: center;
}

/* ── Mobile ── */
@media (max-width: 620px) {
    .ctt-title  { font-size: 20px; }
    .ctt-icon   { font-size: 28px; }
    .ctt-body   { padding: 14px 14px 8px; }
    .ctt-top    { padding: 12px 14px 10px; }
    .ctt-nav    { padding: 10px 14px 14px; }
    .ctt-nav-btn { font-size: 12.5px; padding: 9px 14px; }
    .ctt-qbtn   { font-size: 12px; padding: 8px 10px; }
    .wizard-sidebar { display: none; }
    .wizard-layout  { flex-direction: column; }
}
@media (min-width: 621px) and (max-width: 940px) {
    .wizard-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 16px;
        order: -1;
        max-height: none;
        overflow-y: visible;
    }
}
