/* ==========================================================================
   RESET E VARIÁVEIS BASE
   ========================================================================== */
@font-face {
    font-family: 'OneSignature';
    src: url('../fonts/OneSignature.otf') format('opentype'),
         url('../fonts/OneSignature.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Thesignature';
    src: url('../fonts/Thesignature.otf') format('opentype'),
         url('../fonts/Thesignature.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-primary: 'DM Serif Display', serif;
    --font-secondary: 'Lato', sans-serif;
    --font-accent-primary: 'Thesignature', 'DM Serif Display', Georgia, serif;
    --font-accent-secondary: 'OneSignature', 'DM Serif Display', Georgia, serif;
    --color-bg: #050505;
    /* Consistent deep black */
    --color-text: #F5F5F5;
    /* Light text for dark bg */
    --color-text-light: #F5F5F5;
    --color-accent: #B29B85;
    /* Keep the earthy accent */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================================================================
   HEADER / MENU TRANSPARENTE
   ========================================================================== */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 100;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 95%; /* More width for header elements */
    max-width: 1800px; /* Limit ultra-wide overlap */
    margin: 0 auto;
}

/* Persistent Logo Textual */
.logo {
    display: none;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--color-text-light);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: var(--transition);
    z-index: 101;
}

.header-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 101;
}

.lang-switcher {
    display: flex;
    gap: 15px;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-text-light);
    font-size: 0.7rem;
    font-weight: 700;
    transition: var(--transition);
    opacity: 0.8;
}

.lang-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.flag-icon {
    width: 22px;
    height: 22px;
    object-fit: cover;
    border-radius: 50%; /* Rounded flags for premium look */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-text {
    letter-spacing: 1px;
}

/* Visibility Helpers */
.lang-mobile {
    display: none !important;
}

.lang-desktop {
    display: flex !important;
}

.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex !important;
}

.logo:hover {
    opacity: 0.8;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--color-text-light);
    transition: all 0.3s ease-in-out;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: var(--color-text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-text-light);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

/* ==========================================================================
   HERO / BANNER (Baseado na Referência)
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    /* Ocupa 100% da tela */
    width: 100%;
    background-size: cover;
    background-position: center 20%;
    /* Foca mais no rosto se a imagem for cortada */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Gradiente sutil para garantir leitura do texto, mantendo a foto visível */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-text-light);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 7.5vw; /* Refined from 8vw for absolute safety on 320px screens */
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 0.03em; /* Slightly tighter for mobile safety */
    text-transform: uppercase;
    white-space: nowrap; /* Forces one line */
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5.5rem; /* Reduced from 7rem to prevent wrapping */
        margin-bottom: 30px;
    }
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 40px;
    opacity: 0.8;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    /* Círculos perfeitos como na referência */
    font-size: 1.2rem;
    color: var(--color-text-light);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--color-text);
    border-color: #fff;
    transform: translateY(-3px);
}

/* ==========================================================================
   ABOUT SECTION & SLIDESHOW
   ========================================================================== */
.about-section {
    padding: 0;
    /* Flush top and bottom */
    background-color: var(--color-bg);
}

.about-container {
    display: grid;
    grid-template-columns: 45% 55%;
    /* Split screen */
    gap: 0;
    /* No gap between image and text */
    align-items: center;
    min-height: 100vh;
}

.about-container.mirrored {
    grid-template-columns: 55% 45%;
}

.about-container.mirrored .about-content {
    grid-column: 1;
    grid-row: 1;
    text-align: left;
}

.about-container.mirrored .about-slideshow {
    grid-column: 2;
    grid-row: 1;
}

/* Slideshow Container */
.about-slideshow {
    position: relative;
    height: 100vh;
    /* Increased height for impact */
    width: 100%;
    overflow: hidden;
    /* Removed border-radius and shadow for flush look */
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    /* Smooth fade only */
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* About Content Text */
.about-content {
    padding: 80px 10%;
    /* Padding for readability since container is gone */
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 400; /* Adjusted from default bold */
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #FFF;
}


.bioText {
    font-size: 1.2rem;
    /* Slightly larger like the print */
    color: #CCC;
    margin-bottom: 20px; /* Reduced to provide closer connection to languages */
    font-weight: 300;
    line-height: 1.8;
}

.languages-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-secondary);
    line-height: 1.6;
    margin-bottom: 30px; /* Adjusted to balance with CTA button */
}

.languages-text strong {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-right: 5px;
}

.about-cta {
    margin-top: 20px;
}


/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #FFF;
    margin-bottom: 5px;
    font-weight: 700;
}

.spec-value {
    font-size: 1.2rem;
    font-family: var(--font-primary);
    color: var(--color-text);
}

/* Responsive About */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-slideshow {
        height: 500px;
    }
}

/* ==========================================================================
   ABOUT PAGE (Stand-alone)
   ========================================================================== */
.page-about {
    background-color: #050505;
}

.about-bio {
    padding-bottom: 100px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.intro-heading {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--color-text);
    font-weight: 400;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 10px;
}

.bio-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.85);
    font-weight: 300;
    max-width: 550px;
}

.about-cta {
    margin-top: 10px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--color-text);
    color: #000;
    border-color: var(--color-text);
}

/* Horizontal Step Slider (Centered) */
.about-slider {
    width: 100%;
    overflow: hidden;
    /* Changed from auto to hide manual scroll */
    padding: 0 0 100px;
    background-color: #050505;
    white-space: nowrap;
    position: relative;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-100%); /* Position higher than dead center for visual balance with 500px image */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 1);
    color: #000;
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

@media (max-width: 992px) {
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    .slider-nav.prev { left: 15px; }
    .slider-nav.next { right: 15px; }
}

.slider-track {
    display: inline-flex;
    padding: 0 45vw;
    transition: transform 1.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.slider-item {
    flex-shrink: 0;
    padding: 0 5px;
    /* Minimal spacing as requested */
    scroll-snap-align: center;
    transition: transform 0.8s ease;
    opacity: 1;
    /* Keep full visibility */
    transform: scale(1);
    /* No zoom */
}

.slider-item.active {
    opacity: 1;
    transform: scale(1);
}

.slider-item img {
    height: 500px;
    /* Uniform height */
    width: auto;
    display: block;
    object-fit: contain;
    /* No cropping */
    border-radius: 0;
    box-shadow: none;
}

/* ==========================================================================
   INTERNAL PAGES (Model, Actress)
   ========================================================================== */
.page-hero {
    padding: 150px 0 80px;
    background-color: #050505;
    text-align: center;
}

/* ==========================================================================
   VIDEO SECTION (Actress Page)
   ========================================================================== */
.video-section {
    padding: 0 0 40px;
    margin-top: -20px;
    /* Pull it slightly up towards the header */
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    /* Optional cap on width */
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    /* Removes bottom space under video */
    background: #000;
}

/* ==========================================================================
   MASONRY GALLERY (Model & Actor Page)
   ========================================================================== */
.gallery-section {
    padding: 20px 0 100px;
}

.masonry-gallery {
    column-count: 3;
    /* 3 columns for desktop */
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    background-color: #111;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    /* Optional: keep it moody like the prints */
    transition: transform 0.8s ease, filter 0.5s ease;
}

.gallery-item:hover {
    border-color: var(--color-accent);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* Modificador para galerias pequenas (como a de Actor) */
.masonry-gallery.centered-small {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.masonry-gallery.centered-small .gallery-item {
    margin-bottom: 0;
    max-width: 400px;
    /* Limita a largura individual */
}

/* Responsive Masonry */
@media (max-width: 900px) {
    .masonry-gallery {
        column-count: 2;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .masonry-gallery {
        column-count: 1;
    }

    .masonry-gallery.centered-small {
        flex-direction: column;
        align-items: center;
    }

    .masonry-gallery.centered-small .gallery-item {
        margin-bottom: 20px;
    }
}

/* Base fade-in for page changes */
.fade-in {
    animation: fadeInPage 1s ease-in-out;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   FOOTER (Premium Contact Section)
   ========================================================================== */
.main-footer {
    background-color: #050505;
    padding: 100px 0 60px;
}

.footer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.footer-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px; /* Space before the heading */
}

.footer-logo img {
    max-width: 350px; /* Slightly larger for better presence */
    width: 100%;
    height: auto;
    opacity: 1; /* Full opacity to be more visible */
    filter: brightness(1.1);
    display: block;
}

.footer-heading {
    font-family: var(--font-primary);
    font-size: 2.25rem;
    color: var(--color-text);
    font-weight: 400;
    line-height: 1.4;
    max-width: 800px;
}

.footer-btn {
    margin-top: 30px;
    padding: 15px 45px;
}

.footer-email-large {
    width: 100%;
    padding: 60px 0;
    overflow: hidden;
    text-align: center;
}

.footer-email-large a {
    font-family: var(--font-primary);
    font-size: 7vw;
    /* Slightly reduced for better fit */
    color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: -2px;
    transition: var(--transition);
    display: inline-block;
    /* Changed to inline-block for better centering */
    line-height: 1;
}

.footer-email-large a:hover {
    color: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    margin-top: 40px;
    color: #444;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================================
   CONTACT PAGE (Split Layout)
   ========================================================================== */
.contact-page-new {
    background-color: #050505;
    min-height: 100vh;
}

.contact-split {
    display: flex;
    min-height: calc(100vh - 80px);
    /* Adjust based on header */
}

.contact-image-side {
    flex: 1;
    height: 100vh;
    position: sticky;
    top: 0;
}

.contact-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-form-side {
    flex: 1;
    padding: 100px 10%;
    display: flex;
    align-items: center;
}

.form-wrapper {
    width: 100%;
    max-width: 500px;
}

.contact-message {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-text);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 60px;
}

.custom-contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.custom-contact-form .form-group {
    flex: 1;
    margin-bottom: 30px;
}


.custom-contact-form label {
    display: block;
    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-weight: 400;
}

.custom-contact-form input,
.custom-contact-form textarea {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    outline: none;
    transition: var(--transition);
    border-radius: 4px;
    margin-bottom: 5px;
}

.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.custom-contact-form input:focus,
.custom-contact-form textarea:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background: #181818;
}

.submit-btn {
    margin-top: 20px;
    padding: 15px 60px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: var(--transition);
}

.submit-btn:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 1000px) {
    .contact-split {
        flex-direction: column;
    }

    .contact-image-side {
        height: 50vh;
        position: static;
    }

    .contact-form-side {
        padding: 60px 5%;
    }

    .contact-message {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */
@media (max-width: 992px) {
    .hero {
        background-position: 30% center;
    }

    .header-container {
        justify-content: space-between;
    }

    .logo {
        display: block;
    }

    .menu-toggle {
        margin-left: auto;
    }

    /* About Section Home */
    .about-container {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .about-content {
        order: 1; /* Always text on top */
        padding: 50px 8%;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .about-slideshow {
        order: 2; /* Always image below */
        height: 75vh;
        min-height: 600px;
    }

    .about-container.mirrored {
        grid-template-columns: 1fr;
    }

    .about-container.mirrored .about-content,
    .about-container.mirrored .about-slideshow {
        grid-column: auto;
        grid-row: auto;
        text-align: center;
    }

    .slider-track.is-mobile-scrolling {
        padding: 0;
        animation: scroll-linear 30s linear infinite;
    }

    .slider-track.is-mobile-scrolling:hover {
        animation-play-state: paused;
    }

    .about-content {
        padding: 50px 8%; /* Slightly reduced for better balance */
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .specs-grid {
        gap: 15px;
    }

    /* About Page & Internal Pages */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .bio-paragraph {
        max-width: 100%;
        margin: 0 auto;
    }

    .page-hero {
        padding: 120px 5% 60px;
    }

    .hero-title {
        font-size: 7.5vw;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 5%;
    }

    .menu-toggle {
        display: block;
        padding: 30px 0;
    }

    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(5, 5, 5, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 100;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .main-nav a {
        font-size: 1.5rem;
    }

    /* Mobile Language Switcher Positioning */
    .main-nav .lang-switcher.mobile-only {
        display: flex !important;
        margin-top: 30px;
        gap: 15px;
    }

    .main-nav .lang-switcher.mobile-only .lang-link {
        font-size: 1rem;
        font-weight: 400;
        letter-spacing: 2px;
    }

    .main-nav .lang-switcher.mobile-only .flag-icon {
        width: 20px;
        height: 20px;
    }

    .header-right {
        right: 5% !important;
    }

    .logo {
        left: 5% !important;
    }

    .footer-logo img {
        max-width: 220px !important; /* Reduced from 350px */
    }

    .lang-desktop {
        display: none !important;
    }

    .lang-mobile {
        display: flex !important;
        margin-top: 30px;
        gap: 15px;
    }

    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }
}

.no-scroll {
    overflow: hidden;
}

@keyframes scroll-linear {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(var(--scroll-width));
    }
}