html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  height: 100%;
}
.modal-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.modal-card {
    position: relative;
    max-width: 500px;
    width: 90%;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.modal-card img {
	width: 100%;
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* BANNER */
.top-scrolling-banner {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
	top: 0;
	left: 0;
    box-sizing: border-box;
	z-index: 9999;
	box-shadow: 0px 2px 10px rgba(0,0,0,0.5)
}

.banner-track {
    display: flex;
    width: max-content;
    /* Reduced duration slightly for a cleaner pace */
    animation: bannerMarquee 30s linear infinite;
}

.banner-content {
    display: inline-flex;
    align-items: center;
    /* Ensures each block fills at least the screen width */
    min-width: 100vw;
    justify-content: space-around;
    padding: 0.6rem 0;
    box-sizing: border-box;
}

@keyframes bannerMarquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
.banner-headline {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-left: 2rem;
}

.banner-separator {
    margin: 0 1.25rem;
    opacity: 0.6;
}

.banner-body {
    margin-right: 1.5rem;
}

.banner-btn {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid currentColor;
    border-radius: 25px;
    margin-right: 2rem;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.banner-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@keyframes bannerMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}