/* Стили для блока conversion в заголовке категории */

.conversion {
    padding: 15px 20px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.conversion ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.conversion ul li {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.conversion ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1DBE4A;
    font-weight: bold;
}

.conversion ul li:last-child {
    margin-bottom: 0;
}

.conversion__bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
}

.conversion__online {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.conversion__online-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #1DBE4A;
    position: relative;
    flex-shrink: 0;
}

.conversion__online-dot::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #1DBE4A;
    animation: pulse-online 2s ease-in-out infinite;
}

.conversion__online-dot::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #1DBE4A;
    animation: ripple-online 2s ease-in-out infinite;
}

@keyframes pulse-online {
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes ripple-online {
    0% {
        box-shadow: 0 0 0 0 rgba(29, 190, 74, 0.7);
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(29, 190, 74, 0);
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(29, 190, 74, 0);
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.conversion__online p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.conversion__contacts {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.conversion__contacts a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.conversion__contacts a:hover {
    opacity: 0.7;
}

.conversion__contacts img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.conversion__contacts i {
    display: flex;
    align-items: center;
    justify-content: center;
}

.conversion__contacts span {
    width: 1px;
    height: 20px;
    background: #e0e0e0;
    margin: 0 5px;
}

.conversion__contacts .mgo-email,
.conversion__contacts .mgo-number {
    font-size: 12px;
    color: #333;
}

/* Адаптивность */
@media (max-width: 992px) {
    .conversion {
        width: 100% !important;
    }
}
