/* Уведомление о куки */
.prpanda-cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 1200px;
    margin: 0 auto;
    animation: cookieSlideIn 0.5s ease-out;
}

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

.prpanda-cookie-container {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 10px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    overflow: hidden;
}

.prpanda-cookie-content {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.prpanda-cookie-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border-radius: 12px;
    font-size: 24px;
}

.prpanda-cookie-text {
    flex: 1;
}

.prpanda-cookie-message {
    margin: 0 0 8px 0;
    color: #374151;
    font-size: 14px;
    line-height: 1.5;
}

.prpanda-cookie-policy-link {
    color: #ef4444;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.prpanda-cookie-policy-link:hover {
    color: #dc2626;
    text-decoration: underline;
}

.prpanda-cookie-buttons {
    flex-shrink: 0;
}

.prpanda-cookie-button {
    background: linear-gradient(to right, rgba(239, 68, 68, 0.95), rgba(220, 38, 38, 0.95));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        0 4px 6px -1px rgba(239, 68, 68, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.3),
        inset 0 -1px 1px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.prpanda-cookie-button:hover {
    background: linear-gradient(to right, rgba(220, 38, 38, 0.95), rgba(185, 28, 28, 0.95));
    transform: translateY(-1px);
    box-shadow:
        0 6px 12px -1px rgba(239, 68, 68, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3),
        inset 0 -1px 1px rgba(0, 0, 0, 0.05);
}

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

@media (max-width: 768px) {
    .prpanda-cookie-notice {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

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

    .prpanda-cookie-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .prpanda-cookie-text {
        text-align: center;
    }

    .prpanda-cookie-button {
        width: 100%;
        justify-content: center;
    }
}

.prpanda-cookie-notice.hiding {
    animation: cookieSlideOut 0.5s ease-in forwards;
}

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