/* Deliberately self-contained (no theme CSS variables) so this keeps
   working correctly no matter what theme is active. */
.fpc-cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    background: #1a1613;
    color: #f2ede3;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}
.fpc-cookie-consent.is-visible { transform: translateY(0); }
.fpc-cookie-consent[hidden] { display: none; }

.fpc-cookie-consent__text { margin: 0; max-width: 640px; flex: 1 1 320px; }
.fpc-cookie-consent__text a { color: #f2ede3; text-decoration: underline; }
.fpc-cookie-consent__text a:hover { color: #fff; }

.fpc-cookie-consent__actions { display: flex; gap: 10px; flex-shrink: 0; }

.fpc-cookie-consent__btn {
    padding: 10px 18px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}
.fpc-cookie-consent__btn--primary { background: #9c4a35; color: #fff; }
.fpc-cookie-consent__btn--primary:hover { background: #7e3a29; }
.fpc-cookie-consent__btn--secondary { background: transparent; color: #f2ede3; border-color: rgba(242, 237, 227, 0.35); }
.fpc-cookie-consent__btn--secondary:hover { border-color: #f2ede3; }

@media (max-width: 600px) {
    .fpc-cookie-consent { flex-direction: column; align-items: stretch; text-align: center; }
    .fpc-cookie-consent__actions { justify-content: center; }
}
