/* =========================================
   CINETICA Cookie Consent
   ========================================= */


/* Cookie banner
   ----------------------------------------- */

.cookie-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;

    width: min(440px, calc(100vw - 32px));
    padding: 22px;

    background: rgba(17, 17, 17, 0.97);
    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;

    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);

    font-family: Arial, Helvetica, sans-serif;
}


/* Hide banner when consent decision exists
   ----------------------------------------- */

.cookie-consent[hidden] {
    display: none !important;
}


/* Headline
   ----------------------------------------- */

.cookie-consent h2 {
    margin: 0 0 10px;

    color: #fff;

    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-style: normal;
}


/* Text
   ----------------------------------------- */

.cookie-consent p {
    margin: 0 0 18px;

    font-size: 15px;
    line-height: 1.5;
}


/* Accept / Reject buttons
   ----------------------------------------- */

.cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cookie-actions button {
    min-height: 46px;
    padding: 10px 14px;

    border: 1px solid #fff;
    border-radius: 12px;

    cursor: pointer;

    font: inherit;
    font-weight: 700;
}

.cookie-accept,
.cookie-reject {
    background: #fff;
    color: #050505;
}


/* Privacy Policy link inside banner
   ----------------------------------------- */

.cookie-links {
    margin-top: 15px;

    font-size: 13px;
    color: #c9c9c9;
}

.cookie-links a {
    color: inherit;
}


/* "Privacy settings" link in footer
   ----------------------------------------- */

.cookie-preferences-link {
    background: none;
    border: 0;
    padding: 0;

    font: inherit;
    color: inherit;

    text-decoration: none;

    cursor: pointer;
}


/* Responsive layout
   ----------------------------------------- */

@media (max-width: 700px) {

    .cookie-consent {
        right: 16px;
        bottom: 16px;
        padding: 20px;
    }

}

@media (max-width: 430px) {

    .cookie-actions {
        grid-template-columns: 1fr;
    }

}