/* Onboarding Page Styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.onboarding-page {
    min-height: 100vh;
    height: 100%;
    width: 100%;
    background-color: rgb(255, 248, 244);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Onboarding Header */
.onboarding-header {
    display: none;
}

.onboarding-header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.onboarding-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #000;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    margin-left: -8px;
}

.onboarding-back-btn:hover {
    opacity: 0.7;
}

.back-icon {
    font-size: 20px;
    line-height: 1;
}

.onboarding-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.logo-icon-small {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.onboarding-logo .logo-text {
    font-size: 18px;
    font-weight: 500;
    color: #0066cc;
}

.onboarding-progress-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 200px;
}

.onboarding-progress-bar {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.progress-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e5e5e5;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background-color: #0066cc;
    width: 10px;
    height: 10px;
}

.progress-dot.completed {
    background-color: #0066cc;
}

.progress-line {
    flex: 1;
    height: 2px;
    background-color: #e5e5e5;
    max-width: 30px;
}

.progress-dot.completed + .progress-line {
    background-color: #0066cc;
}

.onboarding-section-label {
    font-size: 12px;
    font-weight: 500;
    color: #0066cc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Main Content */
.onboarding-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(255, 248, 244);
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    box-sizing: border-box;
    margin: 0;
    position: relative;
}

/* Desktop: Center content with max-width, but allow full width for specific screens */
@media (min-width: 768px) {
    .onboarding-main {
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .onboarding-main {
        max-width: 900px;
    }
}

/* Full-width screens (goals-select, sales screens, etc.) */
.onboarding-main:has(.goals-select-screen),
.onboarding-main:has(.feeling-sales-screen),
.onboarding-main:has(.age-sales-screen),
.onboarding-main:has(.goal-sales-screen) {
    padding: 0;
    max-width: 100%;
    width: 100%;
}

.onboarding-screen {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    animation: fadeIn 0.3s ease;
    min-height: 100%;
    box-sizing: border-box;
}

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

.screen-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-sizing: border-box;
    padding: 16px 12px;
}

.screen-title {
    font-size: 28px;
    font-weight: 700;
    color: #5d4037;
    text-align: center;
    line-height: 1.3;
    margin: 0;
}

.screen-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin: 0;
}

/* Responsive typography */
@media (min-width: 768px) {
    .screen-title {
        font-size: 32px;
    }
    
    .screen-subtitle {
        font-size: 18px;
    }
    
    .screen-content {
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .screen-title {
        font-size: 36px;
    }
    
    .screen-subtitle {
        font-size: 20px;
    }
    
    .screen-content {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .screen-title {
        font-size: 24px;
    }
    
    .screen-subtitle {
        font-size: 15px;
    }
    
    .screen-content {
        gap: 20px;
    }
}

/* Email Screen - Sign Up Form */
.email-screen {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.email-back-button {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    z-index: 10;
}

.email-back-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.email-back-button svg {
    display: block;
}

.email-signup-content {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    padding-top: 48px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .email-signup-content {
        max-width: 600px;
        padding-top: 60px;
    }
}

@media (min-width: 1024px) {
    .email-signup-content {
        max-width: 700px;
        padding-top: 80px;
    }
}

.email-signup-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.email-signup-login-prompt {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin: 0 0 32px 0;
}

.email-signup-login-link {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 500;
}

.email-signup-login-link:hover {
    text-decoration: underline;
}

.email-signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.email-form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.email-input-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.email-signup-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.email-signup-input:focus {
    outline: none;
    border-color: #4169E1;
}

.email-signup-input:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

.email-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin: 0;
}

.email-info-icon {
    flex-shrink: 0;
    font-size: 20px;
    margin-top: 2px;
}

.email-info-text {
    flex: 1;
    font-size: 14px;
    color: #495057;
    line-height: 1.5;
    margin: 0;
}

.terms-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    cursor: pointer;
}

.terms-checkbox-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.terms-checkbox-row span {
    flex: 1;
}

.terms-link,
.privacy-link {
    color: #4169E1;
    text-decoration: none;
}

.terms-link:hover,
.privacy-link:hover {
    text-decoration: underline;
}

.turnstile-widget-container {
    margin: 16px 0;
    display: flex;
    justify-content: center;
}

.turnstile-widget-container iframe {
    border-radius: 8px;
}

.email-error-message {
    display: none;
    color: #d32f2f;
    font-size: 14px;
    padding: 12px;
    background-color: #ffebee;
    border-radius: 8px;
    border-left: 4px solid #d32f2f;
    animation: slideIn 0.3s ease-out;
}

.email-success-message {
    display: none;
    color: #2e7d32;
    font-size: 14px;
    padding: 12px;
    background-color: #e8f5e9;
    border-radius: 8px;
    border-left: 4px solid #2e7d32;
    animation: slideIn 0.3s ease-out;
}

.email-create-account-btn {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #444;
    line-height: 1.4;
}

.checkbox-row input[type=\"checkbox\"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.awards-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.award-card {
    background: #fff7e6;
    border: 1px solid #f2d48a;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    color: #c39200;
    font-weight: 700;
    line-height: 1.3;
}

/* Web Checkout Screen */
.web-checkout-screen {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .web-checkout-screen {
        padding: 40px;
    }
}

.web-checkout-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

.web-checkout-title {
    font-size: 28px;
    font-weight: 700;
    color: #5d4037;
    margin: 0;
    line-height: 1.3;
    animation: fadeIn 0.8s ease-out;
}

.web-checkout-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.5;
    animation: fadeIn 1s ease-out;
}

.web-checkout-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
}

.web-checkout-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e5;
    text-align: left;
    animation: fadeIn 0.8s ease-in-out;
}





.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #4169E1 0%, #6B8EFF 100%);
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(65, 105, 225, 0.3);
}

.step-icon {
    font-size: 32px;
    line-height: 1;
    min-width: 40px;
    text-align: center;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #5d4037;
    margin: 0;
    line-height: 1.3;
}

.step-description {
    font-size: 15px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.web-checkout-notes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.web-checkout-note {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.web-checkout-spam-note {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    margin: 0;
    line-height: 1.4;
    font-style: italic;
}

.web-checkout-button {
    width: 100%;
    max-width: 300px;
    margin: 24px auto 0;
    animation: fadeIn 1.2s ease-out;
}

@media (max-width: 480px) {
    .web-checkout-title {
        font-size: 24px;
    }

    .web-checkout-subtitle {
        font-size: 16px;
    }

    .web-checkout-step {
        padding: 16px;
        gap: 12px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 20px;
    }

    .step-icon {
        font-size: 28px;
        min-width: 36px;
    }

    .step-title {
        font-size: 16px;
    }

    .step-description {
        font-size: 14px;
    }
}

/* Paywall Screen */
.paywall-screen {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    padding-bottom: 0;
    box-sizing: border-box;
}

.paywall-content-wrapper {
    flex: 1;
    padding-bottom: 200px; /* Space for fixed footer */
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .paywall-content-wrapper {
        padding-bottom: 180px;
        max-width: 800px;
        margin: 0 auto;
    }
}

.paywall-container {
    width: 100%;
    min-height: 400px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .paywall-container {
        min-height: 500px;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .paywall-container {
        min-height: 600px;
        max-width: 900px;
    }
}

.paywall-content {
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .paywall-content {
        max-width: 800px;
        margin: 0 auto;
    }
}

.paywall-content-wrapper .screen-title {
    margin-bottom: 24px;
}

.paywall-content-wrapper .plans-list {
    margin-top: 0;
    padding-top: 0;
}

.paywall-how-it-works {
    padding: 0;
    text-align: center;
}

.how-it-works-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.how-it-works-text {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.how-it-works-text .cancel-link {
    color: #4169E1;
    text-decoration: underline;
    cursor: pointer;
}

.how-it-works-text .cancel-link:hover {
    color: #1b6cff;
    text-decoration: underline;
}

.paywall-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: flex;
    flex-direction: column;
    max-width: 100vw;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .paywall-footer {
        padding: 24px 40px;
        max-width: 800px;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (min-width: 1024px) {
    .paywall-footer {
        max-width: 900px;
        padding: 24px 60px;
    }
}

.paywall-footer .paywall-continue-btn {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.paywall-footer .paywall-secure {
    text-align: center;
    margin: 0;
}

.paywall-footer .paywall-logos {
    margin: 0;
}

.paywall-footer .paywall-disclaimer {
    margin: 0;
    font-size: 11px;
}

@media (max-width: 480px) {
    .paywall-content-wrapper {
        padding-bottom: 240px; /* More space on mobile for footer */
    }
    
    .paywall-footer {
        padding: 16px;
    }
    
    .paywall-footer .paywall-disclaimer {
        font-size: 10px;
    }
    
    .paywall-content-wrapper .screen-title {
        margin-bottom: 16px;
    }
    
   
    
    .refund-guarantee-content {
        padding: 14px;
        gap: 10px;
    }
    
    .refund-guarantee-text {
        font-size: 13px;
    }
    
    .refund-guarantee-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
    
  
    
    .how-it-works-title {
        font-size: 16px;
    }
    
    .how-it-works-text {
        font-size: 13px;
    }
}

.paywall-sales-info {
    background-color: rgba(65, 105, 225, 0.05);
    border-radius: 16px;
    padding: 24px;
    text-align: left;
}

.paywall-refund-guarantee {
    animation: fadeIn 0.5s ease-out;
}

.refund-guarantee-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    padding: 16px;
    text-align: left;
}

.refund-guarantee-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: #4CAF50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.refund-guarantee-text {
    flex: 1;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.refund-guarantee-text strong {
    color: #2E7D32;
    font-weight: 600;
}

.sales-info-title {
    font-size: 20px;
    font-weight: 600;
    color: #5d4037;
    margin: 0 0 16px 0;
}

.sales-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sales-benefit-item {
    font-size: 15px;
    color: #5d4037;
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

.sales-benefit-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4169E1;
    font-weight: bold;
    font-size: 16px;
}

.paywall-spots-message {
    font-size: 15px;
    color: #5d4037;
    margin: 16px 0;
    padding: 12px 16px;
    background-color: rgba(65, 105, 225, 0.1);
    border-radius: 8px;
    text-align: center;
    line-height: 1.6;
}

.paywall-spots-message strong {
    color: #4169E1;
    font-weight: 700;
    font-size: 16px;
}



.paywall-discount {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.paywall-discount-label {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.paywall-countdown {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.5px;
}

.paywall-top-cta {
    background: #0066cc;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
}

.plans-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 0;
    overflow: visible;
}

.plan-card {
    border: 2px solid #e5e5e5;
    border-radius: 14px;
    padding: 14px;
    background: #fff;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    overflow: visible;
}

.plan-discount-banner {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #4169E1 0%, #6B8EFF 100%);
    color: #fff;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 14px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(65, 105, 225, 0.3);
}

.plan-card.highlighted {
    background: #eaf2ff;
    border-color: #1b6cff;
}

.plan-card.selected {
    border-color: #1b6cff;
    box-shadow: 0 6px 16px rgba(27, 108, 255, 0.15);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 12px;
    background: #1b6cff;
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(27, 108, 255, 0.3);
}

.plan-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #bdbdbd;
    position: relative;
}

.plan-radio.checked {
    border-color: #1b6cff;
}

.plan-radio.checked::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background: #1b6cff;
    border-radius: 50%;
}

.plan-duration {
    font-size: 20px;
    font-weight: 700;
    color: #111;
}

.plan-tag {
    margin: 8px 0;
    display: inline-block;
    padding: 6px 10px;
    background: #eef4ff;
    color: #1b6cff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.plan-pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    gap: 12px;
}

.plan-price-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.plan-strike {
    color: #a1a1a1;
    text-decoration: line-through;
    font-size: 16px;
}

.plan-price {
    font-size: 24px;
    font-weight: 700;
    color: #111;
}

.plan-perday {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.plan-perday-value {
    font-size: 28px;
    font-weight: 800;
    color: #111;
}

.plan-perday-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.paywall-secure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
    color: #1b6cff;
    font-weight: 600;
}

.secure-badge {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #e6f2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1b6cff;
    font-weight: 800;
}

.paywall-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 8px;
    align-items: center;
    justify-items: center;
}

.paywall-logo {
    width: 56px;
    height: 32px;
    background: #f7f7f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
    text-transform: capitalize;
}

.paywall-logo.paypal::after { content: 'PayPal'; }
.paywall-logo.apple-pay::after { content: ' Pay'; }
.paywall-logo.google-pay::after { content: 'G Pay'; }
.paywall-logo.visa::after { content: 'VISA'; }
.paywall-logo.mastercard::after { content: 'MC'; }
.paywall-logo.maestro::after { content: 'Maestro'; }
.paywall-logo.discover::after { content: 'Discover'; }
.paywall-logo.amex::after { content: 'Amex'; }

.paywall-disclaimer {
    font-size: 12px;
    color: #666;
    text-align: center;
    line-height: 1.4;
}

.loading-plans {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
}

/* Paywall Loading Overlay */
.paywall-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.paywall-loading-overlay .overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 0.3s ease-out;
}

.paywall-loading-overlay .overlay-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.paywall-loading-overlay .overlay-text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

/* Welcome Screen */
.welcome-screen {
    text-align: center;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.welcome-title {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin: 0;
}

.welcome-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.welcome-quote {
    background-color: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    position: relative;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quote-mark {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 64px;
    color: #9b59b6;
    font-weight: 300;
    line-height: 1;
    font-family: serif;
}

.quote-text {
    font-size: 18px;
    color: #000;
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: left;
}

.quote-attribution {
    font-size: 14px;
    color: #999;
    font-style: italic;
    text-align: left;
}

.mentions-section {
    margin-top: 32px;
}

.mentions-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.mentions-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mention-logo {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    padding: 12px;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

/* Goals Select Screen */
.goals-select-screen {
    min-height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 60px 20px 40px;
    border-radius: 0;
    position: relative;
    box-sizing: border-box;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

@media (min-width: 768px) {
    .goals-select-screen {
        padding: 80px 40px 60px;
    }
}

.goals-select-screen .screen-content {
    gap: 32px;
}

.goals-select-screen .screen-title {
    font-weight: 700;
    text-align: center;
}

.goals-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.goal-option {
    background-color: #FFFFFF;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 16px;
    color: #000000;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    position: relative;
}

.goal-option:hover {
    border-color: #FFA500;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.goal-option.selected {
    border-color: #FFA500;
}

.goal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.goal-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
}

.goal-subtitle {
    font-weight: 400;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.goal-label {
    flex: 1;
    font-weight: 500;
}

.goal-checkbox {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #D3D3D3;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.goal-checkbox.checked {
    background-color: #4169E1;
    border-color: #4169E1;
}

.checkmark-icon {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

.goals-select-screen .onboarding-btn {
    margin-top: 8px;
}

/* Goal Sales Screen */
.goal-sales-screen {
    background: linear-gradient(180deg, #4169E1 0%, #4169E1 40%, #FFB6C1 60%, #FFE4E1 80%, #FFFFFF 100%);
    min-height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 60px 20px 40px;
    border-radius: 0;
    position: relative;
    box-sizing: border-box;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

@media (min-width: 768px) {
    .goal-sales-screen {
        padding: 80px 40px 60px;
    }
}

.goal-sales-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

.goal-icon {
    font-size: 64px;
    margin-bottom: 8px;
    animation: fadeIn 0.8s ease-out;
}

.goal-sales-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
    animation: fadeIn 1s ease-out;
}

.goal-sales-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    opacity: 0.95;
    animation: fadeIn 1.2s ease-out;
}

.goal-sales-description {
    font-size: 16px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeIn 1.4s ease-out;
}

.goal-benefits {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 24px;
    margin-top: 16px;
    text-align: left;
    animation: fadeIn 1.6s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.benefits-title {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
    margin: 0 0 16px 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    font-size: 16px;
    color: #2C3E50;
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

.benefit-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4169E1;
    font-weight: bold;
    font-size: 18px;
}

.goal-sales-screen .onboarding-btn {
    margin-top: 24px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 480px) {
    .goal-sales-title {
        font-size: 24px;
    }

    .goal-sales-subtitle {
        font-size: 16px;
    }

    .goal-sales-description {
        font-size: 14px;
    }

    .goal-icon {
        font-size: 48px;
    }

    .goal-benefits {
        padding: 20px;
    }

    .benefits-title {
        font-size: 18px;
    }

    .benefit-item {
        font-size: 14px;
    }
}

/* Children Count Screen */
.children-count-screen {
    text-align: center;
}

.children-count-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.children-count-container .select-option {
    min-height: 60px;
    font-size: 18px;
    font-weight: 600;
}

/* Child Age Screen */
.child-age-screen {
    text-align: center;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.age-options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .age-options-container {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
        max-width: 700px;
    }
}

@media (min-width: 1024px) {
    .age-options-container {
        grid-template-columns: repeat(3, 1fr);
        max-width: 800px;
    }
}

.age-option {
    min-height: 60px;
    font-size: 16px;
    font-weight: 500;
    padding: 16px;
    border-radius: 12px;
}

/* Age Sales Screen */
.age-sales-screen {
    background: linear-gradient(180deg, #4169E1 0%, #4169E1 40%, #FFB6C1 60%, #FFE4E1 80%, #FFFFFF 100%);
    min-height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 60px 20px 40px;
    border-radius: 0;
    position: relative;
    box-sizing: border-box;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

@media (min-width: 768px) {
    .age-sales-screen {
        padding: 80px 40px 60px;
    }
}

.age-sales-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

.age-icon {
    font-size: 64px;
    margin-bottom: 8px;
    animation: fadeIn 0.8s ease-out;
}

.age-sales-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
    animation: fadeIn 1s ease-out;
}

.age-sales-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    opacity: 0.95;
    animation: fadeIn 1.2s ease-out;
}

.age-sales-description {
    font-size: 16px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeIn 1.4s ease-out;
}

.age-benefits {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 24px;
    margin-top: 16px;
    text-align: left;
    animation: fadeIn 1.6s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.age-sales-screen .onboarding-btn {
    margin-top: 24px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Time Selection Screen */
.time-selection-screen {
    text-align: center;
}

.time-options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.time-option {
    min-height: 70px;
    font-size: 18px;
    font-weight: 600;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
}

/* Time Sales Screen */
.time-sales-screen {
    background: linear-gradient(180deg, #4169E1 0%, #4169E1 40%, #FFB6C1 60%, #FFE4E1 80%, #FFFFFF 100%);
    min-height: calc(100vh - 80px);
    margin: -40px -20px;
    padding: 60px 20px 40px;
    border-radius: 0;
    position: relative;
}

.time-sales-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

.time-icon {
    font-size: 64px;
    margin-bottom: 8px;
    animation: fadeIn 0.8s ease-out;
}

.time-sales-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
    animation: fadeIn 1s ease-out;
}

.time-sales-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    opacity: 0.95;
    animation: fadeIn 1.2s ease-out;
}

.time-sales-description {
    font-size: 16px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeIn 1.4s ease-out;
}

.time-improvement-chart {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 24px;
    margin: 24px 0;
    text-align: center;
    animation: fadeIn 1.4s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.chart-title {
    font-size: 20px;
    font-weight: 700;
    color: #5d4037;
    margin: 0 0 24px 0;
    line-height: 1.4;
}

.chart-container {
    margin: 20px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 40px;
}

.line-chart {
    width: 100%;
    max-width: 500px;
    height: 220px;
    margin: 0 auto;
    overflow: visible;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    margin-top: 8px;
    padding: 0 4px 0 44px;
}

.chart-day-label {
    font-size: 11px;
    color: #5d4037;
    font-weight: 500;
    flex: 1;
    text-align: center;
}

.chart-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #5d4037;
    font-weight: 500;
}

.legend-line {
    width: 32px;
    height: 3px;
    border-radius: 2px;
}

.legend-without {
    background-color: #999;
}

.legend-with {
    background-color: #4169E1;
}

.chart-y-axis {
    position: absolute;
    left: -40px;
    top: 0;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 10px;
    color: #999;
    font-weight: 500;
}

.chart-line-with-nook {
    filter: drop-shadow(0 2px 4px rgba(65, 105, 225, 0.3));
}

.chart-point {
    opacity: 0;
    transform: scale(0);
}

.chart-description {
    font-size: 13px;
    color: #5d4037;
    margin: 16px 0 0 0;
    opacity: 0.8;
    font-style: italic;
}

.time-benefits {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 24px;
    margin-top: 16px;
    text-align: left;
    animation: fadeIn 1.6s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.time-sales-screen .onboarding-btn {
    margin-top: 24px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Sleep Trouble Screen */
.sleep-trouble-screen {
    text-align: center;
}

.sleep-options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.sleep-option {
    min-height: 70px;
    font-size: 18px;
    font-weight: 600;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
}

/* Sleep Sales Screen */
.sleep-sales-screen {
    background: linear-gradient(180deg, #4169E1 0%, #4169E1 40%, #FFB6C1 60%, #FFE4E1 80%, #FFFFFF 100%);
    min-height: calc(100vh - 80px);
    margin: -40px -20px;
    padding: 60px 20px 40px;
    border-radius: 0;
    position: relative;
}

.sleep-sales-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

.sleep-icon {
    font-size: 64px;
    margin-bottom: 8px;
    animation: fadeIn 0.8s ease-out;
}

.sleep-sales-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
    animation: fadeIn 1s ease-out;
}

.sleep-sales-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    opacity: 0.95;
    animation: fadeIn 1.2s ease-out;
}

.sleep-sales-description {
    font-size: 16px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeIn 1.4s ease-out;
}

.sleep-benefits {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 24px;
    margin-top: 16px;
    text-align: left;
    animation: fadeIn 1.6s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sleep-sales-screen .onboarding-btn {
    margin-top: 24px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Positive Messages Screen */
.positive-messages-screen {
    text-align: center;
}

.positive-options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}

.positive-option {
    min-height: 70px;
    font-size: 18px;
    font-weight: 600;
    padding: 20px;
    border-radius: 12px;
    width: 100%;
}

/* Positive Messages Sales Screen */
.positive-messages-sales-screen {
    background: linear-gradient(180deg, #4169E1 0%, #4169E1 40%, #FFB6C1 60%, #FFE4E1 80%, #FFFFFF 100%);
    min-height: calc(100vh - 80px);
    margin: -40px -20px;
    padding: 60px 20px 40px;
    border-radius: 0;
    position: relative;
}

.positive-messages-sales-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

.positive-icon {
    font-size: 64px;
    margin-bottom: 8px;
    animation: fadeIn 0.8s ease-out;
}

.positive-sales-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
    animation: fadeIn 1s ease-out;
}

.positive-sales-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    opacity: 0.95;
    animation: fadeIn 1.2s ease-out;
}

.positive-sales-description {
    font-size: 16px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeIn 1.4s ease-out;
}

.positive-benefits {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 24px;
    margin-top: 16px;
    text-align: left;
    animation: fadeIn 1.6s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mum-videos-section {
    margin-top: 24px;
    animation: fadeIn 1.8s ease-out;
}

.videos-title {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
    text-align: center;
}

.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.video-placeholder {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.video-placeholder:hover {
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.3);
}

.video-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.video-label {
    font-size: 12px;
    color: #FFFFFF;
    margin: 0;
    opacity: 0.9;
}

.positive-messages-sales-screen .onboarding-btn {
    margin-top: 24px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Feeling Sales Screen */
.feeling-sales-screen {
    min-height: 100vh;
    width: 100vw;
    border-radius: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.feeling-sales-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    animation: fadeIn 0.6s ease-out;
}

.feeling-sales-content-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  
}

.feeling-sales-arrow-icon {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    animation: fadeIn 1s ease-out;
}
.feeling-sales-days{
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    animation: fadeIn 1s ease-out;
}

.feeling-lottie-container-wrapper {
    width: 50%;
}

.feeling-lottie-container {
    width: 100%;
    
    height: auto;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}



.feeling-lottie-container-2 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
    position: relative;
}


.age-sales-content-inner{
    position: relative;
}

.child-blob-inside {
    position: absolute;
    bottom: 32%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    width: auto;
    height: auto;
}

.child-blob-side {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.8s ease-out 0.2s both;
    flex-shrink: 0;
    position: absolute;
    bottom: 15%;
    left: 35%;
    z-index: 10;
}

.child-blob-svg {
    display: block;
    animation: fadeIn 0.8s ease-out;
    max-width: 100%;
    height: auto;

}

@media (max-width: 480px) {
  
    
    .feeling-lottie-container-2 {
        width: 100%;
    }
    
    .child-blob-side {
        width: 60%;
    }
    
 
}
.feeling-sales-title{
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    animation: fadeIn 1s ease-out;
}
.feeling-sales-message {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    padding-top: 32px;
    line-height: 1.4;
    animation: fadeIn 1s ease-out;
}

.feeling-sales-screen .onboarding-btn {
    margin-top: 32px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.2s ease-out;
}

@media (max-width: 480px) {
    .feeling-sales-title{
        font-size: 16px;
    }
    .feeling-sales-message {
        font-size: 20px;
    }
    
 
}

/* Nook Features Screen */
.nook-features-screen {
    text-align: center;
    gap: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.nook-features-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .nook-features-content {
        max-width: 700px;
        padding: 40px 0;
    }
}

@media (min-width: 1024px) {
    .nook-features-content {
        max-width: 800px;
        padding: 60px 0;
    }
}

.nook-features-heading {
    font-size: 32px;
    font-weight: 700;
    color: #5d4037;

    margin: 0 0 32px 0;
    line-height: 1.3;
    animation: fadeIn 0.6s ease-out;
}

.nook-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.nook-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: left;
    animation: fadeIn 0.6s ease-out;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nook-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.nook-feature-emoji {
    font-size: 48px;
    line-height: 1;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
}

.nook-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nook-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.nook-feature-description {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.nook-features-screen .onboarding-btn {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 480px) {
    .nook-features-heading {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .nook-feature-item {
        padding: 16px;
        gap: 12px;
    }

    .nook-feature-emoji {
        font-size: 40px;
        width: 56px;
        height: 56px;
    }

    .nook-feature-title {
        font-size: 18px;
    }

    .nook-feature-description {
        font-size: 15px;
    }

    .nook-features-list {
        gap: 16px;
    }
}

/* Nook Features Carousel */
.nook-features-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 24px;
}

.nook-features-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.nook-feature-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.nook-feature-image {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 24px;
    margin-bottom: 24px;
    overflow: hidden;
}

.nook-feature-emoji {
    font-size: 64px;
    line-height: 1;
}

.nook-feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nook-feature-slide .nook-feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.nook-feature-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.5;
    max-width: 500px;
}

.nook-features-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}

.nook-feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #e5e5e5;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.nook-feature-dot:hover {
    transform: scale(1.3);
    background-color: #999;
}

.nook-feature-dot.active {
    background-color: #5d4037;
    transform: scale(1.3);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 480px) {
    .nook-feature-image {
        width: 300px;
        height: 300px;
        margin-bottom: 20px;
    }

    .nook-feature-emoji {
        font-size: 56px;
    }

    .nook-feature-slide .nook-feature-title {
        font-size: 20px;
    }

    .nook-feature-subtitle {
        font-size: 15px;
    }
}

/* App Importance Screen */
.app-importance-screen {
    text-align: center;
}

.importance-options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.importance-option {
    min-height: 60px;
    font-size: 16px;
    font-weight: 500;
    padding: 16px 20px;
    border-radius: 12px;
    width: 100%;
    text-align: left;
}

/* App Importance Sales Screen */
.app-importance-sales-screen {
    background: linear-gradient(180deg, #4169E1 0%, #4169E1 40%, #FFB6C1 60%, #FFE4E1 80%, #FFFFFF 100%);
    min-height: calc(100vh - 80px);
    margin: -40px -20px;
    padding: 60px 20px 40px;
    border-radius: 0;
    position: relative;
}

.app-importance-sales-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

.app-importance-sales-title {
    font-size: 32px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
    animation: fadeIn 1s ease-out;
}

.app-importance-sales-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    opacity: 0.95;
    animation: fadeIn 1.2s ease-out;
}

.app-importance-sales-description {
    font-size: 16px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeIn 1.4s ease-out;
}

.app-importance-benefits {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 24px;
    margin-top: 16px;
    text-align: left;
    animation: fadeIn 1.6s ease-out;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.app-importance-sales-screen .onboarding-btn {
    margin-top: 24px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Personalization Intro Screen */
.personalization-intro-screen {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60vh;
}

.personalization-intro-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

.personalization-title {
    font-size: 32px;
    font-weight: 700;
    color: #5d4037;
    margin: 0;
    line-height: 1.3;
    animation: fadeIn 0.8s ease-out;
}

.personalization-description {
    font-size: 18px;
    color: #5d4037;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeIn 1s ease-out;
}

/* Personalization Results Screen */
.personalization-results-screen {
    text-align: center;
    padding: 20px;
}

.personalization-results-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

.results-title {
    font-size: 32px;
    font-weight: 700;
    color: #5d4037;
    margin: 0;
    line-height: 1.3;
    animation: fadeIn 0.8s ease-out;
}

.results-subtitle {
    font-size: 18px;
    color: #5d4037;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeIn 1s ease-out;
}

.results-community-message {
    font-size: 16px;
    color: #4169E1;
    font-weight: 600;
    margin: 0;
    padding: 16px;
    background-color: rgba(65, 105, 225, 0.1);
    border-radius: 12px;
    animation: fadeIn 1.2s ease-out;
}

.results-categories {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.result-category {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    animation: fadeIn 1.2s ease-out;
    border: 1px solid #e5e5e5;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.category-icon {
    font-size: 32px;
}

.category-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 12px;
}

.category-name {
    font-size: 20px;
    font-weight: 600;
    color: #5d4037;
    margin: 0;
}

.category-score {
    font-size: 18px;
    font-weight: 700;
    color: #4169E1;
    background-color: rgba(65, 105, 225, 0.1);
    padding: 4px 12px;
    border-radius: 8px;
    white-space: nowrap;
}

.category-description {
    font-size: 16px;
    color: #5d4037;
    margin: 0 0 16px 0;
    line-height: 1.6;
    opacity: 0.9;
}

.category-help {
    margin-top: 16px;
}

.help-title {
    font-size: 18px;
    font-weight: 600;
    color: #5d4037;
    margin: 0 0 12px 0;
}

.help-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.help-item {
    font-size: 15px;
    color: #5d4037;
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

.help-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4169E1;
    font-weight: bold;
    font-size: 16px;
}

/* Personalization Loading Screen */
.personalization-loading-screen {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60vh;
    padding: 40px 20px;
}

.loading-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 500px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

.loading-lottie-container {
    width: 100%;
    max-width: 250px;
    height: 250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease-out;
}

.loading-title {
    font-size: 24px;
    font-weight: 600;
    color: #5d4037;
    margin: 0;
    line-height: 1.4;
    animation: fadeIn 0.8s ease-out;
}

.loading-bar-container {
    width: 100%;
    height: 8px;
    background-color: rgba(93, 64, 55, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 8px;
    animation: fadeIn 1s ease-out;
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, #4169E1 0%, #6B8EFF 100%);
    border-radius: 4px;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 2px 8px rgba(65, 105, 225, 0.3);
}

/* Gift Screen */
.gift-screen {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
}

.gift-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

.gift-lottie-container {
    width: 100%;
}

.gift-offer-screen {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .gift-offer-screen {
        padding: 40px;
    }
}

.gift-offer-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
    animation: fadeIn 0.6s ease-out;
}

.gift-offer-lottie-container {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

.gift-offer-discount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin: 16px 0;
    animation: fadeIn 1s ease-out;
}

.gift-offer-title {
    font-size: 28px;
    font-weight: 700;
    color: #5d4037;
    margin: 0;
    line-height: 1.3;
    animation: fadeIn 1s ease-out;
}

.gift-offer-message {
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin: 0;
    line-height: 1.6;
    animation: fadeIn 1.2s ease-out;
}

.gift-offer-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    animation: fadeIn 1.4s ease-out;
}

.gift-claim-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.gift-skip-btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    background: transparent;
    color: #666;
    border: 2px solid #e5e5e5;
}

.gift-skip-btn:hover {
    background: #f5f5f5;
    border-color: #d5d5d5;
}

.gift-title {
    font-size: 32px;
    font-weight: 700;
    color: #5d4037;
    margin: 0;
    line-height: 1.3;
    animation: fadeIn 0.8s ease-out;
}

.gift-discount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin: 16px 0;
    animation: fadeIn 1s ease-out;
}

.discount-value {
    font-size: 64px;
    font-weight: 700;
    color: #4169E1;
    line-height: 1;
}

.discount-off {
    font-size: 32px;
    font-weight: 600;
    color: #4169E1;
    opacity: 0.8;
}

.gift-description {
    font-size: 18px;
    color: #5d4037;
    margin: 0;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeIn 1.2s ease-out;
}

.gift-spots-message {
    font-size: 16px;
    color: #5d4037;
    margin: 16px 0 0 0;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeIn 1.4s ease-out;
    text-align: center;
}

.gift-spots-message strong {
    color: #4169E1;
    font-weight: 700;
}

@media (max-width: 480px) {
    .children-count-container {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 10px;
    }

    .children-count-container .select-option {
        min-height: 50px;
        font-size: 16px;
    }

    .age-options-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }

    .age-option {
        min-height: 50px;
        font-size: 14px;
        padding: 12px;
    }

    .age-sales-title {
        font-size: 24px;
    }

    .age-sales-subtitle {
        font-size: 16px;
    }

    .age-sales-description {
        font-size: 14px;
    }

    .age-icon {
        font-size: 48px;
    }

    .age-benefits {
        padding: 20px;
    }

    .benefits-title {
        font-size: 18px;
    }

    .benefit-item {
        font-size: 14px;
    }

    .time-option {
        min-height: 60px;
        font-size: 16px;
        padding: 16px;
    }

    .time-sales-title {
        font-size: 24px;
    }

    .time-sales-subtitle {
        font-size: 16px;
    }

    .time-sales-description {
        font-size: 14px;
    }

    .time-icon {
        font-size: 48px;
    }

    .time-improvement-chart {
        padding: 20px;
    }

    .chart-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .chart-container {
        padding-left: 30px;
    }

    .line-chart {
        height: 180px;
        max-width: 100%;
    }

    .chart-labels {
        max-width: 100%;
        padding: 0 4px 0 34px;
    }

    .chart-y-axis {
        left: -25px;
    }

    .chart-day-label {
        font-size: 10px;
    }

    .chart-legend {
        gap: 16px;
        margin-top: 12px;
    }

    .legend-item {
        font-size: 12px;
    }

    .legend-line {
        width: 24px;
        height: 2.5px;
    }

    .chart-y-axis {
        left: -30px;
        font-size: 9px;
    }

    .chart-description {
        font-size: 12px;
    }

    .time-benefits {
        padding: 20px;
    }

    .results-title {
        font-size: 24px;
    }

    .results-subtitle {
        font-size: 16px;
    }

    .results-community-message {
        font-size: 14px;
        padding: 12px;
    }

    .result-category {
        padding: 20px;
    }

    .category-name {
        font-size: 18px;
    }

    .category-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .category-score {
        font-size: 16px;
        padding: 3px 10px;
    }

    .category-description {
        font-size: 14px;
    }

    .help-title {
        font-size: 16px;
    }

    .help-item {
        font-size: 14px;
    }

    .gift-title {
        font-size: 24px;
    }

    .gift-discount {
        margin: 12px 0;
    }

    .discount-value {
        font-size: 48px;
    }

    .discount-off {
        font-size: 24px;
    }

    .gift-description {
        font-size: 16px;
    }

    .gift-lottie-container {
        max-width: 250px;
        height: 250px;
    }

    .gift-offer-title {
        font-size: 24px;
    }

    .gift-offer-message {
        font-size: 16px;
    }

    .gift-offer-lottie-container {
        max-width: 250px;
    }

    .gift-offer-discount {
        margin: 12px 0;
    }

    .gift-offer-buttons {
        margin-top: 20px;
    }
}

/* Select Screens */
.options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .options-container {
        gap: 16px;
        max-width: 600px;
        margin: 0 auto;
    }
}

.options-container.multi-select {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.select-option {
    background-color: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
}

.select-option:hover {
    border-color: #0066cc;
}

.select-option.selected {
    border-color: #0066cc;
    background-color: #f0f7ff;
    color: #0066cc;
}

.select-option.multi-select {
    flex-direction: column;
    min-height: 80px;
}

.option-emoji {
    font-size: 24px;
}

.option-label {
    font-size: 14px;
    font-weight: 500;
}

.checkmark {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background-color: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Emoji Scale Screen */
.emoji-scale-screen {
    gap: 24px;
}

.info-message {
    background-color: #e8f5e9;
    border-radius: 12px;
    padding: 16px;
    color: #2e7d32;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.emoji-scale-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.emoji-option {
    background-color: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;

   
}

.emoji-option:hover {
    border-color: #0066cc;
    transform: scale(1.05);
}

.emoji-option.selected {
    border-color: #0066cc;
    background-color: #f0f7ff;
    transform: scale(1.1);
}

.emoji-option-agree .emoji-icon {
    font-size: 24px !important;
}

.emoji-option-disagree .emoji-icon {
    font-size: 24px !important;
}

.emoji-icon {
    font-size: 48px;
}

/* Community Screen */
.community-screen {
    text-align: center;
}

.community-map-container {
    margin: 32px 0;
    position: relative;
}

.community-map {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.world-map {
    width: 100%;
    height: auto;
    opacity: 0.3;
}

.user-location-bubble {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.bubble-icon {
    font-size: 20px;
}

.bubble-text {
    font-size: 14px;
    font-weight: 500;
    color: #0066cc;
}

/* Buttons */
.onboarding-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-sizing: border-box;
    max-width: 100%;
}

@media (min-width: 768px) {
    .onboarding-btn {
        max-width: 400px;
        padding: 18px 24px;
        font-size: 18px;
    }
}

.onboarding-btn.btn-primary {
    background-color: #4169E1;
    color: #fff;
}

.welcome-continue-btn {
    background-color: #4169E1;
}

.onboarding-btn.btn-primary:hover:not(:disabled) {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.onboarding-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
    .onboarding-header-container {
        padding: 12px 16px;
    }

 

    .screen-title {
        font-size: 24px;
    }

    .options-container.multi-select {
        grid-template-columns: repeat(2, 1fr);
    }

    .welcome-title {
        font-size: 28px;
    }

    .mentions-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .onboarding-progress-container {
        max-width: 150px;
    }

    .progress-line {
        max-width: 20px;
    }
}

@media (max-width: 480px) {
    .options-container.multi-select {
        grid-template-columns: 1fr;
    }

    .emoji-scale-container {
        gap: 8px;
    }

    .emoji-option {
        width: 50px;
        height: 50px;
    }

    .emoji-option-agree .emoji-icon{
            font-size: 16px !important;
    }

    .emoji-option-disagree .emoji-icon{
        font-size: 16px !important;
    }

    .emoji-icon {
        font-size: 32px;
    }

  
    
    .goals-select-screen {
        padding: 40px 16px 32px;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .goals-select-screen .screen-title {
        font-size: 24px;
    }

    .goal-option {
        padding: 14px 16px;
        font-size: 15px;
    }
}

/* Email Screen Loading & Error States */
.email-create-account-btn {
    position: relative;
}

.email-create-account-btn .btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.email-create-account-btn .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Account Creation Loading Overlay */
.account-creation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-creation-overlay .overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.account-creation-overlay .overlay-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.account-creation-overlay .overlay-text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

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

@media (max-width: 480px) {
    .email-signup-content {
        max-width: 100%;
        padding: 0 16px;
    }
    
    .email-signup-title {
        font-size: 28px;
    }
    
    .email-signup-login-prompt {
        font-size: 13px;
    }
    
    .email-signup-input {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .email-info-text {
        font-size: 13px;
    }
    
    .terms-checkbox-row {
        font-size: 13px;
    }
    
    .email-create-account-btn {
        max-width: 100%;
    }
}

/* Selected Product Display on Email Screen */
.email-selected-product {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 24px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.selected-product-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: #4169E1;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(65, 105, 225, 0.3);
}

.selected-product-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    margin-top: 4px;
}

.selected-product-duration {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    flex: 1;
}

.selected-product-price {
    font-size: 18px;
    font-weight: 700;
    color: #1b6cff;
    text-align: right;
}

.selected-product-perday {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

@media (max-width: 480px) {
    .email-back-button {
        top: -8px;
        left: -8px;
    }
    
    .email-signup-content {
        padding-top: 40px;
    }
    
    .email-selected-product {
        padding: 14px 16px;
        margin: 20px 0;
    }
    
    .selected-product-badge {
        right: 12px;
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .selected-product-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .selected-product-price {
        text-align: left;
        width: 100%;
    }
    
    .selected-product-duration {
        width: 100%;
    }
}

/* Checkout Screen Styles */
.checkout-screen {
    max-width: 600px;
    margin: 0 auto;
    padding: 24px 20px;
}

.checkout-container {
    width: 100%;
}

.checkout-header {
    text-align: center;
    margin-bottom: 32px;
}

.checkout-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    line-height: 1.2;
}

.checkout-subtitle {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.checkout-plan-summary {
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 32px;
    position: relative;
}

.plan-summary-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #1b6cff;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.plan-summary-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.plan-summary-left {
    flex: 1;
}

.plan-summary-duration {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.plan-summary-price {
    font-size: 16px;
    color: #666;
}

.plan-summary-right {
    text-align: right;
}

.plan-summary-trial-price {
    font-size: 20px;
    font-weight: 700;
    color: #34c759;
    margin-bottom: 2px;
}

.plan-summary-trial-period {
    font-size: 14px;
    color: #666;
}

.checkout-payment-section {
    margin-bottom: 32px;
}

.payment-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.payment-section-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.payment-method-btn {
    width: 100%;
    padding: 16px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.payment-method-btn:hover {
    border-color: #1b6cff;
    background: #f8f9ff;
}

.paypal-btn {
    background: #ffc439;
    border-color: #ffc439;
    color: #111;
}

.paypal-btn:hover {
    background: #ffb800;
    border-color: #ffb800;
}

.paypal-logo {
    width: 80px;
    height: 24px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 30"><text x="50" y="20" font-family="Arial" font-size="16" font-weight="700" fill="%23003087" text-anchor="middle">PayPal</text></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.payment-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 8px 0;
    color: #999;
    font-size: 14px;
}

.payment-divider::before,
.payment-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e5e5;
}

.payment-divider span {
    padding: 0 16px;
}

.credit-card-section {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
}

.credit-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.credit-card-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

.card-brands {
    display: flex;
    gap: 8px;
    align-items: center;
}

.card-brand {
    width: 32px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.6;
}

.card-brand.visa {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 25"><rect width="40" height="25" fill="%231A1F71"/><text x="20" y="16" font-family="Arial" font-size="12" font-weight="700" fill="white" text-anchor="middle">VISA</text></svg>');
}

.card-brand.mastercard {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 25"><circle cx="15" cy="12.5" r="8" fill="%23EB001B"/><circle cx="25" cy="12.5" r="8" fill="%23F79E1B"/></svg>');
}

.card-brand.discover {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 25"><rect width="40" height="25" fill="%23FF6000"/></svg>');
}

.card-brand.amex {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 25"><rect width="40" height="25" fill="%23006FCF"/></svg>');
}

.credit-card-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1b6cff;
}

.form-group input::placeholder {
    color: #999;
}

.form-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.expiry-inputs {
    display: flex;
    gap: 8px;
}

.expiry-inputs select {
    flex: 1;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: #1b6cff;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-bottom: 24px;
}

.checkout-btn:hover:not(:disabled) {
    background: #0056d6;
}

.checkout-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.checkout-footer {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout-footer-text {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.checkout-cancel-link {
    font-size: 14px;
    color: #1b6cff;
    text-decoration: underline;
    cursor: pointer;
}

.checkout-cancel-link:hover {
    color: #0056d6;
}

.stripe-powered-by {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stripe-powered-by-image {
    height: auto;
    width: 100%;
    max-width: 100px;
}

@media (max-width: 480px) {
    .checkout-screen {
        padding: 20px 16px;
    }

    .checkout-title {
        font-size: 24px;
    }

    .plan-summary-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .plan-summary-right {
        text-align: left;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Success Screen Styles */
.success-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #4caf50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 24px;
    animation: scaleIn 0.5s ease-out;
}

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

.success-content .screen-title {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.success-content .screen-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.download-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 300px;
    margin-bottom: 24px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid transparent;
}

.apple-btn {
    background-color: #000;
    color: #fff;
}

.apple-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.android-btn {
    background-color: #000;
    color: #fff;
}

.android-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.download-btn-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.download-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.download-btn-label-top {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.download-btn-label-bottom {
    font-size: 16px;
    font-weight: 600;
}

.success-message {
    font-size: 16px;
    color: #666;
    margin-top: 8px;
    line-height: 1.5;
}

.success-steps-container {
    width: 100%;
    max-width: 600px;
    margin: 32px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    box-sizing: border-box;
}

.success-step {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.success-step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #4caf50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.success-step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.success-step-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.success-step-link {
    color: #1976d2;
    text-decoration: underline;
    transition: color 0.2s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline;
}

/* OTP Section Styles */
#otpSection {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.otp-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.otp-code {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-break: break-all;
}

.btn-copy-otp {
    width: 100%;
    max-width: 200px;
    box-sizing: border-box;
}

.success-step-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.success-step .download-buttons-container {
    max-width: 100%;
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .success-screen {
        padding: 24px 12px;
        min-height: 50vh;
    }

    .success-content {
        padding: 20px 12px !important;
    }

    .success-icon {
        width: 64px;
        height: 64px;
        font-size: 36px;
        margin-bottom: 20px;
    }

    .success-content .screen-title {
        font-size: 24px;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .success-content .screen-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    .download-buttons-container {
        max-width: 100%;
    }

    .download-btn {
        padding: 12px 14px;
        font-size: 14px;
    }

    .download-btn-icon {
        width: 20px;
        height: 20px;
    }

    .download-btn-label-top {
        font-size: 10px;
    }

    .download-btn-label-bottom {
        font-size: 13px;
    }

    .success-steps-container {
        margin: 20px 0;
        gap: 20px;
        width: 100%;
    }

    .success-step {
        gap: 12px;
        width: 100%;
    }

    .success-step-content {
        min-width: 0;
        width: 100%;
    }

    .success-step-number {
        width: 28px;
        height: 28px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .success-step-title {
        font-size: 15px;
        line-height: 1.4;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .success-step-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        border-radius: 8px;
        margin: 12px 0;
    }

    .success-step .download-buttons-container {
        max-width: 100%;
    }

    .success-step-link {
        word-break: break-all;
        overflow-wrap: anywhere;
        font-size: 14px;
    }

    .success-message {
        font-size: 14px;
        line-height: 1.5;
        padding: 16px;
    }

    /* OTP Section Mobile Styles */
    #otpSection {
        margin: 16px 0 !important;
        padding: 0;
    }

    #otpSection p {
        font-size: 14px !important;
        margin-bottom: 8px !important;
    }

    .otp-code {
        font-size: 12px !important;
        padding: 8px 10px !important;
        letter-spacing: 0.5px !important;
        line-height: 1.4 !important;
    }

    .btn-copy-otp {
        font-size: 14px !important;
        padding: 10px 16px !important;
        max-width: 100% !important;
    }

    .otp-container p {
        font-size: 12px !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .success-content {
        padding: 16px 8px !important;
    }

    .success-content .screen-title {
        font-size: 22px;
    }

    .success-step-title {
        font-size: 14px;
    }

    .success-step-image {
        margin: 8px 0;
    }

    .otp-code {
        font-size: 11px !important;
        padding: 6px 8px !important;
    }
}

/* Meet Nook Screen Styles */

.nook-character-container {
    width: 100%;
    max-width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease-out;
}

/* Nook Welcome Screen */
.nook-welcome-screen {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.welcome-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.welcome-message {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.3;
    text-align: center;
    max-width: 600px;
    animation: fadeIn 0.6s ease-out;
}

.highlight-blue {
    color: #4169E1;
}

.highlight-orange {
    color: #D2691E;
}

.portraits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 300px;
    width: 100%;
    animation: fadeIn 0.8s ease-out;
}

.portrait-item {
    aspect-ratio: 1;
    width: 100%;
}

.portrait-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #f0f0f0;
}

.portrait-circle img,
.portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.portrait-initials {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-continue-btn {
    margin-top: 40px;
    max-width: 400px;
    width: 100%;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
}

/* Self Care Message Screen */
.self-care-message-screen {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    align-items: center;
}

.self-care-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.self-care-message {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    text-align: center;
    max-width: 600px;
    animation: fadeIn 0.6s ease-out;
}

.self-care-lottie-container {
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.8s ease-out;
}

.self-care-continue-btn {
    margin-top: 40px;
    max-width: 400px;
    width: 100%;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    background-color: #D2691E;
    color: #fff;
}

.self-care-continue-btn:hover:not(:disabled) {
    background-color: #CD853F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
}

/* Insta Story Screen */
.insta-story-screen {
    position: relative;
    min-height: calc(100vh - 80px);
    margin: -40px -20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.insta-story-progress {
    display: flex;
    gap: 4px;
    padding: 12px 20px;
    position: relative;
    z-index: 10;
}

.insta-story-segment {
    flex: 1;
    height: 3px;
    background: rgb(224, 224, 224);
    border-radius: 2px;
    overflow: hidden;
}

.insta-story-segment-fill {
    height: 100%;
    width: 0%;
    background: #D2691E;
    border-radius: 2px;
    transition: width linear;
}

.insta-story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.insta-story-image-container {
    width: 100%;
    max-width: 400px;
    margin-bottom: 32px;
    animation: fadeIn 0.4s ease-out;
    border-radius: 16px;
    overflow: hidden;
}

.insta-story-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.insta-story-text {
    text-align: center;
    max-width: 600px;
    animation: fadeIn 0.6s ease-out;
}

.insta-story-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.insta-story-subtitle {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: #000;
}

.insta-story-below-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #666;
}

.insta-story-skip-btn {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 20px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.insta-story-skip-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Meet Nook Screen */
.meet-nook-screen {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .meet-nook-screen {
        padding: 60px 40px;
    }
}

@media (min-width: 1024px) {
    .meet-nook-screen {
        padding: 80px 60px;
    }
}



.meet-nook-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 600px;
    width: 100%;
    animation: fadeIn 0.6s ease-out;
}

.meet-nook-title {
    font-size: 32px;
    font-weight: 700;
    color: #5d4037;
    margin: 0;
    line-height: 1.3;
}

.meet-nook-screen .nook-character-container {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-out;
}

.meet-nook-description {
    font-size: 16px;
    color: #5d4037;
    margin: 0;
    line-height: 1.6;
    max-width: 500px;
}

.meet-nook-begin-btn {
    background-color: #8B4513;
    color: #fff;
    padding: 16px 48px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 8px;
    max-width: 300px;
    width: 100%;
}

.meet-nook-begin-btn:hover:not(:disabled) {
    background-color: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}



/* Nook Color Picker Screen */
.nook-color-picker-screen {
    text-align: center;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

/* Nook Hello Screen */
.nook-hello-screen {
    text-align: center;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.nook-hello-screen .meet-nook-hello {
    display: block;
    opacity: 1;
    animation: fadeIn 0.6s ease-out;
}

.color-picker-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
}

.color-picker-wrapper::-webkit-scrollbar {
    height: 6px;
}

.color-picker-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.color-picker-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.color-picker-row {
    display: flex;
    gap: 12px;
    padding: 8px 20px;
    justify-content: flex-start;
    min-width: max-content;
}

.color-swatch {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.color-swatch.selected {
    border-color: #8B4513;
    border-width: 4px;
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.3);
}

@media (max-width: 480px) {
    .nook-character-container {
        max-width: 250px;
        height: 250px;
    }

    .color-swatch {
        width: 40px;
        height: 40px;
    }

    .color-picker-row {
        gap: 10px;
        padding: 8px 16px;
    }

  

    .welcome-message {
        font-size: 24px;
        padding: 0 16px;
    }

    .portraits-grid {
        max-width: 260px;
        gap: 12px;
    }

    .portrait-initials {
        font-size: 14px;
    }

    .welcome-continue-btn {
        font-size: 16px;
        padding: 14px 24px;
        margin-top: 32px;
    }

  

    .self-care-message {
        font-size: 24px;
        padding: 0 16px;
    }

    .self-care-lottie-container {
        max-width: 300px;
        height: 300px;
    }

    .self-care-continue-btn {
        font-size: 16px;
        padding: 14px 24px;
        margin-top: 32px;
    }

    .insta-story-screen {
        min-height: calc(100vh - 60px);
    }

    .insta-story-progress {
        padding: 10px 16px;
    }

   

    .insta-story-image-container {
        max-width: 100%;
        margin-bottom: 24px;
    }

    .insta-story-title {
        font-size: 28px;
    }

   

    .insta-story-skip-btn {
        bottom: 16px;
        padding: 8px 20px;
        font-size: 14px;
    }

    .meet-nook-screen {
        padding: 32px 16px;
    }

    .meet-nook-title {
        font-size: 28px;
    }

    .meet-nook-screen .nook-character-container {
        width: 250px;
        height: 250px;
    }

    .meet-nook-description {
        font-size: 15px;
    }

    .meet-nook-begin-btn {
        font-size: 16px;
        padding: 14px 40px;
    }

 
}

