/* ========================================
   Cookie Consent Banner — FlashTech
   ======================================== */
.ft-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #ffffff;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    border-top: 3px solid #e8b84b;
    transition: transform 0.4s ease, opacity 0.4s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

.ft-cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 32px;
}

.ft-cookie-banner__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e2a4a;
    margin: 0 0 8px;
}

.ft-cookie-banner__text p {
    font-size: 0.875rem;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.ft-cookie-banner__text a {
    color: #1e2a4a;
    font-weight: 600;
    text-decoration: underline;
}

.ft-cookie-banner__text a:hover {
    color: #e8b84b;
}

/* Details / Options */
#ft-cookie-details {
    margin: 16px 0;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.ft-cookie-banner__option {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.ft-cookie-banner__option:last-child {
    border-bottom: none;
}

.ft-cookie-banner__option label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #1e2a4a;
    cursor: pointer;
    margin-bottom: 4px;
}

.ft-cookie-banner__option label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #e8b84b;
}

.ft-cookie-banner__option span {
    display: block;
    font-size: 0.8rem;
    color: #868e96;
    padding-left: 26px;
    line-height: 1.5;
}

/* Action buttons */
.ft-cookie-banner__actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.ft-cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.ft-cookie-btn--primary {
    background: #e8b84b;
    color: #1e2a4a;
    border-color: #e8b84b;
}

.ft-cookie-btn--primary:hover {
    background: #f0cb6e;
    border-color: #f0cb6e;
}

.ft-cookie-btn--secondary {
    background: #1e2a4a;
    color: #ffffff;
    border-color: #1e2a4a;
}

.ft-cookie-btn--secondary:hover {
    background: #2a3a5c;
    border-color: #2a3a5c;
}

.ft-cookie-btn--outline {
    background: transparent;
    color: #495057;
    border-color: #dee2e6;
}

.ft-cookie-btn--outline:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    color: #1e2a4a;
}

/* Responsive */
@media (max-width: 768px) {
    .ft-cookie-banner__inner {
        padding: 20px 16px;
    }

    .ft-cookie-banner__actions {
        flex-direction: column;
    }

    .ft-cookie-btn {
        width: 100%;
    }
}

/* Footer cookie settings link */
.ft-cookie-settings-link {
    cursor: pointer;
    text-decoration: underline;
}

.ft-cookie-settings-link:hover {
    color: #e8b84b;
}
