
@font-face {
    font-family: "Inter";
    src: url("../ASSETS/FONTS/Inter-Variable.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --brand-green: #6bbf2a;
}

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

a {
    color: var(--bs-secondary-color);
    text-decoration: none;
}

.header-black {
    background: #000;
    color: #fff;
}

.header-black .container {
    position: relative;
}

.logo-badge {
    position: absolute;
    top: 20px;
    left: 40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    object-fit: cover;
    transform: rotate(-15deg);
    z-index: 2;
}

@media (max-width: 999.98px) {
    .logo-badge {
        display: none;
    }
}

.brand-title {
    font-weight: 800;
    letter-spacing: -1px;
}

.floormop-title-img {
    max-width: 100%;
    width: 600px;
    height: auto;
}

.subline-bar {
    background: #000;
    color: #fff;
}


.TextImage {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
}

.video-mock {
    position: relative;
    aspect-ratio: 16 / 9;
    background-color: #d9d3c7;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    overflow: hidden;
}

.video-mock iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
    inset: 0;
}

.video-mock .brand-corner {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    z-index: 2;
    object-fit: cover;
    transform: rotate(-8deg);
    transition: transform 0.2s ease;
}

.video-mock:hover .brand-corner {
    transform: rotate(-8deg) scale(1.05);
}

.video-mock .caption-bar {
    position: absolute;
    left: 0;
    bottom: 55px;
    background: var(--brand-green);
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    max-width: 90%;
    line-height: 1.2;
    z-index: 2;
}

.video-mock .duration-badge {
    position: absolute;
    right: 8px;
    bottom: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 0.75rem;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    z-index: 2;
}

.video-mock .play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 3;
}

.video-mock .play-overlay .play-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-mock .play-overlay .play-circle::after {
    content: "";
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
}

.video-link {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.video-link:hover {
    text-decoration: underline;
}

#cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
}

#cookie-banner.d-none {
    display: none !important;
}

.flash {
    -webkit-animation-name: flash-animation;
    -webkit-animation-duration: 1.5s;
    animation-name: flash-animation;
    animation-duration: 1.5s;
}

@-webkit-keyframes flash-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 221, 0, 0) inset;
    }
    15% {
        box-shadow: 0 0 0 4px rgba(255, 221, 0, 0.9) inset;
    }
    30% {
        box-shadow: 0 0 0 0 rgba(255, 221, 0, 0) inset;
    }
    45% {
        box-shadow: 0 0 0 4px rgba(255, 221, 0, 0.9) inset;
    }
    60% {
        box-shadow: 0 0 0 0 rgba(255, 221, 0, 0) inset;
    }
    75% {
        box-shadow: 0 0 0 4px rgba(255, 221, 0, 0.9) inset;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 221, 0, 0) inset;
    }
}

@keyframes flash-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 221, 0, 0) inset;
    }
    15% {
        box-shadow: 0 0 0 4px rgba(255, 221, 0, 0.9) inset;
    }
    30% {
        box-shadow: 0 0 0 0 rgba(255, 221, 0, 0) inset;
    }
    45% {
        box-shadow: 0 0 0 4px rgba(255, 221, 0, 0.9) inset;
    }
    60% {
        box-shadow: 0 0 0 0 rgba(255, 221, 0, 0) inset;
    }
    75% {
        box-shadow: 0 0 0 4px rgba(255, 221, 0, 0.9) inset;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 221, 0, 0) inset;
    }
}