/* Cookie Consent Banner */
#cookie-consent-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: none;
    animation: slideUp 0.4s ease-out;
}

#cookie-consent-overlay.active {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-consent-container {
    background-color: #fff;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    padding: 20px;
    position: relative;
}

.cookie-consent-header {
    margin-bottom: 15px;
}

.cookie-consent-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.cookie-consent-body {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 20px;
}

.cookie-consent-body a {
    color: #e91e63;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-consent-body a:hover {
    color: #c2185b;
}

.cookie-consent-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-consent-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-consent-btn-accept {
    background-color: rgb(203, 7, 114);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-container {
        padding: 15px;
    }

    .cookie-consent-header h2 {
        font-size: 18px;
    }

    .cookie-consent-body {
        font-size: 13px;
    }

    .cookie-consent-footer {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-consent-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

/* Desktop: Create a wrapper layout for better presentation */
@media (min-width: 769px) {
    .cookie-consent-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 20px;
        align-items: center;
        padding: 25px 30px;
    }

    .cookie-consent-content {
        display: flex;
        flex-direction: column;
    }

    .cookie-consent-header {
        margin-bottom: 10px;
    }

    .cookie-consent-body {
        margin-bottom: 0;
    }

    .cookie-consent-footer {
        justify-content: flex-end;
        align-self: center;
    }
}

