﻿/* =========================
   COOKIE BANNER
========================= */

.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background-color: rgba(255, 255, 255, 0.85) !important; /* soft glass white */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(233, 139, 122, 0.25) !important; /* coral border */
    border-radius: 16px;
    padding: 22px 26px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    color: #3a3a3a !important; /* dark text */
    font-family: "Segoe UI", Roboto, Arial, sans-serif !important;
}

/* =========================
   CONTENT LAYOUT
========================= */

.cookie-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 25px !important;
}

.cookie-text {
    flex: 1;
}

    .cookie-text h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #3a3a3a !important;
    }

    .cookie-text p {
        font-size: 15px;
        line-height: 1.5;
        color: #3a3a3a !important;
        opacity: 0.9;
        margin-bottom: 4px;
    }

/* =========================
   BUTTONS
========================= */

.cookie-actions {
    display: flex !important;
    gap: 12px !important;
    flex-shrink: 0;
}

.btn-accept,
.btn-decline {
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 130px;
}

/* ACCEPT BUTTON */

.btn-accept {
    background-color: #e98b7a !important; /* coral */
    border: none !important;
    color: white !important;
}

    .btn-accept:hover {
        background-color: #de7865 !important;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(233, 139, 122, 0.25);
    }

/* DECLINE BUTTON */

.btn-decline {
    background-color: transparent !important;
    border: 1px solid #e98b7a !important;
    color: #e98b7a !important;
}

    .btn-decline:hover {
        background-color: rgba(233, 139, 122, 0.08) !important;
        transform: translateY(-1px);
    }

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

    .cookie-banner {
        left: 15px !important;
        right: 15px !important;
        bottom: 15px !important;
        padding: 18px !important;
    }

    .cookie-content {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 18px !important;
    }

    .cookie-actions {
        flex-direction: column !important;
        width: 100% !important;
    }

    .btn-accept,
    .btn-decline {
        width: 100% !important;
        min-width: unset !important;
        text-align: center !important;
    }

    .cookie-text h3 {
        font-size: 18px !important;
    }

    .cookie-text p {
        font-size: 14px !important;
    }
}
