.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #e0e0e0;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    z-index: 9999;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.4);
    font-size: 0.85rem;
    border-top: 2px solid #234f9e;
}
.cookie-consent__text {
    flex: 1;
    min-width: 200px;
    margin: 0;
    line-height: 1.5;
}
.cookie-consent__text a {
    color: #7eaaff;
    text-decoration: underline;
}
.cookie-consent__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-consent__accept {
    background: #234f9e;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 18px;
    font-size: 0.85rem;
    cursor: pointer;
    font-weight: 600;
}
.cookie-consent__accept:hover { background: #1a3a7a; }
.cookie-consent__reject {
    background: transparent;
    color: #aaa;
    border: 1px solid #555;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 0.85rem;
    cursor: pointer;
}
.cookie-consent__reject:hover { border-color: #aaa; color: #eee; }

@media (max-width: 480px) {
    .cookie-consent { flex-direction: column; align-items: flex-start; gap: 10px; }
    .cookie-consent__actions { width: 100%; }
    .cookie-consent__accept, .cookie-consent__reject { flex: 1; text-align: center; }
}
