/* Cookie Consent Banner - Subtle bottom-right */
.cookie-consent-overlay {
    position: fixed;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
    background: transparent;
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.cookie-consent-overlay.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-consent-modal {
    background: #fff;
    width: 380px;
    max-width: 90vw;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.04);
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.cookie-consent-overlay.show .cookie-consent-modal {
    transform: translateY(0);
}

/* Decorative accent line at top */
.cookie-consent-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D2591F 0%, #0D3243 100%);
    z-index: 1;
}

.cookie-icon-wrapper {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #D2591F 0%, #0D3243 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(0, 98, 114, 0.2);
    position: relative;
    z-index: 1;
}

.cookie-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.cookie-consent-modal h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0f172a;
    font-size: 17px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.cookie-consent-modal p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.cookie-consent-modal p a {
    color: #D2591F;
    font-weight: 600;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.cookie-btn {
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    flex: 1;
}

.cookie-btn-accept {
    background: #0D3243;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 98, 114, 0.15);
}

.cookie-btn-accept:hover {
    background: #D2591F;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 98, 114, 0.2);
}

.cookie-btn-reject {
    background: #f1f5f9;
    color: #475569;
}

.cookie-btn-reject:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* Responsive: mobile - bottom centered, full width */
@media (max-width: 480px) {
    .cookie-consent-overlay {
        align-items: flex-end;
        justify-content: center;
        padding: 0;
    }

    .cookie-consent-modal {
        width: 100%;
        max-width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 20px;
        box-shadow: 0 -10px 30px -12px rgba(0, 0, 0, 0.1);
    }

    .cookie-icon-wrapper {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .cookie-icon-wrapper svg {
        width: 18px;
        height: 18px;
    }

    .cookie-consent-modal h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .cookie-consent-modal p {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .cookie-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
}
