/* Mobile Header Styles */
.is-mobile #app-header {
    height: auto;
    background-color: transparent;
    overflow: visible;
}

.is-mobile .mobile-header-layout {
    position: relative;
    width: 100%;
}

.is-mobile .mobile-header-top-bar {
    height: 60px;
    background-color: #FFFCF7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
    position: relative;
    z-index: 10;
}

.is-mobile .mobile-header-logo {
    height: 20px;
    width: auto;
}

.is-mobile .mobile-hero-section {
    position: relative;
    width: 100%;
    height: 290px; /* Return to the working height */
    overflow: hidden;
}

.is-mobile .mobile-hero-bg-image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Keep the working transform approach */
    width: auto;
    height: 375px;
    min-width: 100%;
    object-fit: cover;
    z-index: 1;
}

.is-mobile .mobile-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 252px;
    background: rgba(199, 18, 41, 0.48); /* Updated color to match Figma */
    z-index: 2;
}

.is-mobile .mobile-title-box-container {
    position: absolute;
    /* Position higher than before */
    top: calc(100% - 125px); /* Moved 20px higher than before */
    left: 50%;
    transform: translateX(-50%);
    width: 272px;
    height: 105px;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.is-mobile .mobile-title-box-container .tabacs-title-image,
.is-mobile .mobile-title-box-container .tabacs-subtitle-image {
    max-width: 90%;
    height: auto;
}

/* Mobile Language Switcher */
.is-mobile .mobile-language-indicator {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #862733;
}

.is-mobile .mobile-lang-arrow {
    margin-left: 4px;
}

.is-mobile .mobile-language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #FFFFFF;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1000;
    overflow: hidden;
}

.is-mobile .mobile-language-item {
    padding: 8px 12px;
    cursor: pointer;
    color: #862733;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
}

.is-mobile .mobile-language-item:hover {
    background-color: #f0f0f0;
} 