/* === COOKIE NOTICE === */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: auto;
    max-width: 400px;
    z-index: 1000;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    background: rgba(252, 251, 252, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 14px 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    visibility: visible;
}

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

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.cookie-text {
    flex: 1;
}

.cookie-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #3E3E3E;
    line-height: 1.3;
    margin: 0;
}

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

.cookie-button {
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    font-size: 11px;
    border: none;
    border-radius: 10px;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept {
    color: #FFFFFF;
    background: linear-gradient(135deg, #007670, #005b58);
    box-shadow: 0 4px 15px rgba(0, 118, 112, 0.3);
}

.cookie-accept:hover {
    background: linear-gradient(135deg, #005b58, #004a47);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 118, 112, 0.4);
}

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

.cookie-settings {
    color: #3E3E3E;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(62, 62, 62, 0.2);
}

.cookie-settings:hover {
    background: rgba(255, 255, 255, 1);
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cookie-settings:active {
    transform: translateY(0);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .cookie-notice {
        bottom: 15px;
        right: 15px;
        left: 15px;
        width: auto;
        max-width: none;
        padding: 12px 18px;
        border-radius: 14px;
    }
    
    .cookie-content {
        flex-direction: row;
        gap: 15px;
        text-align: left;
    }
    
    .cookie-text {
        flex: 1;
    }
    
    .cookie-description {
        font-size: 12px;
    }
    
    .cookie-buttons {
        justify-content: flex-end;
        width: auto;
    }
    
    .cookie-button {
        font-size: 10px;
        padding: 8px 14px;
    }
}

@media (max-width: 480px) {
    .cookie-notice {
        bottom: 10px;
        right: 10px;
        left: 10px;
        width: auto;
        padding: 10px 16px;
        border-radius: 12px;
    }
    
    .cookie-description {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .cookie-buttons {
        gap: 10px;
    }
    
    .cookie-button {
        font-size: 9px;
        padding: 7px 12px;
    }
} 