/* Cookies Consent Banner */
.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #1a1a1a;
    color: #fff;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, .25);
    font-size: 14px;
    display: none;
}
.cookie-consent.show {
    display: block;
}
.cookie-consent .cc-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.cookie-consent .cc-text {
    flex: 1 1 60%;
    line-height: 1.6;
}
.cookie-consent .cc-text a {
    color: #4da3ff;
    text-decoration: underline;
}
.cookie-consent .cc-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cookie-consent .cc-btn {
    border: none;
    border-radius: 4px;
    padding: 9px 18px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}
.cookie-consent .cc-btn-accept {
    background: #e2231a;
    color: #fff;
}
.cookie-consent .cc-btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #888;
}
.cookie-consent .cc-btn:hover {
    opacity: .9;
}
@media (max-width: 767px) {
    .cookie-consent .cc-inner {
        flex-direction: column;
        align-items: stretch;
    }
    .cookie-consent .cc-actions {
        justify-content: flex-end;
    }
}

/* Form disabled tip (shown after rejecting cookies) */
.cc-form-tip {
    background: #fff4e5;
    border: 1px solid #ffb74d;
    color: #b26a00;
    padding: 10px 14px;
    border-radius: 4px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}
