/**
 * Welcome Page Styles for SENNA Launcher
 * Professional PE career interface styling
 * 
 * Following CODING-STANDARDS.md:
 * - Balanced specificity
 * - Responsive design
 * - No hard-coded dimensions
 * - Organized z-index scale
 * - Professional standards (no emojis)
 */

/* CSS Variables */
:root {
    --cream-bg: #FAF7F2;
    --cream-light: #FFFDF8;
    --navy-text: #132d51;
    --text-dark: #2C2C2C;
    --text-light: #5A5A5A;
    --accent-gold: #D4AF37;
    --accent-gold-dark: #B8860B;
    --border-light: #E8E2D5;
    --green-gradient-start: #2D6A4F;
    --green-gradient-end: #1B4332;
    --highlight-yellow: #FFF4D4;
    --header-height: 70px;
    --content-max-width: 1400px;
    --card-width: 260px;
}

/* Base Styles */
.senna-welcome-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--cream-bg);
    color: var(--navy-text);
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.senna-welcome-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover !important;
    background-position: center center !important;
    overflow-x: hidden;
}

/* Wrapper for full viewport coverage */
.senna-welcome-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Background Overlay */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}

/* Welcome Header */
.welcome-header {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 0 40px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-light);
}

.welcome-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.welcome-header .leaf-icon {
    width: 32px;
    height: 32px;
}

.welcome-header .logo-text {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--green-gradient-start) 0%, var(--green-gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.welcome-user-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 8px;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy-text);
    line-height: 1.3;
}

.user-status {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.3;
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: calc(var(--header-height) + 40px) 20px 40px;
    position: relative;
    z-index: 2;
}

/* Header Section */
.coach-header {
    text-align: center;
    margin-bottom: 0;
    max-width: 800px;
    width: 100%;
}

.main-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--navy-text);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.greeting-subtitle {
    font-size: 24px;
    font-weight: 500;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
    letter-spacing: 0.3px;
    position: relative;
    display: inline-block;
    min-height: 30px;
}

.typing-text {
    display: inline-block;
}

.greeting-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    border-radius: 2px;
}

/* Mode Selector */
.mode-selector {
    display: flex;
    gap: 20px;
    margin: 0 auto 40px auto;
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: fit-content;
}

.mode-button {
    padding: 12px 32px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mode-button.active {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.mode-button:hover:not(.active) {
    background: var(--cream-light);
}

/* Cards Container */
.cards-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto 30px auto;
    position: relative;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
}

.carousel-wrapper {
    display: flex;
    gap: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    justify-content: center;
}

.carousel-card {
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
}

.cards-wrapper {
    display: flex;
    gap: 20px;
    padding: 4px;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Load More Button */
.load-more-btn {
    display: block;
    margin: 30px auto;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

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

/* Navigation Arrows - Prominent Design */
.card-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.card-nav-arrow.prominent {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    }
}

.card-nav-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.card-nav-arrow svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 3;
    fill: none;
}

.card-nav-arrow.prev {
    left: 10px;
}

.card-nav-arrow.next {
    right: 10px;
}

.card-nav-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
    animation: none;
}

/* Expert Insights Card */
.insight-card {
    min-width: var(--card-width);
    max-width: var(--card-width);
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.insight-card-image {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, var(--green-gradient-start) 0%, var(--green-gradient-end) 100%);
    position: relative;
    background-size: cover;
    background-position: center;
}

.insight-card-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-gold);
    color: white;
    padding: 4px 8px;
    border-radius: 14px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-card-content {
    padding: 14px;
}

.insight-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.insight-card-preview {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.insight-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-light);
}

.insight-card-date {
    font-size: 11px;
    color: var(--text-light);
}

.insight-card-action {
    font-size: 11px;
    color: var(--accent-gold);
    font-weight: 600;
}

/* Career Prep Card */
.bootcamp-card {
    min-width: var(--card-width);
    max-width: var(--card-width);
    background: white;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bootcamp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.bootcamp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
}

.bootcamp-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.bootcamp-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-gold);
    fill: none;
    stroke-width: 2;
}

.bootcamp-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-text);
    margin-bottom: 8px;
}

.bootcamp-description {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 14px;
}

.bootcamp-meta {
    display: flex;
    gap: 14px;
}

.bootcamp-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-light);
}

.bootcamp-meta-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-light);
    fill: none;
    stroke-width: 2;
}

/* Query Panel */
.query-panel {
    max-width: 800px;
    width: 100%;
    background: linear-gradient(135deg, white 0%, var(--cream-light) 100%);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    margin-top: 30px;
    border: 2px solid var(--accent-gold);
    position: relative;
}

.query-panel::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
}

.query-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.query-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy-text);
}

.query-badge {
    background: rgba(45, 106, 79, 0.1);
    color: var(--green-gradient-start);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.query-input-wrapper {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.query-input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 15px;
    background: var(--cream-light);
    color: var(--navy-text);
    transition: all 0.3s ease;
}

.query-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.query-submit {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.query-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.quick-questions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.quick-question {
    padding: 8px 16px;
    background: var(--cream-light);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-question:hover {
    background: var(--highlight-yellow);
    border-color: var(--accent-gold);
    transform: translateY(-1px);
}

/* CTA Button */
.cta-section {
    margin-top: 10px;
    margin-bottom: 35px;
}

.begin-journey {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.begin-journey:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

/* Q&A Step Container - Matching Journey Steps */
.qa-step-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: var(--cream-bg);
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.qa-step-container .onboarding-step {
    display: block;
    animation: fadeIn 0.6s ease;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.qa-step-container .focus-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

/* Typing Animation */
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.typing-cursor {
    animation: blink 1s infinite;
    margin-left: 1px;
    font-weight: 300;
    color: var(--navy-text);
}

/* SENNA Avatar - Matching Journey Steps */
.qa-step-container .senna-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Message Content - Matching Journey Steps */
.qa-step-container .message-content {
    font-size: 26px;
    line-height: 1.6;
    color: var(--navy-text);
    margin-bottom: 40px;
    font-weight: 300;
}

.qa-step-container .message-content.qa-response {
    text-align: left;
    white-space: pre-line;
    min-height: 100px;
}

/* Reply Panel */
.qa-step-container .reply-panel {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin: 30px auto 0;
    max-width: 700px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--accent-gold);
}

/* Navigation Button - Matching Journey Steps */
.qa-step-container .nav-button {
    padding: 16px 40px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 20px;
}

.qa-step-container .nav-button.primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.qa-step-container .nav-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

/* Related Questions Container */
.qa-step-container .related-questions-container {
    margin-top: 20px;
}

.qa-step-container .quick-questions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.qa-step-container .quick-question {
    background: var(--cream-light);
    border: 1px solid var(--border-light);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--navy-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.qa-step-container .quick-question:hover {
    background: var(--accent-gold);
    color: white;
    border-color: var(--accent-gold);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .welcome-header {
        padding: 0 15px;
        height: 60px;
    }
    
    .welcome-logo-section .leaf-icon {
        width: 24px;
        height: 24px;
    }
    
    .welcome-logo-section .logo-text {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .welcome-user-section {
        gap: 8px;
    }
    
    .user-details {
        display: none; /* Hide user details on mobile */
    }
    
    .user-avatar {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .main-content {
        padding: 80px 15px 30px;
        max-width: 100%;
    }
    
    .main-title {
        font-size: 32px;
        margin-bottom: 10px;
        letter-spacing: -0.3px;
    }
    
    .greeting-subtitle {
        font-size: 18px;
        min-height: 25px;
    }
    
    .mode-selector {
        flex-direction: row;
        width: 100%;
        max-width: none;
        padding: 4px;
        gap: 8px;
    }
    
    .mode-button {
        padding: 10px 20px;
        font-size: 13px;
        flex: 1;
    }
    
    /* Cards Container Mobile */
    .cards-container {
        padding: 0 10px;
    }
    
    .carousel-container {
        padding: 0;
        position: relative;
    }
    
    .carousel-wrapper {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 0 10px;
        justify-content: flex-start;
    }
    
    .carousel-card {
        scroll-snap-align: center;
        min-width: 85vw;
        max-width: 85vw;
    }
    
    /* Hide navigation arrows on mobile */
    .card-nav-arrow {
        display: none;
    }
    
    /* Expert Insights Card Mobile */
    .insight-card {
        min-width: 85vw;
        max-width: 85vw;
    }
    
    .insight-card-title {
        font-size: 14px;
    }
    
    .insight-card-preview {
        font-size: 11px;
    }
    
    /* Career Prep Card Mobile */
    .bootcamp-card {
        min-width: 85vw;
        max-width: 85vw;
        padding: 16px;
    }
    
    .bootcamp-title {
        font-size: 15px;
    }
    
    .bootcamp-description {
        font-size: 11px;
    }
    
    /* Query Panel Mobile */
    .query-panel {
        padding: 20px;
        margin-top: 20px;
    }
    
    .query-label {
        font-size: 16px;
    }
    
    .query-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .query-input-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    
    .query-input {
        padding: 14px 16px;
        font-size: 14px;
    }
    
    .query-submit {
        width: 100%;
        padding: 14px 24px;
    }
    
    .quick-questions {
        justify-content: center;
    }
    
    .quick-question {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    /* CTA Button Mobile */
    .begin-journey {
        padding: 14px 32px;
        font-size: 14px;
    }
    
    /* Q&A Step Container Mobile */
    .qa-step-container .onboarding-step {
        padding: 20px 15px;
    }
    
    .qa-step-container .focus-content {
        padding: 0;
    }
    
    .qa-step-container .message-content {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    
    .qa-step-container .senna-avatar {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .qa-step-container .nav-button {
        padding: 14px 28px;
        font-size: 13px;
        width: 100%;
    }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
    .welcome-header {
        padding: 0 10px;
    }
    
    .welcome-logo-section .logo-text {
        display: none; /* Hide text on very small screens */
    }
    
    .main-content {
        padding: 70px 10px 20px;
    }
    
    .main-title {
        font-size: 26px;
        line-height: 1.2;
    }
    
    .greeting-subtitle {
        font-size: 15px;
        min-height: 22px;
    }
    
    .greeting-subtitle::after {
        width: 60px;
    }
    
    .mode-selector {
        gap: 4px;
    }
    
    .mode-button {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .carousel-card {
        min-width: 90vw;
        max-width: 90vw;
    }
    
    .insight-card,
    .bootcamp-card {
        min-width: 90vw;
        max-width: 90vw;
    }
    
    .query-panel {
        padding: 16px;
    }
    
    .query-input {
        font-size: 13px;
        padding: 12px 14px;
    }
    
    .query-submit {
        font-size: 13px;
        padding: 12px 20px;
    }
}

/* Mobile Load More Button */
.mobile-load-more {
    display: none;
    width: calc(100% - 30px);
    margin: 20px auto;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .mobile-load-more {
        display: block;
    }
}

/* Fix for overflow issues */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
    }
    
    .senna-welcome-wrapper {
        overflow-x: hidden !important;
    }
    
    .senna-welcome-container {
        overflow-x: hidden !important;
    }
    
    /* Ensure cards scroll horizontally on mobile */
    .cards-wrapper {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    
    /* Add scroll indicator */
    .carousel-wrapper::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 100%;
        background: linear-gradient(to right, transparent, var(--cream-bg));
        pointer-events: none;
        z-index: 2;
    }
}