
.floating-cookie {
    display: none !important;
}
.cookie-widget-elegant {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    z-index: 10000;
    animation: cookieSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@keyframes cookieSlideIn {
    0% { transform: translateY(30px) scale(0.95); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes cookieSlideOut {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(30px) scale(0.95); opacity: 0; }
}

.cookie-widget-content {
    padding: 22px;
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.cookie-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #FFB347, #FFCC33);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 179, 71, 0.2);
}

.cookie-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    line-height: 1.2;
}

.cookie-body p {
    margin: 0 0 10px 0;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-note {
    font-size: 13px;
    color: #718096;
    margin-top: 12px !important;
    line-height: 1.4;
}

.cookie-footer {
    margin-top: 20px;
    text-align: right;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0fcc45;
    color: white;
    border: none;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(15, 204, 69, 0.25);
}

.cookie-btn:hover {
    background: #0db83d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 204, 69, 0.35);
}

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

.cookie-btn svg {
    transition: transform 0.3s;
}

.cookie-btn:hover svg {
    transform: translateX(3px);
}

@media (max-width: 640px) {
    .cookie-widget-elegant {
        left: 16px;
        right: 16px;
        max-width: none;
        bottom: 16px;
    }
    
    .cookie-header {
        gap: 12px;
    }
    
    .cookie-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .cookie-title {
        font-size: 17px;
    }
    
    .cookie-body p {
        font-size: 14px;
    }
    
    .cookie-note {
        font-size: 12px;
    }
    
    .cookie-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 26px;
    }
}

@keyframes floatCookie {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    50% {
        transform: translate(calc(-50% + 30px), calc(-50% - 20px)) rotate(180deg);
    }
}

.floating-cookie {
    display: none;
}

@media (min-width: 768px) {
    .floating-cookie {
        display: block;
    }
}