@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&display=swap');

/* ================================
 * Cookie Popup — Backdrop
 * ================================ */

.cookie-popup {
    position: fixed;
    inset: 0;
    z-index: 999999999;
    background-color: rgba(0, 0, 0, 0.68);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.7s ease;
    /* JS sets display:flex after delay, then fades opacity to 1 */
}

/* ================================
 * Popup Box — 798 × 449
 * ================================ */

.cookie-popup-inner {
    width: 798px;
    height: 449px;
    max-width: 96vw;
    max-height: 92vh;
    display: flex;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #000;
}

/* ---- Left: model image ---- */
.cookie-popup-model {
    flex: 0 0 290px;
    overflow: hidden;
    position: relative;
}

.cookie-popup-model img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ---- Right: content ---- */
.cookie-popup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 36px 50px 32px;
    position: relative;
    background-color: #000;
    overflow: hidden;
}

/* ---- "Don't feed the models" headline ---- */
.cookie-headline-crossed {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
    max-width: 100%;
}

.cookie-headline-text {
   	display: block;
    font-family: 'Brittany Signature';
    font-size: 42px;
    font-weight: 700;
    color: #c8ff00;
    line-height: 1.15;
    padding: 2px 0;
    font-style: italic;
}

.cookie-x-svg {
    position: absolute;
    inset: -20px 0 0 -10px;
    width: 80px;
    height: 90px;
    pointer-events: none;
}
.cookie-x-svg path {
    stroke-width: 9px;
    stroke-opacity: 0.6;
}


/* ---- "COOKIES!?" + cookie image ---- */
.cookie-title-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.cookie-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: #fff;
    font-weight: 900;
    line-height: 1;
    margin: 0;
    letter-spacing: 0.02em;
}

.cookie-title-img {
    flex-shrink: 0;
    margin-top: -6px;
}

.cookie-title-img img {
    width: 88px;
    height: auto;
    display: block;
}

/* ---- Description ---- */
.cookie-desc {
    margin-bottom: 14px;
}

.cookie-desc p {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.06em;
    line-height: 1.35;
    margin: 0;
}

/* ---- Buttons ---- */
.cookie-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
    padding: 10px 28px;
    cursor: pointer;
    border: 2px solid;
    transition: background-color 0.25s ease, color 0.25s ease;
    line-height: 1;
}

.cookie-btn--accept {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.cookie-btn--accept:hover {
    background-color: transparent;
    color: #fff;
}

.cookie-btn--decline {
    background-color: transparent;
    color: #c8ff00;
    border-color: #c8ff00;
}

.cookie-btn--decline:hover {
    background-color: #c8ff00;
    color: #000;
}

/* ---- Note ---- */
.cookie-note p {
    font-family: 'Glacial Indifference Regular', sans-serif;
    font-size: 11px;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

/* ---- Logo ---- */
.cookie-logo {
    position: absolute;
    bottom: 18px;
    right: 28px;
}

.cookie-logo img {
    width: 90px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* ================================
 * Responsive — scales down on small screens
 * ================================ */

@media only screen and (max-width: 820px) {
    .cookie-popup-model {
        flex: 0 0 290px;
    }

    .cookie-popup-content {
        padding: 22px 24px 46px 22px;
    }

    .cookie-headline-text {
        font-size: 28px;
    }

    .cookie-title {
        font-size: 48px;
    }

    .cookie-title-img img {
        width: 68px;
    }

    .cookie-desc p {
        font-size: 13px;
    }

    .cookie-btn {
        font-size: 16px;
        padding: 8px 20px;
    }
}

@media only screen and (max-width: 560px) {
    .cookie-popup-inner {
        flex-direction: column;
        width: 96vw;
        height: 92vh;
    }

    .cookie-popup-model {
        flex: 0 0 350px;
    }

    .cookie-popup-content {
        flex: 1;
        justify-content: flex-start;
        padding: 40px 35px 50px;
        overflow-y: auto;
    }

    .cookie-headline-text {
        font-size: 24px;
    }

    .cookie-title {
        font-size: 44px;
    }

    .cookie-title-img img {
        width: 54px;
    }

    .cookie-buttons {
        gap: 10px;
    }

    .cookie-logo {
        right: 14px;
        bottom: 12px;
    }

    .cookie-logo img {
        width: 70px;
    }
	.cookie-x-svg {
		width: 50px;
		height: 65px;
	}
}
