/*NOTE: This file is intended for programmers. Aspro technical support is not advised to work with him.*/

/* Examples (uncomment to use):*/

/* Expand site width */
/* body .wrapper { max-width: 1400px !important;  } */

/* Set site background image */
/* body {  background: url(image_source) top no-repeat; }

/* Hide compare button */
/* a.compare_item { display: none !important;  }*/

.telega img {
    width: 25px;
}

footer .social {
    padding: 0px 0 !important;
}

.telega2 img {
    width: 25px;
	padding-bottom: 5px;
}

.empty-cat-none {
  /* display: none !important; */
}

/* Стили для cookie уведомления */
.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #3b9aad;
    color: #fff;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none; /* Скрыто по умолчанию */
}

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

.cookie-text {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.cookie-button:hover {
    background: #45a049;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-button {
        width: 100%;
        max-width: 200px;
    }
}

/* Анимация появления */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-notification.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}