/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f3f6fd 100%);
    border-top: 3px solid #036190;
    box-shadow: 0 -4px 20px rgba(3, 97, 144, 0.15);
    z-index: 10000;
    padding: 20px;
    font-family: "Poppins", sans-serif;
    animation: slideUp 0.5s ease-out;
}

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

.cookie-notice-icon {
    color: #ff7400;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 116, 0, 0.1);
    border-radius: 50%;
}

.cookie-notice-text {
    flex: 1;
    color: #2b2540;
    min-width: 300px;
}

.cookie-notice-text h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #036190;
    font-family: "Poppins", sans-serif;
}

.cookie-notice-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #656565;
    font-family: "Poppins", sans-serif;
}

.cookie-notice-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-accept {
    background: linear-gradient(135deg, #036190 0%, #025a7e 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(3, 97, 144, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-accept:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff7400 0%, #e66700 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-accept:hover:before {
    left: 0;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(3, 97, 144, 0.3);
}

.btn-close {
    background: transparent;
    border: 2px solid #036190;
    color: #036190;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    position: relative;
}

.btn-close svg {
    pointer-events: none;
}

.btn-close:hover {
    background: #036190;
    color: white;
    transform: rotate(90deg);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .cookie-notice {
        padding: 16px;
    }

    .cookie-notice-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .cookie-notice-text {
        min-width: auto;
        text-align: left;
    }

    .cookie-notice-text h4 {
        font-size: 16px;
    }

    .cookie-notice-text p {
        font-size: 13px;
    }

    .cookie-notice-actions {
        width: 100%;
        justify-content: space-between;
    }

    .btn-accept {
        flex: 1;
        padding: 14px 24px;
    }
}
