:root {
    --bg-color: #AE4B5A;
    --text-color: #FDFBF7;
    --text-dark: #111111;
    --accent-color: #DFAB9E;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-signature: 'Great Vibes', cursive;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--bg-color) var(--text-color);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--text-color);
}

::-webkit-scrollbar-thumb {
    background-color: var(--bg-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent-color);
}

body.is-loading {
    overflow: hidden;
}

body {
    background-color: var(--text-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 400;
}

.main-content {
    background-color: var(--bg-color);
    position: relative;
    z-index: 10;
}

.welcome {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
}

.welcome > * {
    position: relative;
    z-index: 10;
}

.pre-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: .4rem .8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    border-radius: 2px;
}

.welcome h1 {
    font-size: clamp(4.5rem, 22vw, 22rem);
    margin-bottom: 2.5rem;
    letter-spacing: -0.05em;
    pointer-events: none;
}

.line-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    padding-bottom: 5px;
}

.line {
    display: inline-block;
}

.hero-signature {
    font-family: var(--font-signature);
    font-size: 3rem;
    color: var(--text-color);
    position: absolute;
    top: 2rem;
    left: 2.5rem;
    transform: rotate(-5deg);
    line-height: .8;
    z-index: 10;
    opacity: .85;
}

.trail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 170px;
    height: 220px;
    object-fit: cover;
    pointer-events: none;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 4px solid var(--text-color);
}

.button-group {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-right: 72px;
    padding-left: 0;
    height: 56px;
    cursor: pointer;
    text-decoration: none;
    transition: padding .5s cubic-bezier(0.77,0,0.175,1);
    z-index: 50;
}

.btn-primary {
    background: var(--text-color);
    color: var(--text-dark);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    z-index: 10;
}

.btn-icon {
    background: var(--accent-color);
    color: var(--text-dark);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    z-index: 20;
    transition: right .5s cubic-bezier(0.77,0,0.175,1);
}

.icon-arrow {
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .5s cubic-bezier(0.77,0,0.175,1);
}

.button-group:hover {
    padding-right: 0;
    padding-left: 72px;
}

.button-group:hover .btn-icon {
    right: calc(100% - 56px);
}

.button-group:hover .icon-arrow {
    transform: rotate(0deg);
}

.the-cakes {
    background: var(--bg-color);
    padding: 0vh 0 30vh;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 15;
}

.story-container {
    width: 95vw;
    height: 90vh;
    background: var(--text-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8vh;
    border-radius: 10px;
    position: relative;
}

.story-text {
    text-align: center;
    color: var(--text-dark);
    z-index: 2;
}

.the-cakes h2 {
    font-size: clamp(2.5rem,5vw,4.5rem);
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.the-cakes p {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    line-height: 1.8;
    opacity: .6;
    color: var(--text-dark);
    padding: 0.5rem;
}

.story-image-wrapper {
    width: 90vw;
    height: 85vh;
    margin-top: 6vh;
    z-index: 3;
    position: relative;
}

.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.meet-the-baker {
    background: var(--text-color);
    color: var(--text-dark);
    padding: 15vh 5vw;
    position: relative;
    z-index: 15;
}

.owner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media(min-width:768px){
    .owner-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.owner-image-col {
    flex: 1;
    width: 100%;
    position: relative;
}

.owner-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.owner-text-col {
    flex: 1;
    padding-left: 0;
}

@media(min-width:768px){
    .owner-text-col {
        padding-left: 4rem;
    }
}

.pre-heading.dark-mode {
    background: var(--bg-color);
    color: var(--text-color);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.owner-text-col h2 {
    font-size: clamp(2.5rem,4vw,4rem);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.owner-text-col p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: .8;
    font-family: var(--font-body);
}

.signature {
    font-family: var(--font-signature);
    font-size: 3.5rem;
    color: var(--bg-color);
    transform: rotate(-5deg);
    display: inline-block;
    line-height: .8;
    margin-top: 1rem;
}

.marquee-section {
    width: 100%;
    height: 120vh;
    overflow: hidden;
    position: relative;
    z-index: 20;
    background: var(--bg-color);
}

.marquee-band {
    position: absolute;
    width: 120vw;
    left: -10vw;
    display: flex;
    overflow: hidden;
    padding: 1.5rem 0;
}

.band-1 {
    background: #8BC2B1;
    color: var(--text-dark);
    top: 10%;
    transform: rotate(1.5deg);
    z-index: 1;
}

.band-2 {
    background: #FDFBF7;
    color: var(--text-dark);
    top: 35%;
    transform: rotate(-3deg);
    z-index: 3;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.band-3 {
    background: #DFAB9E;
    color: var(--text-dark);
    top: 65%;
    transform: rotate(2deg);
    z-index: 2;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
}

.marquee-inner {
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: clamp(6rem,15vw,18rem);
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.04em;
}

.marquee-img {
    height: 0.7em;
    width: auto;
    object-fit: contain;
    margin: 0 3rem;
    transform: rotate(8deg);
}

.marquee-img.tilt-left {
    transform: rotate(-8deg);
}

.review-section {
    background: var(--bg-color);
    padding: 15vh 2vw;
    position: relative;
    z-index: 15;
    display: flex;
    justify-content: center;
}

.review-container {
    background: var(--text-color);
    border-radius: 40px;
    width: 95vw;
    min-height: 70vh;
    padding: 4rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.review-content {
    text-align: center;
    z-index: 5;
    max-width: 650px;
    width: 100%;
    opacity: 0;
    transform: scale(.95);
}

.review-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 2rem;
}

.review-progress-bar {
    width: 60%;
    height: 2px;
    background: rgba(17,17,17,0.1);
    margin: 0 auto 2.5rem auto;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.review-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--bg-color);
    width: 0%;
}

.review-track {
    display: flex;
    width: 100%;
    align-items: center;
}

.review-item {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    box-sizing: border-box;
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin-bottom: 1rem;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
}

.review-text {
    font-family: var(--font-heading);
    font-size: clamp(2rem,4vw,3.5rem);
    color: var(--text-dark);
    line-height: 1.2;
}

.review-img {
    position: absolute;
    top: 50%;
    left: 50%;
    height: calc(100% + 120px);
    width: clamp(260px,24vw,420px);
    object-fit: cover;
    border-radius: 20px;
    z-index: 10;
    transform: translate(-50%,-50%);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    pointer-events: none;
}

.review-btn-wrapper {
    margin: 0 auto;
    z-index: 20;
}

.review-btn-wrapper .btn-primary {
    background: #AE4B5A;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    color:var(--text-color);
}

.wall-of-love {
    min-height: 140vh;
    position: relative;
    padding: 5rem 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
}

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

.huge-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    flex-direction: column;
    align-items: center;
    font-family: var(--font-heading);
    font-size: clamp(8rem,30vw,35rem);
    line-height: .68;
    letter-spacing: -0.05em;
    color: var(--text-color);
    text-transform: uppercase;
    pointer-events: none;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.mobile-wall-heading {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 18vw, 8rem);
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: -0.05em;
    line-height: 0.8;
    z-index: 10;
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
    flex-direction: column;
}

.polaroid-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    pointer-events: none;
}

.swipe-hint {
    display: none;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--text-color);
    margin-top: 1.5rem;
    opacity: 0.8;
    z-index: 50;
    text-align: center;
}

.wall-btn-wrapper.button-group {
    height: 80px;
    padding-right: 100px;
    margin-top: 1rem;
    z-index: 50;
}

.wall-btn-wrapper .btn-primary {
    font-size: 1.4rem;
    padding: 0 3.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.wall-btn-wrapper .btn-icon {
    width: 80px;
    height: 80px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.wall-btn-wrapper.button-group:hover {
    padding-right: 0;
    padding-left: 100px;
}

.wall-btn-wrapper.button-group:hover .btn-icon {
    right: calc(100% - 80px);
}

.polaroid {
    position: absolute;
    width: 320px;
    background: #FDFBF7;
    padding: 15px 15px 25px 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    cursor: grab;
    display: flex;
    flex-direction: column;
    transform-origin: center;
    transition: box-shadow .3s ease;
    pointer-events: auto;
}

.polaroid:active {
    cursor: grabbing;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.polaroid img.main-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    pointer-events: none;
    margin-bottom: 15px;
}

.polaroid-caption {
    display: flex;
    justify-content: center;
    pointer-events: none;
    text-align: center;
    padding-top: 5px;
}

.polaroid-text-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.polaroid-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.polaroid-sub {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: .85rem;
    color: var(--text-dark);
    opacity: .7;
    line-height: 1.2;
    margin-top: 4px;
}

.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    align-items: flex-end;
}

.footer-links a, .footer-socials a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-socials a:hover {
    color: var(--bg-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(17,17,17,0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-dark);
    font-size: .9rem;
    opacity: .8;
}

.footer-signature {
    font-family: var(--font-signature);
    font-size: 3rem;
    color: var(--bg-color);
    transform: rotate(-5deg);
    line-height: .8;
}

@media(max-width:768px){
    .the-cakes {
        padding-bottom: 5vh;
    }
    
    .story-container {
        padding-bottom: 0vh;
        height: auto;
    }
    
    .story-image-wrapper {
        height: 45vh;
        margin-top: 4vh;
        margin-bottom: -10vh;
        width: 85vw;
    }
    
    .meet-the-baker {
        margin-top: 8vh;
        padding-top: 5vh;
        padding-bottom: 5vh;
    }

    .review-img {
        display: none;
    }
    
    .review-section {
        padding: 5vh 2vw;
    }
    
    .review-container {
        min-height: 50vh;
        padding: 2rem 1rem;
    }

    .marquee-section {
        height: 45vh;
    }
    
    .marquee-band {
        padding: 0.5rem 0;
    }
    
    .band-1 {
        top: 10%;
    }
    
    .band-2 {
        top: 40%;
    }
    
    .band-3 {
        top: 70%;
    }

    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: flex;
    }
    
    .wall-of-love {
        min-height: auto;
        padding: 5vh 2vw 10vh;
        justify-content: flex-start;
    }
    
    .polaroid-area {
        position: relative;
        width: 100%;
        height: 50vh;
    }
    
    .swipe-hint {
        display: block;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }
    
    .wall-btn-wrapper.button-group {
        margin-top: 0;
        height: 60px;
        padding-right: 80px;
    }
    
    .wall-btn-wrapper .btn-primary {
        font-size: 1.1rem;
        padding: 0 2.5rem;
    }
    
    .wall-btn-wrapper .btn-icon {
        width: 60px;
        height: 60px;
    }
    
    .wall-btn-wrapper.button-group:hover {
        padding-left: 80px;
        padding-right: 0;
    }
    
    .wall-btn-wrapper.button-group:hover .btn-icon {
        right: calc(100% - 60px);
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-socials {
        flex-direction: column;
        align-items: center;
        gap: .8rem;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(17,17,17,0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
}

.modal-overlay.show {
    visibility: visible;
    opacity: 1;
}

.modal-content {
    background: var(--text-color);
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    color: var(--text-dark);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--bg-color);
    transition: transform .3s;
}

.close-modal:hover {
    transform: scale(1.1);
}

.modal-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-form input, .story-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(17,17,17,0.2);
    border-radius: 8px;
    font-family: var(--font-body);
    background-color: transparent;
    font-size: 1rem;
    color: var(--text-dark);
}

.story-form input:focus, .story-form textarea:focus {
    outline: none;
    border-color: var(--bg-color);
}

.form-submit-btn {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity .3s;
}

.form-submit-btn:hover {
    opacity: .9;
}

.star-row {
    display: flex;
    gap: .5rem;
    justify-content: center;
}

.story-star {
    font-size: 1.6rem;
    cursor: pointer;
    color: #ddd;
    user-select: none;
    transition: transform .12s ease;
}

.story-star.selected {
    color: #FFD700;
    transform: scale(1.08);
}

.story-star.hover-active {
    color: #FFD700;
    opacity: 0.5;
    transform: scale(1.08);
}

.story-star:focus {
    outline: none;
}

.loader-wrapper {
    position: fixed;
    inset: 0;
    background: var(--bg-color);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    pointer-events: all;
    max-width: 100%;
}

.loader-counter {
    position: absolute;
    bottom: 6vh;
    right: 6vw;
    font-family: var(--font-heading);
    font-size: clamp(5rem, 14vw, 11rem);
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.07;
    letter-spacing: -0.02em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    will-change: contents;
    max-width: 60vw;
    overflow: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.loader-ani {
    font-family: var(--font-signature);
    font-size: clamp(5rem, 14vw, 10rem);
    color: var(--text-color);
    line-height: 0.9;
    will-change: transform, opacity;
}

.loader-text {
    display: flex;
    gap: 0.45em;
    align-items: baseline;
    overflow: visible;
}

.loader-word {
    font-family: var(--font-heading);
    font-size: clamp(0.75rem, 2vw, 1.1rem);
    color: var(--text-color);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 300;
    display: inline-block;
    will-change: transform, opacity;
}

.loader-progress {
    width: clamp(180px, 28vw, 300px);
    height: 1px;
    background: rgba(253, 251, 247, 0.18);
    position: relative;
    border-radius: 1px;
}

.loader-progress-bar {
    position: absolute;
    inset: 0;
    width: 0%;
    background: var(--text-color);
    border-radius: 1px;
    transform-origin: left center;
}

.loader-panel {
    position: fixed;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--bg-color);
    z-index: 99998;
    pointer-events: none;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.loader-panel-top {
    top: 0;
    transform-origin: top center;
}

.loader-panel-bottom {
    bottom: 0;
    transform-origin: bottom center;
}

/* ==========================================
   LANGUAGE TOGGLE SWITCH
   ========================================== */
.lang-toggle-wrapper {
    position: fixed;
    top: 2rem;
    right: 2.5rem;
    z-index: 1000;
    width: 100px;
    height: 42px;
    border-radius: 50px;
    background: rgba(253, 251, 247, 0.05); /* Glassmorphism background */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(253, 251, 247, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Hide the actual checkbox */
.lang-toggle-wrapper input {
    display: none;
}

/* The solid inner pill that slides */
.lang-toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--text-color); /* The cream color */
    border-radius: 50px;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
}

/* Slide to the right when checked (Armenian mode) */
.lang-toggle-wrapper input:checked ~ .lang-toggle-slider {
    transform: translateX(100%);
}

/* The text labels */
.lang-toggle-label {
    flex: 1;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
    user-select: none;
    letter-spacing: 1px;
}

/* Make text dark when the cream slider is behind it */
.lang-toggle-wrapper input:not(:checked) ~ .lang-toggle-label.en {
    color: var(--text-dark);
}
.lang-toggle-wrapper input:checked ~ .lang-toggle-label.hy {
    color: var(--text-dark);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .lang-toggle-wrapper {
        top: 1.5rem;
        right: 1.5rem;
        width: 90px;
        height: 38px;
    }
    .lang-toggle-label {
        font-size: 0.75rem;
    }
}