/**
 * Cookie Consent Banner Styles
 * Matches site design with Poppins/Nunito fonts and brand colors
 */

.cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #EC6019;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

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

.cookie-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.cookie-consent-content p {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-consent-content a {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent-content a:hover {
    color: #ffffff;
    opacity: 0.9;
}

.cookie-consent-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-accept,
.btn-deny {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-accept {
    background: #ffffff;
    color: #EC6019;
}

.btn-accept:hover {
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    opacity: 0.95;
}

.btn-accept:active {
    transform: translateY(0);
}

.btn-deny {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-deny:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.btn-deny:active {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 16px;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-consent-content p {
        text-align: center;
        min-width: auto;
    }

    .cookie-icon {
        margin: 0 auto;
    }

    .cookie-consent-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-deny {
        width: 100%;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 14px;
    }

    .cookie-consent-content p {
        font-size: 13px;
    }

    .btn-accept,
    .btn-deny {
        font-size: 13px;
        padding: 12px 20px;
    }
}

