.price-analogues {
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.price-analogues__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.price-analogues__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.price-analogues__item {
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.price-analogues__item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.price-analogues__name {
    font-weight: 500;
    margin-bottom: 5px;
}

.price-analogues__price {
    color: #e74c3c;
    font-weight: 600;
}

.price-analogues__manufacturer {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
} 