/* Cookie Consent Modal Styles */
.cookie-consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-consent-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cookie-consent-modal {
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cookie-consent-overlay.show .cookie-consent-modal {
    transform: scale(1) translateY(0);
}

/* Decorative background circle */
.cookie-consent-modal::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 176, 185, 0.1) 0%, rgba(0, 98, 114, 0.1) 100%);
    border-radius: 50%;
    z-index: 0;
}

.cookie-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00B0B9 0%, #006272 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 20px rgba(0, 98, 114, 0.2);
    position: relative;
    z-index: 1;
    transform: rotate(-5deg);
}

.cookie-icon-wrapper i {
    font-size: 40px;
    color: #fff;
}

.cookie-consent-modal h3 {
    font-family: 'Archivo Black', sans-serif;
    color: #0f172a;
    font-size: 24px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cookie-consent-modal p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cookie-consent-modal p a {
    color: #00B0B9;
    font-weight: 600;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.cookie-btn {
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    width: 100%;
}

.cookie-btn-accept {
    background: #006272;
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 98, 114, 0.1), 0 2px 4px -1px rgba(0, 98, 114, 0.06);
}

.cookie-btn-accept:hover {
    background: #00B0B9;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 98, 114, 0.2);
}

.cookie-btn-reject {
    background: #f1f5f9;
    color: #475569;
}

.cookie-btn-reject:hover {
    background: #e2e8f0;
    color: #0f172a;
}

@media (min-width: 480px) {
    .cookie-consent-buttons {
        flex-direction: row;
    }

    .cookie-btn {
        flex: 1;
    }
}