/* Cookie Consent Banner — Tech4Tours */
.t4t-cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    padding: 16px 24px;
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
}

.t4t-cookie-consent--hidden {
    transform: translateY(100%);
    opacity: 0;
}

.t4t-cookie-consent__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.t4t-cookie-consent__text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #374151;
}

.t4t-cookie-consent__text p {
    margin: 0;
}

.t4t-cookie-consent__text a {
    color: var(--brand-blue, #2D6B87);
    text-decoration: underline;
    font-weight: 500;
    margin-left: 6px;
}

.t4t-cookie-consent__text a:hover {
    color: var(--brand-blue-dark, #1E4F6B);
}

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

.t4t-cookie-consent__btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: none;
}

.t4t-cookie-consent__btn--accept {
    background: var(--brand-blue, #2D6B87);
    color: #fff;
}

.t4t-cookie-consent__btn--accept:hover {
    background: var(--brand-blue-dark, #1E4F6B);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 107, 135, 0.3);
}

.t4t-cookie-consent__btn--reject {
    background: transparent;
    color: #6c757d;
    border: 1px solid #d1d5db;
}

.t4t-cookie-consent__btn--reject:hover {
    background: #f3f4f6;
    color: #374151;
    border-color: #9ca3af;
}

/* Mobile responsive */
@media (max-width: 640px) {
    .t4t-cookie-consent {
        padding: 14px 16px;
    }

    .t4t-cookie-consent__inner {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .t4t-cookie-consent__actions {
        width: 100%;
        justify-content: center;
    }

    .t4t-cookie-consent__btn {
        flex: 1;
        padding: 12px 16px;
    }
}
