/* ============================================================
   TIMDARA SOLVISTA — cookies.css
   Brand palette applied throughout
   ============================================================ */

/* ── Cookies Consent Modal ──────────────────────────────────── */
.cookies-consent-modal {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 350px;
    max-width: calc(100% - 40px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(13, 31, 60, 0.15);
    border-left: 4px solid #E8540A;
    z-index: 9999;
    overflow: hidden;
    animation: slideInLeft 0.5s ease;
}

.cookies-consent-modal.active { display: block; }

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ── Content ────────────────────────────────────────────────── */
.cookies-consent-content { padding: 15px; }

/* ── Header ─────────────────────────────────────────────────── */
.cookies-consent-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cookies-consent-header .icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0D1F3C, #132947);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.cookies-consent-header .icon i {
    font-size: 20px;
    color: white;
}

.cookies-consent-header-text h2 {
    color: #0D1F3C;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.cookies-consent-header-text p {
    color: #7A6E65;
    font-size: 0.9rem;
}

/* ── Body ───────────────────────────────────────────────────── */
.cookies-consent-body {
    background-color: #F4F1EC;
    padding: 5px;
    margin-bottom: 10px;
    border-radius: 6px;
}

/* ── Footer / Buttons ───────────────────────────────────────── */
.cookies-consent-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookies-consent-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

/* Accept — orange gradient */
.cookies-consent-btn.accept {
    background: linear-gradient(135deg, #E8540A, #FF6B1A);
    color: white;
}

.cookies-consent-btn.accept:hover {
    background: linear-gradient(135deg, #FF6B1A, #E8540A);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 84, 10, 0.3);
}

/* Reject — neutral with dark blue text */
.cookies-consent-btn.reject {
    background: #F4F1EC;
    color: #0D1F3C;
    border: 1px solid rgba(13, 31, 60, 0.2);
}

.cookies-consent-btn.reject:hover {
    background: #E8EDF4;
    border-color: rgba(13, 31, 60, 0.35);
    color: #0D1F3C;
}